my host dont support cronjobs, so i tried to use pseudo-cron v1.3 (
www.bitfolge.de/pseudocron ) but it also not working .If anyone using this script please guide me to make it work. or suggest me any alternative script(without mysql support) to run cronjobs.
here is my cofig
Quote:
// The file that contains the job descriptions.
// For a description of the format, see http://www.unixgeeks.org/security/ne...ix/cron-1.html
// and http://www.bitfolge.de/pseudocron
$cronTab = dirname(__FILE__)."/cronjobs/crontab.txt";
// The directory where the script can store information on completed jobs and its log file.
// include trailing slash
$writeDir = dirname(__FILE__)."/cronjobs/";
// Control logging, true=use log file, false=don't use log file
$useLog = true;
// Where to send cron results.
//$sendLogToEmail = "[email protected]";
$sendLogToEmail = "";
// Maximum number of jobs run during one call of pseudocron.
// Set to a low value if your jobs take longer than a few seconds and if you scheduled them
// very close to each other. Set to 0 to run any number of jobs.
$maxJobs = 1;
// Turn on / off debugging output
// DO NOT use this on live servers!
$debug = false;
|