Thanks Steve, thats a great idea, i've especially liked that part :)
Quote:
Quote:
>$relativePath = strlen($parsedUri) - strlen($relativeUri) - 1;
Unfortunately this approach works great only if you can modify PHP.ini
but when you are on virtual hosting, the only way you can modify
settings in PHP.ini is by calling ini_set() function which has to be
invoced from somewhere. And in my case this "somewhere" is global.inc
This file is meant to keep all global stuff so it has to be included
into each and every file in my project, but this is the original
problem -- i can't include it. Seems to be a vicious circle.
The only solution i can think of right now is to use the absolute path
for "global.inc" in each call to require_once. Thus i can put your
code that calculates relative path in "global.inc" and use it across
all other files.
2BKDotCom
Quote:
Quote:
>>logger.inc doesn't need to include global.inc as long as global.inc
>>has been included before logger.inc is included..
It appears I've made a mistake in my original post. In fact you don't
have to include "global.inc" into foo.php, the error would persist. If
you wish I can send you test files that replicate the problem
On Dec 17, 2:30 am, "Steve" <no....@example.comwrote:
Quote:
"Royan" <romayan...@gmail.comwrote in message
>
news:8769e733-17fe-4083-865c-ccd496707023@e25g2000prg.googlegroups.com...
>
>
>
Quote:
Ok the problem is quite hard to explain, but i'll try to keep it as
simple as i can. Imagine I have the following structure of my files
and folders:
>
Quote:
/root/global.inc
|__/files/foo.php
|__/utils
|__/logs/logger.inc
>
Quote:
When I run foo.php I get the following error:
==========
Fatal error: require_once() [function.require]: Failed opening
required '../../global.inc' (include_path='.;E:\www\root\') in E:\www
\root\utils\logs\logger.inc on line 3
==========
That error occurs because
1) "global.inc" is included ("required") into "logger.inc" and
"foo.php"
2) "logger.inc" is included into "foo.php"
>
Quote:
See, foo.php includes its file as "../global.inc" and logger.inc
"../../global.inc" (note relative path differs)
>
Quote:
So if you now try to run "foo.php" the require_once from "logger.inc"
would start looking for "global.inc" relatively /root/files which is
wrong.
>
Quote:
My question is... how do I make PHP include files relative to their
location not their current "include" directory?
>
i know what you mean. there are other solutions but this one was a quick fix
for me and avoids some other setup/config difference on various systems.
anyway, i use the following code. if you put it into a file called
relative.path.php, save the file in your php.ini include_path. from then on
in all of your scripts, all you have to do is this:
>
<?
require_once 'relative.path.php';
require_once $relativePath . 'global.inc';
?>
>
put that in logger.inc and foo.php and nothing blows up. here's the code for
relative.path.php:
>
<?
$parsedUri = dirname($_SERVER['PHP_SELF']);
$parsedUri .= substr($parsedUri, -1) != '/' ? '/' : '';
$relativeUri = str_replace('/', '', $parsedUri);
$relativePath = strlen($parsedUri) - strlen($relativeUri) - 1;
if ($relativePath < 0){ $relativePath = 0; }
$relativePath = str_repeat('../', $relativePath);
if (!$relativePath){ $relativePath = './'; }
?>
>
hth.