Opera 9 Fix

This fix should eliminate the problem of viewing IM websites using Opera 9+.
This was a gzip issue and prevented Opera 9 users from getting access to IM sites. The user would browse to the IM site and receive either a "corrupt data" error message or there would be strange characters in the upper left corner of the page while the rest of the page was white.
The fix is as follows.
Open includes/page_tail.php
FIND AND DELETE
FIND
FIND
BEFORE ADD
Open admin/page_footer_admin.php
DO SAME EDITS ABOVE
Remember to do these edits to both of these files.
This was a gzip issue and prevented Opera 9 users from getting access to IM sites. The user would browse to the IM site and receive either a "corrupt data" error message or there would be strange characters in the upper left corner of the page while the rest of the page was white.
The fix is as follows.
Open includes/page_tail.php
FIND AND DELETE
- Code: Select all
$gzip_contents = "x1fx8bx08x00x00x00x00x00";
FIND
- Code: Select all
$gzip_contents .= gzcompress($gzip_contents, 9);
- Code: Select all
$gzip_contents = gzcompress($gzip_contents, 9);
FIND
- Code: Select all
echo $gzip_contents;
BEFORE ADD
- Code: Select all
echo "x1fx8bx08x00x00x00x00x00";
Open admin/page_footer_admin.php
DO SAME EDITS ABOVE
Remember to do these edits to both of these files.