I am using red hat enterprise edition n try making a simple php page..

When I try with ...

 // html code
 <?php
 echo exec(<cmd>); 
 ?>
// rest html code

Its working fine

but when tried with ...

 // html code     
 <?php
 exec(<cmd>);
 ?>
 // rest html code

Its not working

even a simple command like cat,ls,etc not working and also I tried 2 > &1 then no error is printed .

What could be the possible error ???

link|improve this question

What do you mean it "isn't working"? Do you mean that you get no output without an echo? You shouldn't, as exec won't write anything to stdout. – meagar Oct 20 '11 at 17:21
the command i am trying to use is actually sending a packet on other n/w – Udit Gupta Oct 20 '11 at 17:23
if I am using -v switch then also won't it write anything ? – Udit Gupta Oct 20 '11 at 17:24
Which switch are you talking about? exec is a function in PHP, it doesn't accept switches. – meagar Oct 20 '11 at 18:51
-v means verbose for command line and the command is used to sent a packet on network so I thought exec should work because I do not want its response on the same machine. – Udit Gupta Oct 24 '11 at 20:26
feedback

2 Answers

up vote 3 down vote accepted

Docs:

return a response from the command, you would need to print the response out as well

Example:

<?php
$response = array()
exec('whoami', $response);
print_r($response,true);
?>
link|improve this answer
exec returns the last line of the command. – Rocket Oct 20 '11 at 17:32
+1,I did not knew about this before ... – Udit Gupta Nov 29 '11 at 21:51
accepted your answer because it suits more to the title and may guide someone in the right direction.Although I have added my answer too if someone would be interested what was the actual issue with me .. – Udit Gupta Nov 29 '11 at 21:53
feedback

okkkkkkk ......... I solved the problem. Actually there were two issues ...

  1. The apache user searches its command in /usr/bin folder by default and the command I was trying to use was located in /usr/local/bin. So I need to create a soft link of that command in the /usr/bin directory.

  2. Secondly , apache is a less privilaged user than root so need to on the sticky bit of command so that apache could successfully run the command.

I hope this will help someone else also who will face the same problem in future.

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.