php - PHPExcel Allowed memory size -
how fix error in phpexcel codeigniter?
fatal error:
allowed memory size of 134217728 bytes exhausted (tried allocate 131072 bytes) in /sites/apps/seller/www/application/libraries/excel/phpexcel/cachedobjectstorage/cachebase.php on line 173
there 2 ways solve error.
- put below code function @ beginning of code.
ini_set('memory_limit', '2048m');
- you can find
php.ini
file in system , findmemory_limit
, change value , restart server.
Comments
Post a Comment