From ef8097018f748f30e91292c2f6ba06bb34562594 Mon Sep 17 00:00:00 2001 From: Stanislav Malyshev Date: Sun, 19 Oct 2003 11:57:47 +0000 Subject: [PATCH] add docs about configuring PHP via registry git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@142694 c90b9560-bf6c-de11-be94-00142212c4b1 --- chapters/config.xml | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/chapters/config.xml b/chapters/config.xml index a39c9dd16e..482a43e3ee 100644 --- a/chapters/config.xml +++ b/chapters/config.xml @@ -1,5 +1,5 @@ - + Runtime Configuration @@ -197,6 +197,25 @@ include_path = ".;c:\php\lib" + + Changing <literal>PHP</literal> configuration via the Windows registry + + 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 + 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 PHP + configuration directive and the string value. PHP + constants in the values would not be parsed. + + + Other interfaces to <literal>PHP</literal>