fazlija
fazlija

Reputation: 13

realpath($_SERVER["DOCUMENT_ROOT"]) not working on Windows

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");

Upvotes: 0

Views: 1261

Answers (1)

volkinc
volkinc

Reputation: 2128

you need change slash

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

Upvotes: 1

Related Questions