Can php.ini settings be overridden in by a website using PHP + IIS6? - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T15:18:40Zhttp://stackoverflow.com/feeds/question/192083http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/192083/can-php-ini-settings-be-overridden-in-by-a-website-using-php-iis61Can php.ini settings be overridden in by a website using PHP + IIS6?Kev2008-10-10T16:13:39Z2009-06-24T10:46:36Z
<p>We have PHP 5.2.6 deployed to c:\php and in that folder there is the php.ini file. On Windows, can a website override these settings similar to the way that apache has .htaccess? e.g.</p>
<pre><code>DirectoryIndex index.php index.html
<IfModule mod_php5.c>
php_flag magic_quotes_gpc off
php_flag register_globals off
</IfModule>
<IfModule mod_php4.c>
php_flag magic_quotes_gpc off
php_flag register_globals off
</IfModule>
</code></pre>
<p><strong><em>Update:</em></strong> Hi folks, thanks for the answers. I was aware of ini_set() but wondered if there was a declarative way to do this in a configuration file in the website rather than in script.</p>
<p>Thanks in advance<br />
Kev</p>
http://stackoverflow.com/questions/192083/can-php-ini-settings-be-overridden-in-by-a-website-using-php-iis6/192093#1920933Answer by Darryl Hein for Can php.ini settings be overridden in by a website using PHP + IIS6?Darryl Hein2008-10-10T16:16:17Z2008-10-10T17:22:42Z<p>I would recommend doing all you can to avoid changing r<code>egister_globals</code> to on as it's a major security hole.</p>
<p>But you can try using <code>init_set()</code> to change the settings within your PHP code, although some settings cannot be changed once PHP has started running. (These are somewhat server dependent I believe.)</p>
http://stackoverflow.com/questions/192083/can-php-ini-settings-be-overridden-in-by-a-website-using-php-iis6/192361#1923611Answer by ConroyP for Can php.ini settings be overridden in by a website using PHP + IIS6?ConroyP2008-10-10T17:26:20Z2008-10-10T17:26:20Z<p><a href="http://ie.php.net/ini_set" rel="nofollow">ini_set</a> should do what you're after - </p>
<pre><code>$option = 'magic_quotes_gpc';
echo "Value of $option => ", ini_get($option);
ini_set($option,0);
echo "New value of $option => ", ini_get($option);
</code></pre>
<p>A caveat here is that just because you can set the value at run-time doesn't mean it will work as expected, e.g. setting <code>register_globals</code> at runtime will be of little use as that setting has already done it's job by the time your script starts.</p>
http://stackoverflow.com/questions/192083/can-php-ini-settings-be-overridden-in-by-a-website-using-php-iis6/192425#1924251Answer by flamingLogos for Can php.ini settings be overridden in by a website using PHP + IIS6?flamingLogos2008-10-10T17:48:09Z2008-10-10T18:17:00Z<p>You can override the directives in the php.ini file several ways, but not all directives can be changed by each method. See the <a href="http://www.php.net/manual/en/ini.php" rel="nofollow">php.ini directives</a> page in the manual for a list of the directives and the methods that will work on each one.</p>
<p>The last column in the table lists the methods that will work on that particular method. In increasing level of access:</p>
<ul>
<li><code>PHP_INI_USER</code> - Can be set in user
scripts with <code>ini_set()</code> (or any higher method)</li>
<li><code>PHP_INI_PERDIR</code> - Can be set using
the .htacess file with <code>php_value</code>
for string values or <code>php_flag</code> for
binary values (or any higher method)</li>
<li><code>PHP_INI_SYSTEM</code> - Can
be set using php.ini or httpd.conf
only (both require access to the server's configuration files)</li>
<li><code>PHP_INI_ALL</code> - Can be set using
any of the above methods</li>
</ul>
http://stackoverflow.com/questions/192083/can-php-ini-settings-be-overridden-in-by-a-website-using-php-iis6/197129#1971290Answer by Till for Can php.ini settings be overridden in by a website using PHP + IIS6?Till2008-10-13T09:44:53Z2008-10-13T09:44:53Z<p>For cgi environments, there is a module called <a href="http://pecl.php.net/package/htscanner" rel="nofollow">htscanner</a>. It basically fakes .htaccess behavior and allows per directory configurations. Unfortunately I have no experience with this on Windows, let alone with IIS6.</p>
http://stackoverflow.com/questions/192083/can-php-ini-settings-be-overridden-in-by-a-website-using-php-iis6/259996#2599960Answer by Gary for Can php.ini settings be overridden in by a website using PHP + IIS6?Gary2008-11-03T21:18:18Z2008-11-03T21:18:18Z<p>From <a href="http://us.php.net/configuration.changes" rel="nofollow">http://us.php.net/configuration.changes</a>:</p>
<p><strong>Changing PHP configuration via the Windows registry</strong></p>
<p>When running PHP on Windows, the configuration values can be modified on a per-directory basis using the Windows registry. The configuration values are stored in the registry key HKLM\SOFTWARE\PHP\Per Directory Values, in the sub-keys corresponding to the path names. For example, configuration values for the directory c:\inetpub\wwwroot would be stored in the key HKLM\SOFTWARE\PHP\Per Directory Values\c\inetpub\wwwroot. The settings for the directory would be active for any script running from this directory or any subdirectory of it. The values under the key should have the name of the PHP configuration directive and the string value. PHP constants in the values are not parsed. However, only configuration values changeable in PHP_INI_USER can be set this way, PHP_INI_PERDIR values can not.</p>
<p>...Haven't actually tried this yet, so your mileage may vary.</p>
http://stackoverflow.com/questions/192083/can-php-ini-settings-be-overridden-in-by-a-website-using-php-iis6/1037622#10376221Answer by r_honey for Can php.ini settings be overridden in by a website using PHP + IIS6?r_honey2009-06-24T10:46:36Z2009-06-24T10:46:36Z<p>I just found a new way of doing this.
First of all, I used phpinfo() to find the PHP.ini being used by my Hosting provider.</p>
<p>Thereafter, I uploaded a file containing the following code to my Hosting space:</p>
<pre><code> $fsrc = fopen($pathToIni,'r');
$fdest = fopen($myHostingDir,'w+');
$len = stream_copy_to_stream($fsrc,$fdest);
fclose($fsrc);
fclose($fdest);
echo $len;
</code></pre>
<p>This effectively copied the php.ini to my Hosting space. Thereafter, I downloaded that php.ini, changed the register_globals to off (for which I did all this), and uploaded it to the root of my Hosting space. Bingo, there you go.</p>
<p>I have relied on the fact that IIS uses the complete php.ini if available in a directory. You cannot override only specific settings like that using .htaccess on Apache.</p>