I have a problem with require_once. Code:
require_once(__ROOT__.'/_3parties/adodb/adodb-lib.inc.php');
When i write the string in url it download me the file, but php doesn't include it
The full code:
ini_set('display_errors',1); error_reporting(E_ALL);
require_once 'autoloader.php';
echo "2";
define('__ROOT__', dirname(dirname(__FILE__)));
require_once(__ROOT__.'/_3parties/adodb/adodb-lib.inc.php');
echo "3";
Display only 2, not 3 but any error is displayed. Please help me!