up vote 0 down vote favorite
share [g+] share [fb]

I am on shared Linux CentOS hosting with multiple domains hosted on a single account.

For one of the domains I need to run a cron job. But when I try to run that it gives me this error:

/bin/sh: home/abcdef/public_html/tw/tw/save.php: No such file or directory

Can somebody guide me how to resolve this? The cron job line is:

home/abcdef/public_html/tw/tw/save.php -p processqueue

Thanks in advance.

Vinayak

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

You need a / in front the home and you need to put php in front of the command i.e.

php path/to/php.file

see this page

http://www.htmlcenter.com/blog/running-php-scripts-with-cron/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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