Jump to content

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';
This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.