I have a problem with memory in PHPExcel
This is the error message:
Fatal error: Allowed memory size of 67108864 bytes exhausted (tried to allocate 78 bytes) in /home/***/public_html/system/PHPExcel/Classes/PHPExcel/CachedObjectStorage/Memory.php on line 55
This is my php.ini
:
magic_quotes_gpc = Off;
register_globals = Off;
default_charset = UTF-8;
memory_limit = 4096M;
max_execution_time = 36000;
upload_max_filesize = 4096M;
post_max_size = 4096M;
safe_mode = Off;
mysql.connect_timeout = 20;
session.use_only_cookies = On;
session.use_trans_sid = Off;
session.cookie_httponly = On;
session.gc_maxlifetime = 172800;
allow_url_fopen = on;
;display_errors = 1;
;error_reporting = E_ALL;
I am a newbie in PHP. Please help me, thanks very much.