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'm trying to use fork in php for first time. when I use

$pid = pcntl_fork();
if ($pid == -1) {
     die('could not fork');
} else if ($pid) {
     // we are the parent
     pcntl_wait($status); //Protect against Zombie children
} else {
     // we are the child
}
(fork example in php.net) I will received following error.
Server error
The website encountered an error while retrieving http://localhost/fork.php. It may be down for maintenance or configured incorrectly.
I think fork is not enable,so I donwload php5 source code and do
./configure --enable-pcntl
make
make install
but I will get same error too. where is problem?

share|improve this question

1 Answer

execute phpinfo(); and see if pcntl is enabled.

share|improve this answer
It's not enable.I done it befor,but I can't find any pcntl word in result. – Moein7tl Sep 23 '11 at 13:14

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.