Search found 3 matches
- Mon Sep 28, 2015 12:41 pm
- Forum: General Discussion
- Topic: Increase PHP memory limits
- Replies: 16
- Views: 47506
Re: Increase PHP memory limits
You have master value, it means you changed memory_limit in php.ini. But somewhere you have settings with 32mb - may me it's a hidden .htaccess file in the site root and that one was overriding all other values. I found the solution Include /home/$user/conf/web/httpd.conf memory_limit will change i...
- Mon Sep 28, 2015 11:21 am
- Forum: General Discussion
- Topic: Increase PHP memory limits
- Replies: 16
- Views: 47506
Re: Increase PHP memory limits
phpinfo link I sent a private messageskurudo wrote:Show us please full output from phpinfo
Code: Select all
<?php phpinfo(); ?>
- Mon Sep 28, 2015 7:10 am
- Forum: General Discussion
- Topic: Increase PHP memory limits
- Replies: 16
- Views: 47506
Increase PHP memory limits
I use Vestacp, Centos 6 64 bit. I want Memory_limit increase 128M, master value memory_limit128M ok. but local value 32M Changes that I made 1-etc/php.ini changed memory_limit = 128M 2-wp-config.php add this code, define('WP_MEMORY_LIMIT', '128M'); default-constants.php changed if ( !defined('WP_MEM...