[EMAIL PROTECTED] (Skate) wrote in news:068201c35dd0$3fe5a060
[EMAIL PROTECTED]:
>
>>
>> but I need relative directory, like require ("/lib/common/auth.inc");
>>
>
> try loosing the first /
>
> "lib/common/auth.inc";
Interesting thread since I also run into problems with relative vs.
absol
>
> but I need relative directory, like require ("/lib/common/auth.inc");
>
try loosing the first /
"lib/common/auth.inc";
--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Hello everyone,
When I included some file, I must key in the absolute directory, as following:
require ("d:/iis/www3/lib/common/auth.inc");
but I need relative directory, like require ("/lib/common/auth.inc");
So I change include_path line to "include_path = d:/iis/www3/" in "php.ini" file. B