Problem with Forum-Notification (but E-Mail is working)

Problem with Forum-Notification (but E-Mail is working)

by W. BrW -
Number of replies: 8

I recently installed Moodle (v2) and I have now the problem, that the notification of e.g. new entries in a forum are NOT distributed by e-mail.

Self registration via e-mail etc. is working fine.

I already configured SMTP etc. but no change...

Does anyone know a solution or has a hint how to solve my problem?

 

Thx Walter

Average of ratings: -
In reply to W. BrW

Re: Problem with Forum-Notification (but E-Mail is working)

by Juanma Campos -

I know this may sound silly, but have you set the forum properly? I mean, have you chosen the right subscription option? If the answer is yes, the only thing I can think of is to check the cron configuration. By the way, in your personal settings, have a look at the mail options!

regards,

juanma

In reply to Juanma Campos

Re: Problem with Forum-Notification (but E-Mail is working)

by Dr. Nellie Deutsch -

I am having similar problems so where would I be able to access my cronconfiguration? I'm using parallel for my ftp.

Thank you.

In reply to Dr. Nellie Deutsch

Re: Problem with Forum-Notification (but E-Mail is working)

by Christoph Ackermann -

Not sure what you mean by "parallel for my ftp", but the configuration to run the cron.php-script can not be done in moodle itself.

It's must be configured for the operating system. That could be a Scheduled Task for Windows or a cronjob for Linux.

Maybe you find what you need here: http://docs.moodle.org/en/Cron

In reply to Christoph Ackermann

Re: Problem with Forum-Notification (but E-Mail is working)

by Dr. Nellie Deutsch -

Thank you. I'm using linux.

In reply to Dr. Nellie Deutsch

Re: Problem with Forum-Notification (but E-Mail is working)

by Seun Ojedeji -
if you need to edit your cron in linux follow this 2 steps: login as root - sudo -s edit your cron - crontab -e Add the appropriate value: e.g */10 * * * * wget -q -O /dev/null http://your site/admin/cron.php This will make your cron run every 10min
In reply to Seun Ojedeji

Re: Problem with Forum-Notification (but E-Mail is working)

by Margarita Gokun Silver -

I have the same issue but my hosting doesn't allow for the cron job to run in less than 30 minutes.  Would 30 min be all right in this case?

Also, how do I set up a cron job for Moodle if it's on the subdomain, and not on the main domain?

Also, I went into cPanel, Advanced -> cronjobs but the instructions I found where for Unix, and I have Linux...  Is that the same?

 

In reply to W. BrW

Re: Problem with Forum-Notification (but E-Mail is working)

by Christoph Ackermann -

I had the same issue with moodle 2.0.1

For welcome-notifications and message-notifications it is enough to configure the SMTP settings.

But for a forum you need to run the moodle/admin/cron.php  script to send the notifications for forum acitivities. I'm running a Windows 2008 server so I needed to create a scheduled task that runs php.exe ...moodle\admin\cli\cron.php every 5 minutes.

After that you mailing worked fine for me.