I'm getting the same error on my site - it looks like any time someone responds to a forum post that notifies someone, the outgoing email triggers the error.
The error is identical (except for the dir. abouve includes, of course). I am running uke 7.5 w/ phpBB2011. The posts still go through (sometimes more than once), but the error is confusing my users.
I've found a few references to this, but not any fixes... can anyone pin down the exact cause and / or solution to this?
Guessing from the dates on these posts, this is a recurring issue.
I also have the problem, email is sent like it is supposed to be when registration new pms etc, but when some one wants to be notified of a new reply etc, it doesnt send the email out, i believe it is the same for this site because i never receive reply to my posts, i use nuke 7.2, phpbb 10, everything else works fine when i go to smtp it works fine ecept for forums replys it give me the error in my emailer.php file, whats up wit this?
wtwolf6 Corporal
Joined: Aug 09, 2004
Posts: 63
Location: New MExico
Posted:
Sun May 08, 2005 7:46 am
Bump,
Anyone have a nswer yet?
wtwolf6 Corporal
Joined: Aug 09, 2004
Posts: 63
Location: New MExico
Posted:
Thu May 12, 2005 3:50 pm
bump again
Xyberian Colonel
Joined: Mar 14, 2004
Posts: 1921
Location: Behind you
Posted:
Thu May 12, 2005 4:20 pm
wtwolf6 wrote:
bump again
1)Turn off your option to send email by independent mail account in your Forum Admin CP. 2)check your sendmail by typing the following commands in your UNIX terminal or windows command window:
got that back
the email server works fine it sends emails on new pms and new registers and password reminders and resets but not the topic reply notification, i really need to get this fixed and have no idea whats causing it it has happend with the nuke since i installed it, im running nuke 7.2 no patches etc installed, only sentinal, and the forums is 2.0.7 with version 2.0.4 of PHP-Nuke Port. any ideas or anything that might get this going?
Xyberian Colonel
Joined: Mar 14, 2004
Posts: 1921
Location: Behind you
Posted:
Sun May 15, 2005 6:57 pm
Turn on 'topic reply notification' switch to ON in Forum profile and Forum Admin CP.
Are you saying I need to change the topic reply for all users? And Everything in the admin panel is set for users email etc. so theres no problems there.
NeapolitanWorld Nuke Cadet
Joined: Apr 22, 2006
Posts: 6
Posted:
Tue Sep 23, 2008 5:15 am
I have a similar problem and I have turned on Notification option and tested to see if I'm sending mail. I'm sending ok and the forum is working, except the error message:
Code:
message_die(GENERAL_ERROR, 'Unable to update config table', '', __LINE__, __FILE__, $sql); } $board_config['sendmail_fix'] = 1; $result = @mail($to, $this->subject, preg_replace("#(?msg), $this->extra_headers); } } // Did it work? if (!$result) { message_die(GENERAL_ERROR, 'Failed sending email :: ' . (($this->use_smtp) ? 'SMTP' : 'PHP') . ' :: ' . $result, '', __LINE__, __FILE__); } return true; } // Encodes the given string for proper display for this encoding ... nabbed // from php.net and modified. There is an alternative encoding method which // may produce lesd output but it's questionable as to its worth in this // scenario IMO function encode($str) { if ($this->encoding == '') { return $str; } // define start delimimter, end delimiter and spacer $end = "?="; $start = "=?$this->encoding?B?"; $spacer = "$end\r\n $start"; // determine length of encoded text within chunks and ensure length is even $length = 75 - strlen($start) - strlen($end); $length = floor($length / 2) * 2; // encode the string and split it into chunks with spacers after each chunk $str = chunk_split(base64_encode($str), $length, $spacer); // remove trailing spacer and add start and end delimiters $str = preg_replace('#' . phpbb_preg_quote($spacer, '#') . '$#', '', $str); return $start . $str . $end; } // // Attach files via MIME. // function attachFile($filename, $mimetype = "application/octet-stream", $szFromAddress, $szFilenameToDisplay) { global $lang; $mime_boundary = "--==================_846811060==_";
Thats about a quarter of it, there is more but I can not post it all. Any ideas?
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum