使用composer提示[ErrorException ]proc_get_status() has been disa
未知
2020-03-19 17:43:27
0

压

从错误提示信息中可以看到是因为关闭了PHP的proc_get_status()函数,那么如何解决这个问题呢?

打开php.ini文件,搜索 disable_functions,找到如下类似内容:

disable_functions=passthru,exec,system,chroot,scandir,chgrp,chown,shell_exec,proc_get_status,proc_open,popen,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,stream_socket_server
找到proc_get_status并删除然后重启php服务。

解决上面的提示后继续使用composer又出现了新的错误提示:[Symfony\Component\Process\Exception\RuntimeException] The Process class relies on proc_open,如图:

辊

这个是缺少了PHP的proc_open函数,解决方法同样是打开php.ini文件搜索disable_functions,删除proc_open。
disable_functions=passthru,exec,system,chroot,scandir,chgrp,chown,shell_exec,proc_open,popen,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,stream_socket_server中的proc_open并重启php服务。

然后使用composer就正常了,上面两个问题可以看出用composer来安装drupal8模块需开启proc_open和proc_open这两个PHP函数。

2,错误:1,Warning: Module 'mysqli' already loaded in Unknown on line 0。2,Deprecated: Directive 'track_errors' is deprecated in Unknown on line 0
解决办法:
1,进入php.ini 把;extension=mysqli注释掉就可以了
2,修改 php.ini 
track_errors=On

track_errors=Off

3,(1)>composer create-project topthink/think=5.0.* tp5 --prefer-dist
      出错:[Composer\Downloader\TransportException]  Content-Length mismatch, received 66895 bytes out of the expected 1916381
      解决办法:>composer config repo.packagist composer https://packagist.phpcomposer.com 
(2)>composer config repo.packagist composer https://packagist.phpcomposer.com 
      出错:File "./composer.json" cannot be found in the current directory 
      解决办法:加上 -g [ --global ] 就可以了,用全局配置就不用去找 composer.json 文件了
(3)>composer require topthink/think-captcha

   出错:[Composer\Downloader\TransportException] Content-Length mismatch, received 28935 bytes out of the expected 1871484

   解决办法:  更换源   composer config repo.packagist composer https://packagist.phpcomposer.com
(4)>composer require topthink/think-captcha
     出错:
Using version ^3.0 for topthink/think-captcha
./composer.json has been updated
Loading composer repositories with package information
Updating dependencies (including require-dev)
Your requirements could not be resolved to an installable set of packages.

  Problem 1
    - topthink/think-captcha v3.0.2 requires topthink/framework ^6.0.0 -> satisfiable by topthink/framework[6.0.x-dev, v6.0.0, v6.0.0-rc2, v6.0.0-rc3, v6.0.0-rc4, v6.0.0-rc5, v6.0.1, v6.0.2] but these conflict with your requirements or minimum-stability.
    - topthink/think-captcha v3.0.1 requires topthink/framework ^6.0.0 -> satisfiable by topthink/framework[6.0.x-dev, v6.0.0, v6.0.0-rc2, v6.0.0-rc3, v6.0.0-rc4, v6.0.0-rc5, v6.0.1, v6.0.2] but these conflict with your requirements or minimum-stability.
    - topthink/think-captcha v3.0.0 requires topthink/framework ^6.0.0 -> satisfiable by topthink/framework[6.0.x-dev, v6.0.0, v6.0.0-rc2, v6.0.0-rc3, v6.0.0-rc4, v6.0.0-rc5, v6.0.1, v6.0.2] but these conflict with your requirements or minimum-stability.
    - Installation request for topthink/think-captcha ^3.0 -> satisfiable by topthink/think-captcha[v3.0.0, v3.0.1, v3.0.2].


Installation failed, reverting ./composer.json to its original content.    

     以上原因:不匹配composer.json要求的版本。captcha=1.* 如果不加=号也就下载最新版本的。也就是说tp6使用 captcha v3.*,tp5.0 使用captcha v1.*

    解决方案:看自己的tp版本是多少就用什么版本的captcha


 

 


相关内容

如何使用MySQL变量进行...
本文详细介绍了MySQL中用户定义变量、系统变量和局部变量的使用方...
2024-11-20 18:46:45
拼多多购物优惠券,优惠力度...
拼多多购物优惠券种类多,优惠力度大,可省下不少钱。可通过平台活动、...
2024-11-20 12:00:43
PHP与SQLSRV连接数...
PHP与SQLSRV连接SQL Server数据库教程,介绍安装配...
2024-11-20 11:23:44
PHP与SQLSRV连接M...
本文介绍了使用PHP和SQLSRV扩展连接MySQL数据库的实例,...
2024-11-20 11:00:46
PHP SQLSRV数据库...
本文介绍了使用PHP SQLSRV扩展进行数据库操作的示例,包括连...
2024-11-20 10:23:47
PHP中SQLSRV扩展的...
PHP中SQLSRV扩展使用技巧:通过安装配置、连接数据库、执行S...
2024-11-20 08:46:43

热门资讯

tp5 jquery判断手机端... application--common.php中添加如下代码 //函数作用是判断用户打开的是手机端还...
Laravel 5.5 .No... 创建了新的laravel项目后, 运行提示:No application encryption ke...
php 打印date函数出现错... 问题描述: 我使用的是phpstudy,在练习时间函数的时候,打印出现在的时间,date(Y-m-d...
生成随机字符唯一标识符guid... /** * @param $length * @return string * 生成随机字符串 */...
layui缩略图 div class=layui-form-item label class=layui-form-l...
php函数substr_rep... php函数substr_replace从某个位置替换或删除或插入字符串
Laravel 引入自定义类库... 强烈建议引入的类 都是含有命名空间的,这样使用起来就不会出现重名的情况。!!当然,没有命名空间也可以...
object json转化为数... //调用api 程序,通知商户订单异常 20200314 public function callt...
Laravel 查看SQL操作... 方法一:临时打印操作记录 DB::connection()-enableQueryLog(); # ...
php银行开放平台接口:pfx... 问题描述: 对接易通银行,他们的服务开放平台是java开发,而我的是php,现在需要php版本的SD...