Replies: 2 comments
-
okay i update the max size inside the settings.php file of drupal on the "sites" directory |
Beta Was this translation helpful? Give feedback.
0 replies
-
https://acquia.my.site.com/s/article/360005311613-Increasing-the-memory-limit-for-Drush |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am getting this error when I drush harvesting.
Fatal error: Allowed memory size of 536870912 bytes exhausted (tried to allocate 943456088 bytes) in /app/data/vendor/guzzlehttp/psr7/src/Stream.php on line 95
[warning] Drush command terminated abnormally
the way to solve it is to add more memory what they should do is write ini_set('memory_limit', ' '); and put the quantity of memory of you requiere. for example i requiere a 1gb
ini_set('memory_limit', '1000M');
src/site/settings.php in the final of file.
and after check memory on drupal portal "admin/reports/status"
and it fixed the problem
Beta Was this translation helpful? Give feedback.
All reactions