|
From: SourceForge.net <no...@so...> - 2008-02-11 21:03:56
|
/mod/article item #1891422, was opened at 2008-02-11 14:01 Message generated for change (Comment added) made by trf000 You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=681146&aid=1891422&group_id=81360 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: None Group: None Status: Open Resolution: None Priority: 5 Private: No Submitted By: Thomas de Jesus (trf000) Assigned to: Nobody/Anonymous (nobody) Summary: E-mail Article Initial Comment: Email article not working. I found a few missing {} in A_Mail.php. line 107: $tags['BACKLINK'] = '['..']'; i changed to $tags['BACKLINK'] = '["../"]'; that helped but i still get the following Notice and Warning: Notice: Undefined variable: error in E:\InetPub\webdev\mod\article\inc\A_mail.php on line 126 Warning: Invalid argument supplied for foreach() in E:\InetPub\webdev\mod\article\inc\A_mail.php on line 126 then when trying to send the mail i get: ERROR: The string you entered for the image verification did not match what was displayed. on linux, it will send the mail minus any content. On IIS it will not send mail at all. server is configured to send mail properly as maililist and user signup modules work. ---------------------------------------------------------------------- >Comment By: Thomas de Jesus (trf000) Date: 2008-02-11 15:04 Message: Logged In: YES user_id=860147 Originator: YES line 29 changed: if (Captcha::verify($_POST['captcha'])) $error[3] = dgettext('article', 'The string you entered for the image verification did not match what was displayed.'); to if (!Captcha::verify($_POST['captcha'])) $error[3] = dgettext('article', 'The string you entered for the image verification did not match what was displayed.'); I now get the following notices and warnings: Notice: Undefined variable: text in E:\InetPub\webdev\mod\article\class\AM_Actions.php on line 315 Notice: Only variable references should be returned by reference in E:\InetPub\webdev\lib\pear\Mail\mime.php on line 569 Notice: Only variable references should be returned by reference in E:\InetPub\webdev\lib\pear\Mail\mime.php on line 593 Warning: mail() [function.mail]: SMTP server response: 550 Relaying denied in E:\InetPub\webdev\lib\pear\Mail\mail.php on line 117 AND this message... EMAIL ERROR: mail() returned failure ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=681146&aid=1891422&group_id=81360 |