up vote 0 down vote favorite

Hy everyone

i have a problem with my path

say i have a PHPfile in /home/bla/www/dev/source/test.php

in this test.php i want to include a file in

/home/bla/www/config/conf.php

<?php

include_once("");

?>

i dont want to include it like include /home/bla/www/config/conf.php

How can i do it? PS. this fails

include_once("../../config/conf.php");
link|flag

Which error message do you get when the include fails? A permission error? – DaDaDom Mar 9 at 12:59
Not persmission but a include errs like "no such file found on bla bla" – streetparade Mar 9 at 13:14

3 Answers

up vote 2 down vote accepted

I'd suggest to use absolute path instead of relative

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

whould work from any folder

link|flag
Note that this won't work if the script is run on the command line. – Sjoerd Mar 9 at 13:22
Thanks this worked for me – streetparade Mar 9 at 13:29
up vote 1 down vote
$current_dir = dirname(__FILE__);
require_once($current_dir.'/../foo/bar.php');

Note that require_once('foo.php') looks for foo.php in the same directory as the script, but require_once('../foo.php') is not relative to the path of the script, but relative to the current working directory.

link|flag
up vote 0 down vote

as DaDaDom suggests, permissions may well be the problem here. Have you tried addressing the file using an absolute path ( /home/bla/www/config/conf.php ), and if it fails, what'S the error?

link|flag
2  
This is a comment, not an answer – Phill Pafford Mar 9 at 13:02

Your Answer

get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.