laravel框架项目部署运行报如下错误:The Process class relies on proc_open, which is not available on your PHP installation.出现问题是因为PHP默认禁用了proc_open和proc_get_status两个函数,我们去掉即可。
laravel框架项目部署运行报如下错误:
The Process class relies on proc_open, which is not available on your PHP installation.
出现问题是因为PHP默认禁用了proc_open和proc_get_status两个函数,我们去掉即可。
详细操作如下:
1、打开php.ini配置文件,搜索disable_functions ,大概在310行
disable_functions = passthru,exec,system,chroot,chgrp,chown,shell_exec,proc_open,proc_get_status,popen,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,stream_socket_server
2、将proc_open,proc_get_status函数去掉即可
disable_functions = passthru,exec,system,chroot,chgrp,chown,shell_exec,popen,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,stream_socket_server
3、重启PHP环境
本文标题为:解决laravel框架运行报错The Process class relies on proc_open, which is not available on your PHP installation.
基础教程推荐
- thinkphp3.2.3框架动态切换多数据库的方法分析 2023-03-19
- PHP命名空间简单用法示例 2022-12-01
- 在Laravel中实现使用AJAX动态刷新部分页面 2023-03-02
- 使用PHP开发留言板功能 2023-03-13
- laravel ORM关联关系中的 with和whereHas用法 2023-03-02
- laravel 解决多库下的DB::transaction()事务失效问题 2023-03-08
- PHP获取MySQL执行sql语句的查询时间方法 2022-11-09
- php array分组,PHP中array数组的分组排序 2022-08-01
- PHP实现Redis单据锁以及防止并发重复写入 2022-10-12
- PHP中的错误及其处理机制 2023-06-04