Open ModuleManager.module.php and change at line 1025 this:
Code: Select all
#$data = base64_decode( $data );
$nbytes = @fwrite($fh,base64_decode( $data ));
unset($data);
With originalversion $data = base64_decode( $data ) php makes a copy of $data (this need memory), in my version it writes directly to the file.