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 am running a PHP script via linux cronjob and I want to make sure that it can be run remotely only from the computer whose ip address I specify, plus via cronjob. Now, I can check the remote ip addresses from $_SERVER['REMOTE_ADDR'], but doing so would also stop execution via cronjob.So, how to make both things work?

share|improve this question
Do you mean you like to open the php file in your browser and check whether the remote address is equal to you IP? – s.lenders Feb 13 at 9:48

3 Answers

up vote 3 down vote accepted

You'll need to check if it is run from the command-line too to handle the cron case

if (php_sapi_name() == 'cli' || $_SERVER['REMOTE_ADDR'] == 'your.ip.add.ress') {
    // allow
}
share|improve this answer
Thank you, this is exactly what I was looking for. – user1107888 Feb 13 at 10:00

Put the cronjob out of your web root.

Then you can check wheather the cron is running over a cli:

if (php_sapi_name() != 'cli') {
    die();
}

Its no good idea to tun your cron over your webserver. Then every people can start it.

share|improve this answer

You can use php_sapi_name function to check for local (cron) execution in addition to checking IP addresses, something like this:

if (php_sapi_name() == 'cli' || $_SERVER['REMOTE_ADDR'] == 'xxx.yyy.zzz.vvv') {
    //do your stuff
}
else {
    /show some error
}

That said, you need to remember that remote address can be easily spoofed, therefore it's not good to rely on it, at least if the server is open to the internet. It's a bit more secure if you're running on a local network.

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.