The Process class relies on proc_open,which is not available on your php installation

我的测试环境用的是“护卫神.主机大师“一键装的环境,服务器环境:iis8+php7.2.1+mysql+thinkphp5

事件起因:

因为我想玩一下thinkphp5中自带的消息队列,然后用到了cmd命令行打开:php think queue:listen,嗯就异常就来了。

异常信息:

对于我这种新手来说,手动懵逼.gif,那就度娘搜索一下吧,搜到很多答案

搜索到解决办法:

打开php.ini,找到disable_functions,看看等号后面有没有一个“proc_open”,把它去掉,重启iis

正常到这里就可以了,

但是我的就是不行,手动懵逼.gif

此时:当然是用神器,phpinfo();看看disable_functions是否还存在“proc_open”,嗯,没有看错已经不存在了

解决办法:

那就通过cmd命令找一下,php --ini

难道是我修改的是php7.2.18中php.ini,没有改php5.6的php.ini的原因?(因为之前用的是php5.6的,后来通过护卫神升级php到7.2)

那就试一下,打开php.ini,找到disable_functions,看看等号后面有没有一个“proc_open”,把它去掉,重启iis

最后,小心翼翼的:php think queue:listen,没有异常,监听成功了。

记录下来,有可能也有同行遇到这样的问题,看看能否帮助到你。

原文地址:https://www.cnblogs.com/cdyy/p/11660758.html

时间: 2024-11-03 10:49:35

The Process class relies on proc_open,which is not available on your php installation的相关文章

composer安装出现proc_open没有开启问题的解决方案

今天在安装下载项目的时候,使用composer来安装依赖.遇到了 The Process class relies on proc_open, which is not available on your PHP installation. 解决方法: 在php.ini中,找到disable_functions选项,看看后面是否有proc_open函数被禁用了,如果有的话,去掉即可. 其实如果php的文档熟悉的话,你应该马上就能知道proc_open实际上是一个函数,是php用来和shell交互

install

http://jingyan.baidu.com/article/19020a0ad09f35529d2842bf.html //vm10安装http://60808.org/thread-17859-1-1.html //vm安装centoshttp://www.helloswift.com.cn/swiftbase/2014/0608/3096.html //vm安装MAC OS X 10.9http://lspgyy.blog.51cto.com/5264172/1275146 //克隆后

[李景山php]每天TP5-20170120|thinkphp5-Process.php-2

/**  * @var array  */ public static $exitCodes = [// 异常退出 代码     0   => 'OK',// 正常退出     1   => 'General error',// 一般性错误     2   => 'Misuse of shell builtins', // 缺少脚本     126 => 'Invoked command cannot execute',// 执行命令错误     127 => 'Comman

Yii安装时会出现的问题

今天打算学习一下Yii,但是在安装过程中出现了很多问题. 通过composer安装: composer global require "fxp/composer-asset-plugin:~1.1.1" composer create-project --prefer-dist yiisoft/yii2-app-basic basic 第一条命令安装 Composer asset plugin,它是通过 Composer 管理 bower 和 npm 包所必须的,此命令全局生效,一劳永

composer require 指定版本

默认 composer require endroid/qr-code 指定版本 composer require endroid/qr-code 1.9.3 # composer require endroid/qr-code 1.9.3 ./composer.json has been updated Loading composer repositories with package information Updating dependencies (including require-

PHP之常用操作

在最高权限下执行相关命令 1)查看PHP配置 php --ini Configuration File (php.ini) Path: /www/server/php/70/etc Loaded Configuration File: /www/server/php/70/etc/php.ini Scan for additional .ini files in: (none) Additional .ini files parsed: (none) 2)重启服务 service php-fpm

multi2sim,booksim简介

multi2sim是周期精确互连网络仿真器,设计用来配合"Principles and Practices of Interconnection Networks"课程教学,仿真器采用C++语言编写,目前项目源码寄托在Github上,https://github.com/booksim/booksim2. BookSim is a cycle-accurate interconnection network simulator. Originally developed for and

top-100-of-the-best-useful-opensource-applications/

top-100-of-the-best-useful-opensource-applications/ http://www.ubuntulinuxhelp.com/top-100-of-the-best-useful-opensource-applications/ The following is a list of about 100 of the best OpenSource Applications, that actually help make Linux more usable

20172317 2017-2018-2 《程序设计与数据结构》实验二报告

20172317 2017-2018-2 <程序设计与数据结构>实验二报告 课程:<程序设计与数据结构> 班级: 1723 姓名: 蒋子行 学号: 20172317 实验教师: 王志强 实验日期: 2018年4月22日 必修/选修: 必修 实验内容Experiment content Master the basic of unit testing and TDD(Test-driven development) Understand and master 3 vital elem