[phpBB Debug] PHP Warning: in file [ROOT]/feed.php on line 173: Cannot modify header information - headers already sent by (output started at [ROOT]/feed.php:1)
[phpBB Debug] PHP Warning: in file [ROOT]/feed.php on line 174: Cannot modify header information - headers already sent by (output started at [ROOT]/feed.php:1)
[phpBB Debug] PHP Warning: in file [ROOT]/feed.php on line 180: Cannot modify header information - headers already sent by (output started at [ROOT]/feed.php:1)
IntegraMOD Home of phpBB Integrated Modifications 2006-12-31T11:56:56-07:00 https://www.integramod.com/forum/feed.php?f=17&t=2563 2006-12-31T11:56:56-07:00 2006-12-31T11:56:56-07:00 https://www.integramod.com/forum/viewtopic.php?t=2563&p=18850#p18850 <![CDATA[Re: Opera 9 Fix]]>
The fix becomes clearer when you compare the original phpBB gzip code from page_tail.php to the IM version. It's difficult to explain otherwise...

Statistics: Posted Author: Teelk — Sun Dec 31, 2006 11:56 am


]]>
2006-12-31T06:17:28-07:00 2006-12-31T06:17:28-07:00 https://www.integramod.com/forum/viewtopic.php?t=2563&p=18844#p18844 <![CDATA[Re: Opera 9 Fix]]> Statistics: Posted Author: Dr. Bantham — Sun Dec 31, 2006 6:17 am


]]>
2006-12-31T01:07:12-07:00 2006-12-31T01:07:12-07:00 https://www.integramod.com/forum/viewtopic.php?t=2563&p=18840#p18840 <![CDATA[Opera 9 Fix]]> 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
    $gzip_contents = "x1fx8bx08x00x00x00x00x00";

FIND
    $gzip_contents .= gzcompress($gzip_contents, 9);  
REPLACE WITH
    $gzip_contents = gzcompress($gzip_contents, 9);

FIND
    echo $gzip_contents;

BEFORE ADD
    echo "x1fx8bx08x00x00x00x00x00";


Open admin/page_footer_admin.php
DO SAME EDITS ABOVE

Remember to do these edits to both of these files.

Statistics: Posted Author: Teelk — Sun Dec 31, 2006 1:07 am


]]>