Hi

>The include_path setting is: 
>".;C:/xxx/yyy/includes/others;C:/xxx/yyy/includes/myfiles"
>I get authentication.php in my include path and, unfortunatly, an other 
>authentication.php does exist in the 2° path and is processed before my 
>authentication.php file, and maybe gets a function name
>like one of mine.
>When, in a file I write: include("authentication.php"), my file is never included; 
>php includes the first
>one that finds.
>What can I do to resolve this problem?

Rename your file 

--or--

put it one directory below and then include
("newdir/authentication.php") so it won't be found in the first .

--or--

ini_set("include_path","onlymyincludepath") before you start your
includes.


Christoph

-- 
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to