Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I added a cronjob by entering this command - crontab -e. I added the following tasks in that file-

*/5 * * * * /var/www/web/vendors/shells/aggregated_deals.php
*/5 * * * * /var/www/web/vendors/shells/deals.php

These are php scripts. after that i restarted the apache server,but these scripts are not executing. And syslog log file is empty. please help me to run this cron.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
1.1k views
Welcome To Ask or Share your Answers For Others

1 Answer

I don't think that will run by itself - you need to run the scripts using the PHP interpreter, like this:

/usr/bin/php /var/www/web/vendors/shells/aggregated_deals.php

Note that your installation may have php elsewhere - use the command which php on the command line to find out the location.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...