今天在虚拟机上安装一个系统的插件,出现了You must have POSIX and PCNTL functions to use Video Process,搜了一下缺少插件,那接下来就是安装了。
系统:centos 7
php版本:PHP 7
1.安装php-posix
yum -y install php-process
2.验证是否安装上了
php -m|grep posix
如果显示 posix说明安装成功了,哈哈哈接下来重启apache就ok了。
重启apache:
service httpd restart
注意:这个安装插件要看你的php安装版本,我们大boss上面装的php是php70w,所以安装的时候要用 yum -y install php70w-process 这样写,注意细节很重要!