|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2002-05-06 12:50 UTC] alparslan at karfen dot com
i have this error now my web site. Warning: Failed opening 'includes/languages/english/' for inclusion (include_path='.;c:\php4\pear') in C:\Inetpub\gayem\admin\includes\application_top.php on line 194 my script search path this --> Directive Local Value Master Value include_path .;c:\php4\pear .;c:\php4\pear but first php 4.1.2 not search this path ... thanks Alparslan PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Dec 07 05:00:01 2025 UTC |
Some comments for this issues: 1) (alparslan@karfen.com) If the file you are trying to view with your browser hasn't the properly read perms PHP will show up a (I completely agree: nothing clear) message like: Warning: Failed opening '/home/httpd/html/test.php' for inclusion (include_path='.:/usr/lib/php') in Unknown on line 0 2) (flozada@interalia.net) The PEAR base dir (by default /usr/local/lib) **needs** to be in the include path in your php.ini. Alternatively you can set that path in the code with ini_set('include_path', <dir>); Tomas V.V.Cox