|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2007-06-25 18:53 UTC] tony2001@php.net
[2007-07-03 01:00 UTC] php-bugs at lists dot php dot net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 29 15:00:01 2025 UTC |
Description: ------------ For example in apache configuration you have a restriction like and you are in safe mode : php_admin_value open_basedir /home/httpd/html/:/tmp/ Reproduce code: --------------- if you want to check if a file is present or not file_exists("test.txt") and this file is not present in the directory /home/httpd/html/, you have the open basedir restriction warning. But if I do the same thing in a subdirectory inside the restriction it is OK. It is not OK only in the directory /home/httpd/html/. Expected result: ---------------- no warning Actual result: -------------- you have the open basedir restriction warning