From ee7b964823c0cdd88616a30358e1bf65a60f8ec3 Mon Sep 17 00:00:00 2001 From: ywarnier Date: Mon, 25 Apr 2011 19:19:42 -0500 Subject: [PATCH] Added section about setting up cron --- documentation/installation_guide.html | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/documentation/installation_guide.html b/documentation/installation_guide.html index 2329f0e340..11794d6f71 100755 --- a/documentation/installation_guide.html +++ b/documentation/installation_guide.html @@ -48,6 +48,7 @@
  • Mathematical formulas with WIRIS
  • Full-text indexation with Xapian
  • Chamilo Rapid - PPT conversion system
  • +
  • Setting chronological tasks

  • @@ -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).

    +
    +

    Setting chronological tasks

    +

    +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
    +
    +

    +