How To Find Application Root?

PHP how to find application root?

  • I'm having problems with my include files. I don't seem to be able to figure out how to construct my URLs when I use require_once('somefile.php'). If I try to use an include file in more than one place where the directory structures are different, I get an error that the include file cannot be found. In asp.net, to get my application root path, I can use ~/directory/file.aspx. The tild forward slash always knows that I am referencing from my website root and find the file no matter where the request comes from within my website. It always refers back to the root and looks for the file from there. QUESTION: How can I get the root path of my site? How can I do this so I can reuse my include files from anywhere within my site? Do I have to use absolute paths in my URLs? Thank you!

  • Answer:

    there is $_SERVER['DOCUMENT_ROOT'] that should have the root path to your webserver. Edit: If you look at most major php programs. When using the installer, you usually enter in the full path to the the application folder. The installer will just put that in a config file that is included in the entire application. One option is to use an http://php.net/manual/en/ini.core.php to set the variable. another option is to just http://www.php.net/include_once the config file on every page you need it. Last option I would suggest is to write you application using http://devzone.zend.com/article/70 which is where you funnel all requests through one file (usually with url_rewrite). This allows you to easily set/include config variables in one spot and have them be available throughout all the scripts.

anon445699 at Stack Overflow Visit the source

Was this solution helpful to you?

Other answers

$_SERVER['DOCUMENT_ROOT']

sushil bharwani

You should use the built in magic constants to find files. __FILE__ and __DIR__. If you are on PHP < 5.3 you should use dirname(__FILE__) E.g. require_once __DIR__.'/../../include_me.php'; $_SERVER['DOCUMENT_ROOT'] is not always guaranteed to return what you would expect.

Petah

I usually store config.php file in ROOT directory, and in config.php I write: define('ROOT_DIR', dirname(__FILE__)); And then just use ROOT_DIR constant in all other scripts. Using $_SERVER['DOCUMENT_ROOT'] is not very good because: 1) it can be changed 2) this variable is not available in CGI mode (e.x. if you run your scripts by CRON)

SeniorDev

Define it in a config file somewhere. Assuming you're using an MVC style where everything gets routed through a single index.php then realpath('.'); Will show you the path to the current working directory (i.e where index.php is) So then you can define this as define('PROJECT_ROOT', realpath('.')); If it's not MVC and you need it to work for files in subfolders then you can just hard code it in a config file define('PROJECT_ROOT', 'C:/wamp/www/mysite'); Then when including something you can do; include PROJECT_ROOT . '/path/to/include.php';

Simon

You could alternativly set the base directory in your .htaccess file SetEnv BASE_PATH C:/wamp/www/mysite/ Then in PHP you can reference it with $_SERVER['BASE_PATH']

Petah

Related Q & A:

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.