|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2003-05-02 17:24 UTC] helly@php.net
[2003-05-02 18:08 UTC] don at lekei dot ca
[2003-05-02 19:30 UTC] derick@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2026 The PHP GroupAll rights reserved. |
Last updated: Thu Jun 18 12:00:01 2026 UTC |
When a script has an include statement such as: include_once("../includes/session.php"); (This file works with 4.2.3) It fails to find the include file because it is not searching relative to the script directory. This seems similar to other reported bugs but the file in question works fine when executed with the CGI or SAPI versions of PHP and worked fine with 4.2.3 cli but not with 4.3.1 The temporary work-around is to specify the absolute path to the include file (ewww!) or calculate the path (messy but portable).