Could you tell what it mean?
I got this from my server.
PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 8208 bytes) in
/var/www/vhosts/website.com/httpdocs/modules/boonex/pageac/classes/BxPageACDb.php on line 37
Could you tell what it mean? I got this from my server. PHP Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 8208 bytes) in /var/www/vhosts/website.com/httpdocs/modules/boonex/pageac/classes/BxPageACDb.php on line 37 |
Hello sureandhraindia! Try to check it firstly with the increasing of the memory_limit parameter. Add the following line to the file modules/boonex/pageac/classes/BxPageACModule.php:
ini_set('memory_limit','256M');
right after this line:
require_once( BX_DIRECTORY_PATH_PLUGINS . 'Services_JSON.php' ); and check if the new messages about it will appear again. |
Similar error turned up. PHP Fatal error: Allowed memory size of 268435456 bytes exhausted (tried to allocate 75 bytes) in /var/www/vhosts/website.com/httpdocs/inc/classes/BxDolDb.php on line 264 |
Hello sureandhraindia! Please specify the latest changes which you made in your Dolphin site. Also, what is the actual memory_limit in your server? |
Hello sureandhraindia! Please specify the latest changes which you made in your Dolphin site. Also, what is the actual memory_limit in your server? memory_limit 256mb Changes made were: bringing custom search for products to gome page available for all visitors. Added many products in store. |
Hello sureandhraindia! Then for the quick solution try to increase memory limit till 512M or 1024M and check result. |
Hello sureandhraindia! Then for the quick solution try to increase memory limit till 512M or 1024M and check result. Thank you |