nlopess Fri Aug 12 10:45:57 2005 EDT
Modified files: /phpdoc/en/install/windows extensions.xml Log: fix #34099: wrong slashes in the extension_dir directive http://cvs.php.net/diff.php/phpdoc/en/install/windows/extensions.xml?r1=1.10&r2=1.11&ty=u Index: phpdoc/en/install/windows/extensions.xml diff -u phpdoc/en/install/windows/extensions.xml:1.10 phpdoc/en/install/windows/extensions.xml:1.11 --- phpdoc/en/install/windows/extensions.xml:1.10 Thu Mar 31 22:01:26 2005 +++ phpdoc/en/install/windows/extensions.xml Fri Aug 12 10:45:56 2005 @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="iso-8859-1"?> -<!-- $Revision: 1.10 $ --> +<!-- $Revision: 1.11 $ --> <sect1 id="install.windows.extensions"> <title>Installation of extensions on Windows</title> <para> @@ -52,8 +52,8 @@ </para> <para> The default location PHP searches for extensions is - <filename class="directory">c:\php4\extensions</filename> in PHP 4 and - <filename class="directory">c:\php5</filename> in PHP 5. To change this + <filename class="directory">C:\php4\extensions</filename> in PHP 4 and + <filename class="directory">C:\php5</filename> in PHP 5. To change this setting to reflect your setup of PHP edit your &php.ini; file: <itemizedlist> <listitem> @@ -61,12 +61,11 @@ You will need to change the <link linkend ="ini.extension-dir">extension_dir</link> setting to point to the directory where your extensions lives, or where you have - placed your <filename>php_*.dll</filename> files. Please do not - forget the last backslash. For example: + placed your <filename>php_*.dll</filename> files. For example: <informalexample> <programlisting role="ini"> <![CDATA[ -extension_dir = c:/php/extensions/ +extension_dir = C:\php\extensions ]]> </programlisting> </informalexample>