11
gpl13
Re: Problem @ XOOPS Admin - MASS MAIL SEND :(
  • 2004/9/8 20:01

  • gpl13

  • Just popping in

  • Posts: 33

  • Since: 2004/3/5 1


Yes !! This is a good question :) But how i can change now from mail() to smtp account ??



12
gpl13
Re: Problem @ XOOPS Admin - MASS MAIL SEND :(
  • 2004/9/8 17:42

  • gpl13

  • Just popping in

  • Posts: 33

  • Since: 2004/3/5 1


I think that someone must help us to change this Maybe it possible, to make, that XOOPS will not want so much part of memory :)



13
gpl13
Re: Problem @ XOOPS Admin - MASS MAIL SEND :(
  • 2004/9/8 16:14

  • gpl13

  • Just popping in

  • Posts: 33

  • Since: 2004/3/5 1


OK !! But why can i go into:

ADMIN > SYSTEM > PREFERENCES > MAIL SETUP ????

Then i will change mail() to smtp of my mailbox !! But when i enter - i see...... yes WHITE BLANK SITE :(((



14
gpl13
Re: Problem @ XOOPS Admin - MASS MAIL SEND :(
  • 2004/9/8 15:33

  • gpl13

  • Just popping in

  • Posts: 33

  • Since: 2004/3/5 1


This modyfication do nothing :( But my phpdebug dont work @ this thing :/ Works, when page loads, but not here :( I look for phpinfo, and i'll write my results later...



15
gpl13
Re: Problem @ XOOPS Admin - MASS MAIL SEND :(
  • 2004/9/8 14:44

  • gpl13

  • Just popping in

  • Posts: 33

  • Since: 2004/3/5 1


I was testing by turn on debug mode - and nothing - just like, no error has been detect :( Someone can repair this problem ??



16
gpl13
Problem @ XOOPS Admin - MASS MAIL SEND :(
  • 2004/9/8 10:47

  • gpl13

  • Just popping in

  • Posts: 33

  • Since: 2004/3/5 1


Hi,

I have a problem, with XOOPS - after fresh instalation, everything works fine, but now, when i have more than 500 useres, i can't send any MASS mail or PM-Message, using - ADMIN > SYSTEM > Mail to users - if i select group,where is max. 50 users, mass mail send works fine, but if i select group where number of my users more than 500, after write message, i see i white page - nothing happens :((

This same error i found @ ADMIN > SYSTEM > PREFERENCES > MAIL SETUP - i can't enter there - i see white page, and nothings happen :(( I dont know what is the reason :(( Maybe someone can help me ??

Greetz !!



17
gpl13
Re: No AVATAR upload...
  • 2004/7/15 19:37

  • gpl13

  • Just popping in

  • Posts: 33

  • Since: 2004/3/5 1


OK Works in profile :) Thats 50% of success !! Now, how to make it work on comments, and newbb ??

Second thing - i dont known what i do, but i can write url to user_avatar :/ Look, i copy it from avatarchoose, and yesterday works:

Quote:
if ($op == 'avatarset') {
if (!is_object($xoopsUser) || $xoopsUser->getVar('uid') != $uid ) {
redirect_header('index.php', 3, _US_NOEDITRIGHT);
exit();
}
$member_handler =& xoops_gethandler('member');
$user_avatar = trim($user_avatar);
$oldavatar = $xoopsUser->getVar('user_avatar');
$xoopsUser->setVar('user_avatar', $user_avatar);
if (!$member_handler->insertUser($xoopsUser)) {
include XOOPS_ROOT_PATH.'/header.php';
echo $xoopsUser->getHtmlErrors();
include XOOPS_ROOT_PATH.'/footer.php';
exit();
} else {
$avt_handler =& xoops_gethandler('avatar');
if ($oldavatar && $oldavatar != 'blank.gif' && preg_match("/^cavt/", strtolower($oldavatar))) { //Koudanshi fix
$avatars =& $avt_handler->getObjects(new Criteria('avatar_file', $oldavatar));
if (is_object($avatars[0])) {
$avt_handler->delete($avatars[0]);
}
@unlink($oldavatar);
}
if ($user_avatar != 'blank.gif') {
$avatars =& $avt_handler->getObjects(new Criteria('avatar_file', $user_avatar));
if (is_object($avatars[0])) {
$avt_handler->addUser($avatars[0]->getVar('avatar_id'), $xoopsUser->getVar('uid'));
}
}
redirect_header('userinfo.php?uid='.$uid, 0, _US_PROFUPDATED);
}
}


And this is form:
Quote:

if ($op == 'avatarform') {
if (!is_object($xoopsUser)) {
redirect_header('index.php', 1);
}
include XOOPS_ROOT_PATH.'/header.php';
echo '<a href="userinfo.php?uid='.$xoopsUser->getVar('uid').'">'. _US_PROFILE .'</a>&nbsp;<span style="font-weight:bold;">»»</span>&nbsp;'. _US_UPLOADMYAVATAR .'<br /><br />';
$oldavatar = $xoopsUser->getVar('user_avatar');
if ($oldavatar && $oldavatar != 'blank.gif') {
echo '<div style="text-align:center;"><h4 style="color:#ff0000; font-weight:bold;">'._US_OLDDELETED.'</h4>';
echo '<img src="'.XOOPS_UPLOAD_URL.'/'.$oldavatar.'" alt="" /></div>';
}
if ($xoopsConfigUser['avatar_allow_upload'] == 1 && $xoopsUser->getVar('posts') >= $xoopsConfigUser['avatar_minposts']) {
include_once 'class/xoopsformloader.php';
$form = new XoopsThemeForm(_US_UPLOADMYAVATAR, 'uploadavatar', 'edituser.php');
$form->setExtra('enctype="multipart/form-data"');
$form->addElement(new XoopsFormLabel(_US_MAXPIXEL, $xoopsConfigUser['avatar_width'].' x '.$xoopsConfigUser['avatar_height']));
$form->addElement(new XoopsFormLabel(_US_MAXIMGSZ, $xoopsConfigUser['avatar_maxsize']));
$form->addElement(new XoopsFormFile(_US_SELFILE, 'avatarfile', $xoopsConfigUser['avatar_maxsize']), true);
$form->addElement(new XoopsFormHidden('op', 'avatarupload'));
$form->addElement(new XoopsFormHidden('uid', $xoopsUser->getVar('uid')));
$form->addElement(new XoopsFormButton('', 'submit', _SUBMIT, 'submit'));
$form->display();
}
$avatar_handler =& xoops_gethandler('user_avatar');
$form2 = new XoopsThemeForm(_US_CHOOSEAVT, 'uploadavatar', 'user.php');
$form2->addElement(new XoopsFormText(_US_SELFILE, 'user_avatar',30,60, $xoopsConfigUser['user_avatar']), true);
$form2->addElement(new XoopsFormHidden('uid', $xoopsUser->getVar('uid')));
$form2->addElement(new XoopsFormHidden('op', 'avatarset'));
$form2->addElement(new XoopsFormButton('', 'submit2', _SUBMIT, 'submit'));
$form2->display();
include XOOPS_ROOT_PATH.'/footer.php';
}


What is wrong ?? Why my URL entered into text pole, dont write to MySQL Database as user_avatar ??




18
gpl13
Re: No AVATAR upload...
  • 2004/7/13 22:41

  • gpl13

  • Just popping in

  • Posts: 33

  • Since: 2004/3/5 1


Where is XOOPS Comunity HELP - i asked for help, and no one, can help me - I need a small modification of edituser.php - i dont known php & mysql, and cannot change it for my self - i asked here, becouse i think that someone help me !!

Look i add form, to edit account, where i have a text box, where i can write url, and this replay to &op=avatarurl. Every think good, but, when i submit my url, avatar have 2 url's :/

http://fcm.zapto.org/xoops/upload/http://freezone.escar.pl/img/50x50.gif

How can i delete this default path 'http://fcm.zapto.org/xoops/upload/'

PEOPLE UNDERSTAND - I WILL BE HAPPY, IF SOMEONE HELP ME TO SOLVE MY PROBLEM !! I WANT AVATAR from other SERVERS - and don't want to UPLOAD !! Please HELP ME !!



19
gpl13
Re: Problems with Norton Firewall
  • 2004/7/13 19:18

  • gpl13

  • Just popping in

  • Posts: 33

  • Since: 2004/3/5 1


Turn off privacy control :) And works perfectly :)



20
gpl13
Re: No AVATAR upload...
  • 2004/7/8 13:06

  • gpl13

  • Just popping in

  • Posts: 33

  • Since: 2004/3/5 1


But if u have 25 mb of space for service, and avatar 80x80 max file size 25000... i'll be happy, if someone can write a hack to this !!




TopTop
« 1 (2) 3 4 »



Login

Who's Online

224 user(s) are online (152 user(s) are browsing Support Forums)


Members: 0


Guests: 224


more...

Donat-O-Meter

Stats
Goal: $100.00
Due Date: Apr 30
Gross Amount: $0.00
Net Balance: $0.00
Left to go: $100.00
Make donations with PayPal!

Latest GitHub Commits