You are not logged in.
I tried to use the zip & download button and got the following error:
Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 35 bytes) in /core/base/code/core/managers/fileManager.php on line 17
Any ideas how to fix this?
Offline
hello,
this problem might happen when dealing with big files. Please open this file:
core/base/_init.php
and edit the first line, that now reads as:
ini_set( 'memory_limit', '32M' );
and set some bigger value there, for example 128M:
ini_set( 'memory_limit', '128M' );
Offline