Page 1 of 1
You too can have your own website, and MUCH, MUCH More at Home!
Posted: Wed Mar 13, 2013 10:19 pm
by Michael Slaunwhite
Here is the link to Apache Freinds Xammp for Windows:
http://www.apachefriends.org/en/xampp-windows.html
Cheerios!
Re: You too can have your own website, and MUCH, MUCH More at Home!
Posted: Wed Mar 13, 2013 11:25 pm
by Michael Slaunwhite
This is how you can create Cron Jobs for Xampp.
SPOILER: SHOW
Create a batch file to run your php script using php executable "C:\xampp\php\php.exe C:\wamp\www\index.php". Add this batch file in Scheduled Task in Windows control panel.
To create the batch file
Open Notepad.
Paste the line "C:\xampp\php\php.exe C:\wamp\www\index.php"
Click "File" -> "Save As"
Ensure "Save as type:" is set to "All Files"
Save the file as "cron.bat" to your C drive
To schedule the batch file to run
Open Command Prompt
Paste the following "schtasks /create /sc minute /mo 20 /tn "PHP Cron Job" /tr C:\cron.bat"
Press Enter
This will make the script run every 20 minutes, the first time 20 minutes from now.