Jump to content

Directory Practices....


drbigfresh

Recommended Posts

I am trying to design my application so that it can more or less figure out where it is installed, but I keep running into issues with all my include files.

 

For the most part I've been using something like

include_once($_SERVER['DOCUMENT_ROOT'] . '/config/MainVars.php');

 

which works fine, unless I install my whole application into a folder, at which point it would be something like this:

include_once($_SERVER['DOCUMENT_ROOT'] . [some install folder]. '/config/MainVars.php');

 

What methods are people using to make their applications more portable?

 

I would love to just be able to set an install folder variable somewhere, and have it accessibly everywhere....

 

Thanks!

 

 

Link to comment
https://forums.phpfreaks.com/topic/85843-directory-practices/
Share on other sites

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.