Book Image

concrete5 Beginner's Guide

Book Image

concrete5 Beginner's Guide

Overview of this book

Table of Contents (19 chapters)
concrete5
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Time for action – execute concrete5 jobs periodically


Carry out the following steps to enable the scheduler on a Windows system:

  1. Download the binaries of wget from the following URL:

    http://gnuwin32.sourceforge.net/packages/wget.htm

  2. Extract wget into a directory without blanks.

  3. Press the Windows Key + R to open the run dialog and type cmd and confirm it by clicking on OK.

  4. In the command window, enter this command but modify the path to wget according to the path where you've installed it as well as the job URL, which you can see in your dashboard. The preceding screenshot shows the URL too.

    schtasks /create /tn "Concrete5 Jobs" /tr "C:\wget.exe http://your-site.com/index.php/tools/required/jobs?auth=9499e773311ba4305d5b4b7f35b2c115" /sc daily
    
  5. Confirm the command with the Enter key. You should get a confirmation that the job has been created.

SUCCESS: The scheduled task "concrete5 Jobs" has successfully been created.

What just happened?

The preceding steps installed a task to make sure that all concrete5...