This topic is locked

Fatal error: Allowed memory size

6/29/2015 7:34:57 AM
PHPRunner General questions
T
Tom16 author

Hi,
With PHPRunner 8.0 I get the following error when I want to export records to Excel.
Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 93 bytes) in /home/xxxxxx/public_html/xxxx/plugins/PHPExcel/Worksheet.php on line 961
I have set the php.ini to 256M (as it is in WHM) with: memory_limit = 256M.

Also tried to alter 'htaccess with php_value memory_limit 256M but that gives an error and brfeaks the site.
Anybody any ideas on how to solve this.
Tom

HJB 6/29/2015

... you re-started Apache and MySQL after the php.ini change made, did you?

Admin 6/29/2015

if you adjusted memory size and it is still give you this issue that means either you modifying wrong php.ini file (there might be multiple copies of this file on your server) or Apache wasn't restarted after applying this change.
To find which php.ini file to modify display PHP info. Here is the sample PHP file:

<?php

phpinfo();

?>