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 downgrade to PHP 5.2 using MacPort
How to sort drop down - Admin Generator - Symfony 1.4
Symfony 1.4 - Customize Admin Generator listing to show data from foreign tables
How to extract .deb file in Linux / Mac
How to setup syslog server in UBuntu 8
PHP Programming: The difference between require() and include()
How to create mailing list in Thunderbird
Virtue Theme: How to enable slider in shop page?
Share this with your friends:-