nicholas
09-26-2004, 12:13 PM
If after installing one of the scripts from your Cpanel it shows up with an error message similar to this
Warning: ob_start(): output handler 'ob_gzhandler' conflicts with 'zlib
output compression' in /home/username-of-account/public_html/nuke/mainfile.php on line 19
Find the file and edit it to hash out (#) the offending line 19
In this case its line 19 of the file mainfile.php
Open the file in a text editor and look for line 19 and it will look like this
ob_start('ob_gzhandler');
change it to look like this
# ob_start('ob_gzhandler');
save and close the file, refresh your page and the error should be gone.
Warning: ob_start(): output handler 'ob_gzhandler' conflicts with 'zlib
output compression' in /home/username-of-account/public_html/nuke/mainfile.php on line 19
Find the file and edit it to hash out (#) the offending line 19
In this case its line 19 of the file mainfile.php
Open the file in a text editor and look for line 19 and it will look like this
ob_start('ob_gzhandler');
change it to look like this
# ob_start('ob_gzhandler');
save and close the file, refresh your page and the error should be gone.