composer PHP Fatal error: Allowed memory size of 报错解决

简介: composer PHP Fatal error: Allowed memory size of 报错解决

执行以下命令(安装多线程)


php composer.phar require hirak/prestissimo


出现以下提示


PHP Fatal error: Allowed memory size of 1610612736 bytes exhausted (tried to allocate 32 bytes)


原因是内存不够,这需要到php.ini里配置,在php7.4版本里有效,7.2我走过,无效,用install命令是可以的,这是windows下的BUG吧


memory_limit = 128M

把128M改成-1,表示不限制


现在把解决方案操作说明公布如下:


1、php版本设置成7.4,到php.ini里,做以下修改(重点在PHP版本号7.4和内存的修改)


memory_limit = 128M
// 改为
memory_limit = -1


2、执行命令改变更新源,这里改成阿里的,加快速度


php composer.phar config repo.packagist composer


https://mirrors.aliyun.com/composer/

3、安装composer的多线程,多线程走,效率更高不是


php composer.phar require hirak/prestissimo


4、执行composer更新的命令,因为在上面多线程命令执行后,已经同时默认执行了 php composer.phar install,所以接下来只要执行更新命令就可以了


php composer.phar update


5、小提示,在执行 php composer.phar install 命令的时候,有时候会提示版本问题,不能执行,可以用以下命令,忽略版本号


php composer.phar install --ignore-platform-reqs


以上内容按需要操作,重点php7.4和内存大小设置,其他的都so easy~~~


目录
相关文章
|
2月前
|
应用服务中间件 Shell PHP
pbootcms模板报错提示PHP Warning: Unknown: open_basedir restriction
pbootcms模板报错提示PHP Warning: Unknown: open_basedir restriction
|
4月前
|
PHP Windows
【Azure App Service for Windows】 PHP应用出现500 : The page cannot be displayed because an internal server error has occurred. 错误
【Azure App Service for Windows】 PHP应用出现500 : The page cannot be displayed because an internal server error has occurred. 错误
|
4月前
|
JSON PHP 数据格式
PHP Allowed memory size of 134217728 bytes exhausted (tried to allocate 10489856 bytes)
PHP Allowed memory size of 134217728 bytes exhausted (tried to allocate 10489856 bytes)
87 2
|
4月前
|
PHP
PHP——oneinstack重新安装PHP的时候报错
PHP——oneinstack重新安装PHP的时候报错
76 4
|
4月前
|
PHP
PHP——安装ThinkPHP框架报错
PHP——安装ThinkPHP框架报错
57 0
|
6月前
|
PHP
php 使用phpize报错Cannot find config.m4. Make sure that you run ‘/usr/bin/phpize‘ in the top l
php 使用phpize报错Cannot find config.m4. Make sure that you run ‘/usr/bin/phpize‘ in the top l
264 1
|
6月前
|
Ubuntu PHP
ubuntu php libzip安装 ./configure报错 checking for libzip... not found configure
ubuntu php libzip安装 ./configure报错 checking for libzip... not found configure
114 1
|
6月前
|
PHP 数据库
phpMyAdmin报错 in ./libraries/config/FormDisplay.php#661 continue targeting switch is equivalent to
phpMyAdmin报错 in ./libraries/config/FormDisplay.php#661 continue targeting switch is equivalent to
51 0
|
7月前
|
Java 中间件 Serverless
Serverless 应用引擎操作报错合集之在阿里函数计算中,云函数怎么一直报错Function instance exited unexpectedly(code 1, message:operation not permitted) with start command 'php server.php '.如何解决
Serverless 应用引擎(SAE)是阿里云提供的Serverless PaaS平台,支持Spring Cloud、Dubbo、HSF等主流微服务框架,简化应用的部署、运维和弹性伸缩。在使用SAE过程中,可能会遇到各种操作报错。以下是一些常见的报错情况及其可能的原因和解决方法。
174 2
|
1月前
|
前端开发 关系型数据库 MySQL
PHP与MySQL动态网站开发实战指南####
【10月更文挑战第21天】 本文将深入浅出地探讨如何使用PHP与MySQL构建一个动态网站,从环境搭建到项目部署,全程实战演示。无论你是编程新手还是希望巩固Web开发技能的老手,都能在这篇文章中找到实用的技巧和启发。我们将一起探索如何通过PHP处理用户请求,利用MySQL存储数据,并最终呈现动态内容给用户,打造属于自己的在线平台。 ####
43 0