0
votes

I get this error: Warning: require_once(C:\xampp\htdocs/models/config.php): failed to open stream: No such file or directory in C:\xampp\htdocs\venture\html\admin\index.php on line 3

Here is the code where the error appears:

$root = realpath($_SERVER["DOCUMENT_ROOT"]);
require_once($root . "/models/config.php");
1
Double check your paths. "DOCUMENT_ROOT" is not the same directory you are in. XAMPP messes with directories. - jnovack

1 Answers

1
votes

you need change slash

$root = realpath(str_replace('\\', '/', $_SERVER['DOCUMENT_ROOT']) );
require_once($root . "/models/config.php");