• 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!

Deleting PHP Error Encountered Messages. solved

Fyruz

★★★★★
Joined
Feb 7, 2009
Messages
556
Reaction score
19
Location
127.0.0.1
Hello guys, well I want to remove all the messages "PHP Error Encountered"
Pic:


Uploaded with ImageShack.us
I use Lighttpd not apache.
 
Last edited:
At the top of your index.php (just below the PHP starting tag).
PHP:
error_reporting( 0 );
ini_set( 'display_errors', 0 );
 
Back
Top