Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question
When you say it doesn't get to the PHP script at all, you mean that var_dump($argv); is empty inside the PHP script? – Femi Jun 12 '11 at 15:20
@Femi affirmative – Kemo Jun 12 '11 at 21:05
In your php.ini is register_argc_argv set to On? – Femi Jun 12 '11 at 21:38
@Femi affirmative, again :) I checked the 'usual suspects' and ended up here, still nothing – Kemo Jun 13 '11 at 11:47
What version of PHP is this, if you don't mind me asking: there were a couple of argv bugs in the 4 series, but nothing I'm aware of in the 5 series? – Femi Jun 13 '11 at 13:25
show 1 more comment

2 Answers

up vote 1 down vote accepted

A more robust method would be to accept command-line arguments in your PHP script with getopt() or $argv and making it executable. An example with $argv called script.php:

#!/usr/bin/php
<?php
  if (isset($argv[1])):
    echo $argv[1];
  endif;
?>

Make it executable:

chmod +x script.php

And execute:

./script.php "cron/24satahr"

Will output:

cron/24satahr
share|improve this answer

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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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