vote up 0 vote down star

I have found many questions and articles about this but i still have some difficulties. I'm using the following command /usr/bin/php home/domain.com/public_html/cron/script.php I receive the following error Status: 404 Not Found X-Powered-By: PHP/5.2.8 Content-type: text/html

No input file specified.

i'm using Cpanel, the file is hosted on domain.com/cron/script.php Anyideas, thanks :p

flag

51% accept rate

3 Answers

vote up 2 vote down check

Try:

wget http://domain.com/cron/script.php

and see if you get a better result.

link|flag
Mine may work, but you may want to look at chaos's better-reasoned answer. – lacqui Mar 28 at 4:59
vote up 7 vote down

Put a leading slash on the script name, i.e.

/usr/bin/php /home/domain.com/public_html/cron/script.php

Unless you actually intend to run the script through the web, as in lacqui's answer, and you don't mind random third parties being able to run it any time they like, there's no reason you should put it inside your public_html directory; quite the opposite.

link|flag
Good point about not making the script public. – lacqui Mar 28 at 4:50
I'll add here because it's probably not obvious to OP: by random third parties being able to run it 'any time they like', I also mean 'many times a second'. Since CPU-intensive and memory-intensive tasks are often candidates for cron jobs, you may be handing people an easy denial of service attack. – chaos Mar 28 at 5:08
Only if you don't make sure it isn't already running first. Use your database to create a guard "CRON last started at " timestamp. Then in your cron don't run if the timestamp is X minutes/hours old. – jmucchiello Jun 12 at 1:59
actually this might not work. you better use cd /home/domain.com/public_html/cron/ && /usr/bin/php script.php to setup working directory correctly – Cem Kalyoncu Sep 17 at 10:34
vote up 1 vote down

You might need to use the binary known as php-cli instead of just php.

link|flag
That's for windows, in *nix you just use /usr/bin/php. And by the mention of cron its definitely *nix environment. – Cem Kalyoncu Sep 17 at 10:33
@cemkalyoncu: Some systems ship a seperate php-cli that contains extra stuff like readline, and others. Can come in handy on the command line. – X-Istence Sep 17 at 19:38

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.