|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2009-06-16 19:33 UTC] hdev at gmail dot com
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Oct 29 03:00:01 2025 UTC |
Description: ------------ inclued directives (inclued.enabled, inclued.dumpdir) cant be set in user scripts, htaccess or apache conf files Reproduce code: --------------- /etc/php5/apache2/php.ini extension=inclued.so inclued.enabled=1 inclued.dumpdir=/tmp => WORK /etc/apache2/sites-available/incluedtest.dev.ap2 php_flag inclued.enabled on php_value inclued.dumpdir /tmp => DONT WORK .htaccess php_flag inclued.enabled on php_value inclued.dumpdir /tmp => DONT WORK php script ini_set('inclued.enabled', 1); ini_set('inclued.dumpdir', '/tmp'); => DONT WORK Expected result: ---------------- I would have : inclued.dumpdir /tmp no value inclued.enabled On Off Actual result: -------------- My phpinfo return : inclued.dumpdir no value no value inclued.enabled Off Off