:: Compile pcntl extension
|
0 1 2 3 4 5 |
wget http://museum.php.net/php5/php-5.3.6.tar.gz tar xvf php-5.3.6.tar.gz cd php-5.3.6/ext/pcntl phpize ./configure make && make install |
:: Configure pcntl extension on php.ini
|
0 1 2 3 |
vi php.ini ; add line like: [pcntl] extension=pcntl.so |
:: Checking pcntl module
|
0 |
php -m | grep pcntl |
:: Applying pcntl on httpd
|
0 |
/etc/init.d/httpd restart |
:: Links
+ Google
+ StackOverFlow
