I have a cron job set like
php /home/novinarb/public_html/index.php --uri="cron/24satahr"
but the 'uri' param doesn't get to the php script at all. I also tried without the -- in front of uri but still nothing. Any ideas?
|
I have a cron job set like
but the 'uri' param doesn't get to the php script at all. I also tried without the -- in front of uri but still nothing. Any ideas? |
|||
| show 1 more comment |
|
A more robust method would be to accept command-line arguments in your PHP script with
Make it executable:
And execute:
Will output:
|
||||
|
|
|
Is the php script running at all? I suspect you need to provide the full path to php in your crontab line. Even though cron jobs run as you, they don't have any of your login environment set up; this means they don't have your $PATH. |
|||
|
|
var_dump($argv);is empty inside the PHP script? – Femi Jun 12 '11 at 15:20register_argc_argvset to On? – Femi Jun 12 '11 at 21:38argvbugs in the 4 series, but nothing I'm aware of in the 5 series? – Femi Jun 13 '11 at 13:25