I'm having some problems with the function pcntl_fork() in php.

I'm using XAMPP and I'm trying to use that function and keeps me showing this error:

Call to undefined function pcntl_fork()

I dig something on Google and in XAMPP forums but couldn't find anything totally useful. I found some forums saying that i need to enable some configuration called

--enable-pcntl

I saw the phpinfo() and i have that option in the configure command. Can you help me?

Thanks in adavnce,

Elkas

link|improve this question

78% accept rate
feedback

1 Answer

It is configuration, but not runtime. It's compile time configuration. When compiling you have to do:

./configure --enable-pcntl
make
make install

If it's not compiled in you can't enable it without recompiling.

link|improve this answer
1  
His statement says that phpinfo() suggests that it was compiled that way by default. – gms8994 Mar 30 '11 at 18:19
After the installation of XAMPP how can i do that? – Elkas Mar 30 '11 at 18:26
yes, it says that was compiled by default. So i don't know why is not working. – Elkas Mar 30 '11 at 18:27
Even a simple file with <?php $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 } ?> isn't working. – Elkas Mar 30 '11 at 18:29
@Elkas - yes. I missed that. May be there are 2 installations of php on the same machine. What if ubunto has php and you installed XAMPP. Are you sure you've run phpinfo() and the your fork() script on the same interpreter? If you run phpinfo() on web server and fork on php cli then it's possible that web server is using different PHP installation – NickSoft Mar 30 '11 at 18:52
show 4 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.