Dont run...
Closed this issue · 2 comments
victorsantosdevops commented
Fatal error: Call to undefined function pcntl_signal() in /home/playragnarok/VikingBot/VikingBot.php on line 51
hashworks commented
Seems like the extension isn't activated on your PHP install. If you compiled from source make sure you compiled with --enable-pcntl
. Also you need to enable the extension in your CLI php.ini
, add the following line: extension=pcntl.so
(If you don't know where to find the ini file, it's most likely /etc/php5/cli/php.ini
)
victorsantosdevops commented
thx! solved!