mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
add docs about configuring PHP via registry
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@142694 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
c58d5f3596
commit
ef8097018f
1 changed files with 20 additions and 1 deletions
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.111 $ -->
|
||||
<!-- $Revision: 1.112 $ -->
|
||||
<chapter id="configuration">
|
||||
<title>Runtime Configuration</title>
|
||||
|
||||
|
@ -197,6 +197,25 @@ include_path = ".;c:\php\lib"
|
|||
</caution>
|
||||
</sect2>
|
||||
|
||||
<sect2 id="configuration.changes.windows">
|
||||
<title>Changing <literal>PHP</literal> configuration via the Windows registry</title>
|
||||
<simpara>
|
||||
When running PHP on Windows, the configuration values can be
|
||||
modified on per-directory basis using the Windows registry. The
|
||||
configuration values are stored in the registry key
|
||||
<literal>HKLM\SOFTWARE\PHP\Per Directory Values</literal>,
|
||||
in the sub-keys corresponding to the path names. For example, configuration
|
||||
values for the directory <literal>c:\inetpub\wwwroot</literal> would
|
||||
be stored in the key <literal>HKLM\SOFTWARE\PHP\Per Directory
|
||||
Values\c\inetpub\wwwroot</literal>. 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 <link linkend="configuration">PHP
|
||||
configuration directive</link> and the string value. PHP
|
||||
constants in the values would not be parsed.
|
||||
</simpara>
|
||||
</sect2>
|
||||
|
||||
<sect2 id="configuration.changes.other">
|
||||
<title>Other interfaces to <literal>PHP</literal></title>
|
||||
<para>
|
||||
|
|
Loading…
Reference in a new issue