Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a php script which needs to restart lighttpd. The php page never returns to the client. I believe that is because the call doesn't return. Here is my code:

 <?php

 exec("/etc/init.d/lighttpd restart");
 echo "Restarted!";

 ?>

If I comment out the exec line it returns as expected. How can I get this call to return?

Thanks,

EV

share|improve this question
Is it restarting lighttpd? – Wayne Whitty Sep 14 '12 at 8:35
1  
are you shure that the apache/php user is allowed to exec the /etc/init.d/lighttpd script? by default root is allowed to execute the init.d scrips and apache don't run with root user .... – donald123 Sep 14 '12 at 8:38

2 Answers

up vote 0 down vote accepted

If you restart you httpd process your scripts will be terminated, no matter what you do!

You will never make any scripts to return a value directly from PHP. To make that work you should add a javascript and check for a 200 Status Code.

share|improve this answer
Good call. That was a stupid question. It must be like 2am. ;-) – exvance Sep 14 '12 at 8:40

It's because your script kills the existing Lighthttpd process before it is able to return the result of the execution...

It is like having a process that kills himself and wondering why the process is not returning anything...

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.