I am going to start working with the yii map using the composer, and for this I need this php pcntl module. As I read from the manuals, it is not installed by default on ubuntu. Because of this, I found some instructions something like this
mkdir php
cd php
apt-get source php5
cd php5-(WHATEVER_RELEASE)/ext/pcntl
phpize
./configure
make
Then:
cp modules/pcntl.so /usr/lib/php5/WHEVER_YOUR_SO_FILES_ARE/
echo "extension=pcntl.so" > /etc/php5/conf.d/pcntl.ini
and made the installation. But I know that I get a message
PHP Warning: Module 'pcntl' already loaded in Unknown on line 0
which probably means that maybe this module was already on my system. So what are my steps now? Just ignore this warning, or should I do something to fix this?
David source
share