i have some troubles with include_path directive....
i'm on windows machine iwth php 4.3.5 and apache 1.3.
i have common.inc file that is used by many other files...
i tried to use custom php.ini file under script's home directory.
The file has only these lines:
Code: Select all
їPHP]
include_path="e;home;home/admin;"e;then i get this error:
common.inc is included inside admin_common.inc.Warning: main(common.inc): failed to open stream: No such file or directory in c:\apache\apache\users\home\admin\admin_common.inc on line 2 Fatal error: main(): Failed opening required 'common.inc' (include_path='.;c:\php4\pear') in c:\apache\apache\users\home\admin\admin_common.inc on line 2
include_path='.;c:\php4\pear' <- this seems very odd... i tried to search files for this string, to find out where it comes from, but i couldn't find where it is being set...
it seems like my php.ini is totaly ignored.
Does anyone know what could be the problem?