If you are using composer in your php project, you might encounter the the same error as mine.
PHP Fatal error: Allowed memory size of 536870912 bytes exhausted (tried to allocate 71 bytes) in phar:///sf2projects/myproject/composer.phar/src/Composer/DependencyResolver/RuleWatchGraph.php on line 47
To solve this PHP fatal error allowed memory size exhausted problem, refer to the solution below:-
Advertisements
- You can use a php parameter to specify the allowed memory like below:-
php -d memory-limit=1G composer require vendorname/bundlename
*You can adjust the memory limit value to 768M, 1024M, 1G, 2G to suite your need
Related posts:
How to insert new line (line break) in a cell - OpenOffice Calc
How to set out of office auto responder in Zimbra
How to import mysql innodb with foreign key constraint error?
WordPress: How to open rss links in new window?
How to split compressed file into smaller files in Linux / Mac
How to install apache, php, mysql with macport in Mac OS X
Cynogenmod: No Vibration when Receiving SMS
WordPress: How to upload image using script?
Share this with your friends:-