no email when comment is made
no email when comment is made
i don't receive any emails when comments or new entries are made, why is that...is there a special plugin to install, i have tried everything possible to my knowledge, please help
Check the personal settings under admin -> Manage Users -> {Your User}. Ensure you're set to receive email when entries are created.
Check the blog email by asking your server admins. Sometimes they recognize anything@yourdomain; sometimes they only recognize youraccount@theirdomain. Only the admins know for sure.
Check the blog email by asking your server admins. Sometimes they recognize anything@yourdomain; sometimes they only recognize youraccount@theirdomain. Only the admins know for sure.
The changes made in the hosting section only redirect mail addressed TO you. The problem is that many hosts reject mail unless the FROM address is recognized as valid. Serendipity uses the PHP mail() routine, which sends the mail depending on the server configuration. Serendipity uses the "Blog's Email Address" that I mentioned earlier as the FROM address. If the server doesn't recognize it, the mail will be ignored.
You can give it a try by creating this file on your server:
Save that on your server as testmail.php and call it from your browser. If you receive an email, then the FROM address is fine and your server is handling mail properly (and something else is going wrong in Serendipity). If not, the server isn't sending the mail to you. Either the FROM address is being rejected, or the server isn't set up to send email.
You can give it a try by creating this file on your server:
Code: Select all
<?php mail('to_me@mydomain', 'fromaddress@as.configured.in.blog', 'Email works on the server!');
?>
Assuming you substituted the email addresses, and that "it did not work" means you received no errors and no email, that indicates that Serendipity <i>cannot</i> send you email. It tries; the script does the same thing Serendipity does. But the server doesn't let it happen.
I'd recommend sending your script to your server admin and asking why it doesn't work. Fix the script, and you fix the blog.
I'd recommend sending your script to your server admin and asking why it doesn't work. Fix the script, and you fix the blog.