|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2002-12-09 09:14 UTC] chregu@php.net
[2002-12-09 09:36 UTC] WPinegar at healthtech dot net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Dec 06 10:00:01 2025 UTC |
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?