thinkphp 5.0报错pcntl_signal() has been disabled for security reasons问题解决

环境

centos7

thinkPHP 5.0

think-worker 1.0.1

Workerman version:3.5.30

PHP version:5.6.9

thinkPHP 5.0使用workerman,启动workerman服务端报错

pcntl_signal() has been disabled for security reasons in file /www/wwwroot/shop/vendor/workerman/workerman/Worker.PHP on line 1107
pcntl_fork() has been disabled for security reasons in file /www/wwwroot/shop/vendor/workerman/workerman/Worker.PHP on line 1514

问题原因:pcntl_signal、pcntl_fork 等系列函数被禁用了

解决方案:找到 PHP.ini 文件并定位到 disable_functions 字段,将其后的 pcntl_signal、pcntl_fork等系列函数删掉。

宝塔面板操作步骤:软件商店(已安装) -> PHP5.6 ->设置-> 禁用函数,将pcntl_signal、pcntl_fork等系列删除即可。

非生产环境,可以将 disable_functions 字段后内容留空。

相关文章

public function getapiSignature(){$access_token=S('access_token');//先查询缓存中...
前述两篇文章“使用BootStrap制作用户登录UI”和“使用BootStrapValidator来完成前端输入验证 ”已经将...
前两天自己写的一篇文章“针对BootStrap中tabs控件的美化和完善”被别的网站给转载了,这也许是值得高兴...
由于用惯了ThinkPHP之前的版本,一想到要用Session就直接用$_SESSION来存取,今天看了ThinkPHP5的手册,...
今天访问自己的网站的时候(by thinkphp),突然发现身份验证失效了,Session无法跨页,而且登陆的时候...
使用thinkphp做一个后台系统,把session中的id传给header模板 切换多个子账户的时候,发现模板传递的参...