Well, i just tested it and it doesn't work for me, i go error message <img>
1. i saved my page_header.php
2. the txt file says:
###################################################################
# Find:
###################################################################
else if ( $phpver > '4.0' )
{
if ( strstr($HTTP_SERVER_VARS['HTTP_ACCEPT_ENCODING'], 'gzip') )
{
if ( extension_loaded('zlib') )
{
$do_gzip_compress = TRUE;
ob_start();
ob_implicit_flush(0);
header('Content-Encoding: gzip');
}
}
}
}
Instead of it,i have this in my page header:
else if ( $phpver > '4.0' ) {
if ( strstr($accept_encoding, 'gzip') ) {
if (extension_loaded('zlib') ) {
$do_gzip_compress = TRUE;
ob_start();
ob_implicit_flush(0);
}
}
}
}
Well, as you see it's not the same but i tried to put this code after those lines:
//
// Username and IP Logging
//
$dt = date("j-F-Y H:i:s");
$fp = fopen("IPlog.txt", "a+");
$ip = $_SERVER['REMOTE_ADDR'];
$un = $userdata['username'];
$mg = "$dt $un From IP address $ipn";
fwrite($fp, "$mgrn");
// change the above line to fwrite($fp, "$mgnn"); for unix
// or leave as-is for Windows
fclose($fp);
//
I upload the edited file and i get this error:
Warning: fopen(IPlog.txt): failed to open stream: Permission denied in /home/********/www/mobil/includes/page_header.php on line 59
Warning: fwrite(): supplied argument is not a valid stream resource in /home/**********/www/mobil/includes/page_header.php on line 63
Warning: fclose(): supplied argument is not a valid stream resource in /home/**********/www/mobil/includes/page_header.php on line 66
Warning: Cannot modify header information - headers already sent by (output started at /home/*********/www/mobil/includes/page_header.php:59) in /home/********/www/mobil/includes/page_header.php on line 961
Warning: Cannot modify header information - headers already sent by (output started at /home/********/www/mobil/includes/page_header.php:59) in /home/*********/www/mobil/includes/page_header.php on line 963
Warning: Cannot modify header information - headers already sent by (output started at /home/**********/www/mobil/includes/page_header.php:59) in /home/************/www/mobil/includes/page_header.php on line 964