Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to set up a cron job for PHP on IIS?

Tags:

iis

cron

How would I go about setting up a PHP cron job in IIS?

like image 297
Probocop Avatar asked May 14 '10 08:05

Probocop


1 Answers

Cron jobs are usually not executed via http servers, so use the Task Scheduler to execute the php interpreter and provide the physical path to your php script as a commandline argument.

like image 152
ThiefMaster Avatar answered Nov 15 '22 08:11

ThiefMaster