john_zakaria Posted December 8, 2010 Share Posted December 8, 2010 hi everyone.. please i want to know how to create a cron job from a file in php i made this command but it does not get any response. it get the error die message i made it in php and i serched online in google and many websites and i did not solve my problem my php command is: exec("crontab -e * * * * * /usr/local/bin/php -f /home/survey/public_html/john/cron/snd2.php") or die ("<br><br>Error in executing Cron file"); so i want to create or use my cron job using php.. any help Quote Link to comment https://forums.phpfreaks.com/topic/220994-need-help-please/ Share on other sites More sharing options...
trq Posted December 8, 2010 Share Posted December 8, 2010 crontab -e will open a text editor and let you edit your crontab file. You need to make a file and place the following in it..... * * * * * /usr/local/bin/php -f /home/survey/public_html/john/cron/snd2.php You can then add to your crontab using.... crontab fileyoujustmade Quote Link to comment https://forums.phpfreaks.com/topic/220994-need-help-please/#findComment-1144311 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.