Friday, December 20, 2013

Drupal 7 Cron Jobs in GoDaddy


Cron Job Manager Command:

wget -O - -q -t 1 "http://<your-domain>.com/cron.php?cron_key=<your-key>"

5 comments:

  1. Drupal 7 Run Elysia cron on every Minute using crontab

    * * * * * wget -O - -q -t 1 http://your-site-name/sites/all/modules/contrib/elysia_cron/cron.php?cron_key=

    ReplyDelete
  2. Refer: How to Install Crontab in CentOS/RHEL 7/6/5

    http://tecadmin.net/install-crontab-in-linux
    http://tecadmin.net/crontab-in-linux-with-20-examples-of-cron-schedule/

    ReplyDelete
  3. [Minute] [hour] [Day_of_the_Month] [Month_of_the_Year] [Day_of_the_Week] [command]

    ReplyDelete
  4. Edit/List Jobs in Crontab
    # crontab -e
    # crontab -l
    # crontab -u -l

    ReplyDelete