Re: [PHP-WIN] Absolute and Relative directory

2003-10-13 Thread Michael Kochendoerfer
[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

Re: [PHP-WIN] Absolute and Relative directory

2003-08-14 Thread skate
> > 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

[PHP-WIN] Absolute and Relative directory

2003-08-08 Thread Michael Bao
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