|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2008-08-13 10:35 UTC] bhuisgen at interact dot lu
[2009-03-03 20:32 UTC] pierre dot php at gmail dot com
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Oct 29 17:00:02 2025 UTC |
Description: ------------ OS : Gentoo 2008.0 / package dev-php5/pecl-htscanner 0.8.1 / PHP 5.2.6 htscanner fails to interpret php_value include_path. The quotes (') or double quotes (") seems to cause a problem, because it add in all case. If quote or double quote are present in the .htaccess file, php fails to open any included files. If I remove the delimiting quotes, all is OK. Reproduce code: --------------- <IfModule mod_php.c> php_value include_path '.:/usr/share/php5:/usr/share/php:/usr/share/php/smarty:/home/www/libs/php/common' #php_value include_path ".:/usr/share/php5:/usr/share/php:/usr/share/php/smarty:/home/www/libs/php/common" </IfModule> Works great with this : <IfModule mod_php.c> php_value include_path .:/usr/share/php5:/usr/share/php:/usr/share/php/smarty:/home/www/libs/php/common </IfModule> Actual result: -------------- php_value include_path '.:/usr/share/php5:/usr/share/php:/usr/share/php/smarty:/home/www/libs/php/common' php output : Warning: include_once(lib/ezutils/classes/ezdebug.php) [function.include-once]: failed to open stream: No such file or directory in /home/www/sites/agora.lu/www/html/lib/ezutils/classes/ezini.php on line 67 Warning: include_once() [function.include]: Failed opening 'lib/ezutils/classes/ezdebug.php' for inclusion (include_path=''.:/usr/share/php5:/usr/share/php:/usr/share/php/smarty:/home/www/libs/php/common'') in /home/www/sites/agora.lu/www/html/lib/ezutils/classes/ezini.php on line 67 Warning: eZINI::include(var/cache/ini/875bf40b060cb1c4eaa46879dd6c9f85.php) [ezini.include]: failed to open stream: No such file or directory in /home/www/sites/agora.lu/www/html/lib/ezutils/classes/ezini.php on line 431 Warning: eZINI::include() [function.include]: Failed opening 'var/cache/ini/875bf40b060cb1c4eaa46879dd6c9f85.php' for inclusion (include_path=''.:/usr/share/php5:/usr/share/php:/usr/share/php/smarty:/home/www/libs/php/common'') in /home/www/sites/agora.lu/www/html/lib/ezutils/classes/ezini.php on line 431 Warning: require_once(lib/ezutils/classes/ezdebug.php) [function.require-once]: failed to open stream: No such file or directory in /home/www/sites/agora.lu/www/html/lib/ezfile/classes/ezfile.php on line 39 Fatal error: require_once() [function.require]: Failed opening required 'lib/ezutils/classes/ezdebug.php' (include_path=''.:/usr/share/php5:/usr/share/php:/usr/share/php/smarty:/home/www/libs/php/common'') in /home/www/sites/agora.lu/www/html/lib/ezfile/classes/ezfile.php on line 39 Note the extra quotes in include_path