Can you temporary turn off the debug mode?
Open index.php and modify it like this:
<?php
ini_set("display_errors", "off");
date_default_timezone_set('Europe/London');
error_reporting(0);
define('IN_CODOF', true);
require 'sys/load.php';
require 'routes.php';
Can you temporary turn off the debug mode?
Open index.php and modify it like this:
```
&lt;?php
/*
* @CODOLICENSE
*/
//phpinfo();
// ini_set('xdebug.var_display_max_depth', '100');
ini_set("display_errors", "off");
//echo phpversion();
date_default_timezone_set('Europe/London');
error_reporting(0);
define('IN_CODOF', true);
//contains config.php and path definitions
require 'sys/load.php';
//everything related to routing
require 'routes.php';
```
NguoiAnPhu.com
Powered by Codoforum 4.3
(https://github.com/nguoianphu/codoforums-vietnam).