From fe0c600d0f15aa88e5b7b173aab3d500fc4b0fdf Mon Sep 17 00:00:00 2001 From: Christian Raue Date: Thu, 11 Jun 2015 15:14:45 +0200 Subject: [PATCH] [docs] mention the `memory_limit` actually being set --- doc/articles/troubleshooting.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/articles/troubleshooting.md b/doc/articles/troubleshooting.md index f347e0c27..d369917b8 100644 --- a/doc/articles/troubleshooting.md +++ b/doc/articles/troubleshooting.md @@ -91,7 +91,7 @@ If composer shows memory errors on some commands: The PHP `memory_limit` should be increased. -> **Note:** Composer internally increases the `memory_limit` to `512M`. +> **Note:** Composer internally increases the `memory_limit` to `1G`. > If you have memory issues when using composer, please consider [creating > an issue ticket](https://github.com/composer/composer/issues) so we can look into it. @@ -105,7 +105,7 @@ Try increasing the limit in your `php.ini` file (ex. `/etc/php5/cli/php.ini` for Debian-like systems): ```ini -; Use -1 for unlimited or define an explicit value like 512M +; Use -1 for unlimited or define an explicit value like 2G memory_limit = -1 ```