php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #55706 php.ini directives will lock once they are used in a host specific section
Submitted: 2011-09-16 08:39 UTC Modified: 2021-08-15 04:22 UTC
From: mehran20 at hotmail dot com Assigned: cmb (profile)
Status: No Feedback Package: *Configuration Issues
PHP Version: 5.3.8 OS: Windows XP SP3
Private report: No CVE-ID: None
View Add Comment Developer Edit
Anyone can comment on a bug. Have a simpler test case? Does it work for you on a different platform? Let us know!
Just going to say 'Me too!'? Don't clutter the database with that please — but make sure to vote on the bug!
Your email address:
MUST BE VALID
Solve the problem:
16 - 13 = ?
Subscribe to this entry?

 
 [2011-09-16 08:39 UTC] mehran20 at hotmail dot com
Description:
------------
PHP version: 5.3.8-ZS5.5.0

ini_set function returns false if the given directive is named in a host specific 
section. As the result, the directive's value is not changed. This bug is 
reproducible with other similar functions like set_include_path.

Don't forget to restart your webserver before testing since this bug requires 
modifying php.ini file.

Test script:
---------------
Insert the following section into your php.ini file:<br />
<br />
[Zend]<br />
include_path=".;C:\Program Files\Zend\ZendServer\share\ZendFramework\library"<br />
<br />
[HOST=anything.com]<br />
include_path=".;C:\my_library"<br />
<br />
<?php
echo "Executing: ini_set('include_path', 'C:\another_library')<br />\n";
$result = ini_set('include_path', 'C:\another_library');

echo 'ini_set returned: ' . ($result ? 'true' : 'false');
echo "<br />\n";
echo 'And current value for directive is: ' . ini_get('include_path');

Expected result:
----------------
Insert the following section into your php.ini file:<br />
<br />
[Zend]<br />
include_path=".;C:\Program Files\Zend\ZendServer\share\ZendFramework\library"<br 
/>
<br />
[HOST=anything.com]<br />
include_path=".;C:\my_library"<br />
<br />
Executing: ini_set('include_path', 'C:\another_library')<br />
ini_set returned: true<br />
And current value for directive is: .;C:\another_library

Actual result:
--------------
Insert the following section into your php.ini file:<br />
<br />
[Zend]<br />
include_path=".;C:\Program Files\Zend\ZendServer\share\ZendFramework\library"<br 
/>
<br />
[HOST=anything.com]<br />
include_path=".;C:\my_library"<br />
<br />
Executing: ini_set('include_path', 'C:\another_library')<br />
ini_set returned: false<br />
And current value for directive is: .;C:\my_library

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2021-08-03 11:30 UTC] cmb@php.net
-Status: Open +Status: Feedback -Package: Dynamic loading +Package: *Configuration Issues -Assigned To: +Assigned To: cmb
 [2021-08-03 11:30 UTC] cmb@php.net
I cannot reproduce the reported behavior with PHP-7.4.  Can
anybody reproduce with any of the actively supported PHP
versions[1]?

[1] <https://www.php.net/supported-versions.php>
 [2021-08-15 04:22 UTC] php-bugs at lists dot php dot net
No feedback was provided. The bug is being suspended because
we assume that you are no longer experiencing the problem.
If this is not the case and you are able to provide the
information that was requested earlier, please do so and
change the status of the bug back to "Re-Opened". Thank you.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Wed Apr 24 21:01:29 2024 UTC