Without loaded GZip module I get error:
( ! ) Fatal error: Call to undefined function gzcompress() in /var/www
/localhost/htdocs/epesi/trunk/include/history.php on line 46
Call Stack
# Time Memory Function Location
1 0.0009 78316 {main}( ) ../saja.process.php:0
2 0.3262 4260820 Saja->runFunc( ) ../saja.process.php:80
3 0.3267 4261784 [1]call_user_func_array ( ) ../saja .php:357
4 0.3267 4261864 Base->process( ) ../saja.php:0
5 0.5740 6491200 History::set( ) ../base.php:201
Fix:
In file 'data/config.php' change:
define("GZIP_HISTORY", 1);
to
define("GZIP_HISTORY", function_exists('gzcompress'));