From:             [EMAIL PROTECTED]
Operating system: Windows 2000 Server
PHP version:      4CVS-2002-12-09 (dev)
PHP Bug Type:     *Compile Issues
Bug description:  PHP include/require changed: does not properly search include path

My PHP.INI file contains the following include_path:

include_path =
".;C:\Inetpub\php_include;C:\Inetpub\pear;C:\Inetpub\wwwroot"

In a PHP application I usually included the following directive:

  require ("/admin/class.overlib/class.overlib.php3");

In PHP 4.2.3 it would pickup the file (it's located in
C:\Inetpub\wwwroot\admin\class.overlib).  However the current version of
PHP 4.3.0-dev cannot locate the file unless I change the require directive
to the following:

  require ("admin/class.overlib/class.overlib.php3");

Was this change made on purpose or is this feature now broken?

-- 
Edit bug report at http://bugs.php.net/?id=20908&edit=1
-- 
Try a CVS snapshot:         http://bugs.php.net/fix.php?id=20908&r=trysnapshot
Fixed in CVS:               http://bugs.php.net/fix.php?id=20908&r=fixedcvs
Fixed in release:           http://bugs.php.net/fix.php?id=20908&r=alreadyfixed
Need backtrace:             http://bugs.php.net/fix.php?id=20908&r=needtrace
Try newer version:          http://bugs.php.net/fix.php?id=20908&r=oldversion
Not developer issue:        http://bugs.php.net/fix.php?id=20908&r=support
Expected behavior:          http://bugs.php.net/fix.php?id=20908&r=notwrong
Not enough info:            http://bugs.php.net/fix.php?id=20908&r=notenoughinfo
Submitted twice:            http://bugs.php.net/fix.php?id=20908&r=submittedtwice
register_globals:           http://bugs.php.net/fix.php?id=20908&r=globals
PHP 3 support discontinued: http://bugs.php.net/fix.php?id=20908&r=php3
Daylight Savings:           http://bugs.php.net/fix.php?id=20908&r=dst
IIS Stability:              http://bugs.php.net/fix.php?id=20908&r=isapi

Reply via email to