The php-pcntl tag has no wiki summary.
7
votes
2answers
158 views
What are the best/popular libraries for developing CLI apps/scripts?
Many of the component libraries and toolkits I'm familiar with lack CLI-specific libraries (zend, kohana, etc..). Are there any libraries/tools that are designed specifically for developing CLI ...
2
votes
1answer
79 views
pcntl_wifexited always return true
Well the child process may exit with error but pcntl_wifexited always return true
<?php
//Sample code :
$child_pid = pcntl_fork();
if ($child_pid === 0)
{
//This is child process
...
2
votes
2answers
293 views
Long PHP SOAP process
I've been working on a website that get all its data through SOAP. Some pages may have three or four calls to the soap server and some of the calls can sometimes take quite long (30-60 seconds).
...
2
votes
3answers
413 views
pcntl_fork() function question
Goodmorning stackoverflow,
I'm still busy with my webcrawler and i just need some last help.
Because crawling the web can cost a lot of time I want to let pcntl_fork() help me in creating multiple ...
1
vote
1answer
222 views
How can I check a PDO MySQL connection for errors BEFORE I run a query?
My scripts are getting quite riddled with forked processes in a lot of different functions. Whenever pcntl_fork() is called, all MySQL connections are lost. If I run a query on a PDO MySQL connection ...
1
vote
2answers
289 views
How do I keep my mysql connection in the parent proccess after pcntl_fork?
As all of you know when you fork the child gets a copy of everything, including file and network descriptors - man fork.
In PHP, when you use pcntl_fork all of your connections created with ...
1
vote
1answer
549 views
how to enable process control extension (PCNTL) in PHP MAMP?
I have MAMP and I need to enable -pcntl on my current MAMP installation.
How can I do so?
Thanks for your help.
1
vote
2answers
320 views
Why is the use of pcntl library in php is discouraged on prod-serv?
Can anybody tell me why using the pcntl lib on production servers is discouraged? The PHP manual tells very briefly about it, and I'm in a dire need to use this library...
Is there another way to do ...
0
votes
0answers
24 views
Enable PCNTL with yum service
Any way to enable PCNTL on php without compile new PHP or with using YUM service?
0
votes
2answers
241 views
PHP pcntl Variable Scope
I want to be able to modify array elements that are in the parent pid. Here is some example code:
$arrayContainer = array(
array(
"id" => 1,
"name" => "Lenny"
),
...
0
votes
0answers
99 views
pcntl_signal isn't triggered by the child process
I want to achieve this:
if the daemon gets SIGHUP than run the process again (as child) and kill the parent.
When i'm running it, the first time is working:
> php test.php
> kill -HUP pid
...
0
votes
1answer
706 views
activate pcntl_fork() ubuntu xampp
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 ...
0
votes
2answers
149 views
What are the side-effects of enabling PROCESS CONTROL (PCNTL) in PHP on web server environment?
below is a quotation from http://www.php.net/manual/en/intro.pcntl.php
Process Control should not be enabled within a web server environment and unexpected results
may happen if any Process ...
0
votes
2answers
191 views
php forking issue
I have the following test php to do a fork/spawn process, where the test also attempts to kill the child process (zombie) after is completes..
I'd like to have a more efficient process, where any ...
0
votes
2answers
153 views
How do I use $status returned by pcntl_waitpid()?
I have a parent/worker arrangement going on. The parent keeps the worker PIDs in an array, constantly checking that they are still alive with the following loop:
// $workers is an array of PIDs
...
0
votes
3answers
173 views
shell_exec phpfile
Atmoment i use this code:
if(isset($_POST['url']) && isset($_POST['trefwoorden']) )
{
mysql_connect('localhost', 'crawler', 'whathasbeenseencannotbeunseen');
mysql_select_db("crawler");
...
0
votes
1answer
372 views
PHP: Can pcntl_alarm() and socket_select() peacefully exist in the same thread?
I have a PHP CLI script mostly written that functions as a chat server for chat clients to connect to (don't ask me why I'm doing it in PHP, thats another story haha).
My script utilizes the ...