Reputation: 3495
It might seem a stupid question, but I'm already trying since one hour to figure it out without success.
As stated in title, I'm actually unable to change memory_limit
directive in PHP 7.1.15 but only for php-fpm. In fact if I execute php -i | grep memory_limit
in terminal I can see the correct value memory_limit => -1 => -1
.
What I tried so far:
memory_limit
in php.iniini_set('memory_limit', -1);
directly in PHP scriptI also tried to disable all loaded extensions cause I thought maybe one of them is overwriting that setting, but didn't work.
Also consider that edited php.ini file is the correct one since I was able to change max_execution_time
without any problem.
So how this code
ini_set('memory_limit', -1);
echo ini_get('memory_limit');
exit;
can return 128M
as output?
Upvotes: 0
Views: 7297
Reputation: 2815
from fpm-config
; php_value/php_flag - you can set classic ini defines which can
; be overwritten from PHP call 'ini_set'.
; php_admin_value/php_admin_flag - these directives won't be overwritten by
; PHP call 'ini_set'
You must chose better solution for you. I'm prefer set lower memory limit in global config, and in places (wo I can't rewrite better) I'm add ini_set('memory_limit', xxx);
Upvotes: 1
Reputation:
To change the memory limit for PHP-FPM, add the following line to your php-fpm.conf
file:
php_admin_value[memory_limit] = -1
Upvotes: 4