Jump to content

Windows and absolute paths?


wh33t

Recommended Posts

Hey there, I'm sure this has been asked a few times but I cant for the life of me figure out what the problem would be called exactly.

I got php running on apache, and I see now that when i do something like

require('/inc/file.php');

my script no longer finds the file. It seems to think that the / means c:\ ... is there a way to tell Apache to work like linux? lol. Any push in the right direction would be great.
Link to comment
https://forums.phpfreaks.com/topic/15319-windows-and-absolute-paths/
Share on other sites

This is where $_SERVER['DOCUMENT_ROOT'] comes in, if you dont want to type out $_SERVER['DOCUMENT_ROOT'] all the time then you can do this: $dr = $_SERVER['DOCUMENT_ROOT'];
then use $dr to referent the document root. like so:
include $dr . '/inc/file.php';

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.