I am getting this error when exporting the file.
Fatal error: Out of memory (allocated 377487360) (tried to allocate 71 bytes) in /home/*/public_html/system/PHPExcel/Classes/PHPExcel/CachedObjectStorage/CacheBase.php on line 173**
And on line 173 the code is
public function getCellList() {
return array_keys($this->_cellCache);
}
Please help, thanks in advance.
This are value is my php.ini
magic_quotes_gpc = Off;
register_globals = Off;
default_charset = UTF-8;
memory_limit = 1024M;
max_execution_time = 36000;
upload_max_filesize = 1999M;
safe_mode = Off;
mysql.connect_timeout = 200;
session.use_cookies = On;
session.use_trans_sid = Off;
session.gc_maxlifetime = 172800;
allow_url_fopen = on;
;display_errors = 1;
;error_reporting = E_ALL;
But still I am getting the error.