• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!
  • 2026 staff recruitment is open! Check it out and consider applying!

Windows Help website

Rossii

Member
Joined
Mar 27, 2012
Messages
366
Reaction score
6
Location
England
dose anybody know what this means?



PHP:
Warning: ob_start(): output handler 'ob_gzhandler' conflicts with 'zlib output compression' in C:\xampp\htdocs\index.php on line 3

THREAD SOLVED!
 
Last edited:
how do i get a new version of php?


because this is the first 4 lines

PHP:
<?PHP
session_start();
ob_start("ob_gzhandler");
//require('./exaBD.php');


is thi correct or what?
 
PHP:
<?PHP
session_start();
@ob_start("ob_gzhandler");
//require('./exaBD.php');

try that, php.net you can download, but adding it to xampp its not so easy
 
then if your website its fucked up you dont even know =D
Dont say things that you dont know, in almost of cases, display_errors is set to Off.

Im sure that Rossii is using Xampp latest version, on it, display_errors default is set to true!

I will not discuss saying why display_errors need to set Off, but a good web developer - averatec and Chris - may talk about.
 
Last edited:
Back
Top