when i run the code

shell_exec('ping -c 4 127.0.0.1')

it returns NULL, but when I run the same command (ping -c 4 127.0.0.1) in ssh, it returns perfectly...

and yes, the script can run shell_exec, I tried shell_exec('ls') and it returns correctly, and shell_exec('ping -V') returns ping utility, iputils-ss020927 so ping is being called, but I just get no response...

any help? thanks!

link|improve this question
feedback

1 Answer

Solved:

Ping cannot be executed as a user. Root must run chmod +s 'type -p ping' in order for users to run ping

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.