I'm trying to run a PHP script, like writing something in a txt file. If I manually load the file it works, but not with a cron job. I have cPanel and I followed what I read in the help page, but nothing works.

I tried this command

php -q /user/public_html/folder/cronTest.php

but it didn't work. I also tried

/user/local/bin/php -q /cronTest.php

as it says here.

I also tried to put #!/user/public_html/bin/php -q at the top of the file, but that didn't work either. I've also tried to change file permissions with similar results.

I really need to learn how to use cronjobs, cause I'll have a lot of work where it is needed.

I intend to use cPanel to set corncobs, so I hope the problem is with the command and/or the in code in the PHP file.

link|improve this question

43% accept rate
3  
Did you actually use /user/ instead of /usr/. The latter is the normal way of spelling that path. – Conspicuous Compiler Dec 23 '11 at 23:58
user needs to be the user name - i think! – Pedro Soares Dec 24 '11 at 0:04
feedback

closed as off topic by casperOne Dec 25 '11 at 18:46

Questions on Stack Overflow are expected to generally relate to programming or software development in some way, within the scope defined in the faq.

2 Answers

Have you tried something like this?

php -q /home/your_username/public_html/folder/cronTest.php

Also, if you can't find a solution, I'd suggest you to contact your hosting provider as they might be able to help you faster, or even fix a misconfiguration that might be causing the problem.

EDIT: Got it to work by using:

/usr/bin/php -q /home/your_username/public_html/path/to/script.php
link|improve this answer
Thank you Tom for the advice, but i allready contact them, but they help in things related with the server, etc...they say i need to fnd help near programares, cause the help team is not for this kind of problems. And because is my first time with cronjobs...i googled a lot for this subject, but i could't solve it. Thanx. – Pedro Soares Dec 24 '11 at 0:05
And yes i tryed that one. – Pedro Soares Dec 24 '11 at 0:05
Is there any error_log file in the same directory as the script you're trying to run? It might have some useful information. Also, give /usr/local/bin/php -q /cronTest.php a go, as suggested by Conspicuous Compiler. /usr/local/bin/php it's the path were the binary is usually at. – Telmo Marques Dec 24 '11 at 0:07
Sorry, in my previous comment I meant /usr/local/bin/php -q, as the path to the PHP file may differ because of server configuration. Try it together with the several file path's you already tried. – Telmo Marques Dec 24 '11 at 0:20
I realy have a problem here! /usr/local/bin/php -q /home2/user_name/public_html/consulta24/cronTest.php Now i'm using this, should i replace "local" for "home2/user_name/peblic_html"? I also tryied just /usr/local/bin/php -q /consulta24/cronTest.php, but nothing! – Pedro Soares Dec 26 '11 at 11:43
show 4 more comments
feedback

We use cron to run nightly tasks in a php facebook game. We do it by using curl like this:

/usr/bin/curl http://www.ourdomain.com/page.php

If I remember right we had some issues using localhost to try to avoid external lookups. Also we tried using php command line execution, which mostly worked but caused a few strange bugs.

link|improve this answer
feedback

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