From ee7b964823c0cdd88616a30358e1bf65a60f8ec3 Mon Sep 17 00:00:00 2001
From: ywarnier
@@ -742,6 +743,27 @@ Then go to your administration page -> Chamilo Rapid and set the host
Note: Sometimes, this doesn't work out so easily. You can probably ask for the assistance of any system administrator around with a bit of Java and PHP experience, or you can always ask one of the Chamilo's Official Providers for assistance (ask for a guaranteed commercial contract).
+Since Chamilo 1.8.8, a few tasks need to be executed regularly in order to get +the best out of your server resources. One of such tasks (and the only one +around at the time of Chamilo 1.8.8) is the sending of internal messaging +notifications by e-mail, i.e. when you receive an e-mail from another person or +from a group inside the internal messaging system of Chamilo, if all e-mails are +sent immediately, then you might not have the chance to receive them at your +pace, once a day or even once a week. For cases like this you, as a Chamilo +administrator, should setup a cron process on the server to check the queue of +e-mails and send is timely.
++Setting up a cron task is easy and there are several ways to do it. We recommend +you have a look at the Drupal documentation +for setting up cron and define your own cron process as: +
+35 * * * * wget -O - -q -t 1 http://campus.example.com/main/cron/notification.php ++ +