Installation and Runtine Configuration update

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@302071 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Esen Sagynov 2010-08-10 10:16:50 +00:00
parent 380c441c88
commit 2418ed7fcc
2 changed files with 31 additions and 3 deletions

View file

@ -9,11 +9,11 @@
<section>
<title>Installing PHP for Windows</title>
<para>
Create a directory named CUBRID in the directory where PHP is installed, and then copy the <parameter>cubrid_err.msg</parameter> file and the .dll file of the cubrid_php version you just downloaded. If you download CUBRID PHP version 5.1.4, add required settings as shown in the example below by editing the php.ini file.
Create a directory named CUBRID in the directory where PHP is installed, and then copy the <parameter>cubrid_err.msg</parameter> file. Also copy the .dll file of the cubrid_php you have just downloaded to the php extension directory (default C:\PHP\ext - see <parameter>extension_dir</parameter> from php.ini). If you download CUBRID PHP version 5.1.4, add required settings as shown in the example below by editing the php.ini file.
</para>
<programlisting>
<![CDATA[
extension_dir=C:\PHP\CUBRID
extension_dir = C:\PHP\ext
extension=cubrid_php5.1.4.dll
[CUBRID]
cubrid.err_path=C:\PHP\CUBRID

View file

@ -15,7 +15,35 @@
<section xml:id="cubrid.configuration">
&reftitle.runtime;
&no.config;
<para>
Edit the php.ini file and add following text:
</para>
<para>
<programlisting>
[CUBRID]
cubrid.err_path = C:\PHP\CUBRID
;for Linux, cubrid.err_path = /home/cubrid/CUBRID/msg
</programlisting>
</para>
<para>
Here's a short explanation:
</para>
<para>
<variablelist>
<varlistentry>
<term>
<parameter>cubrid.err_path</parameter>
<type />
</term>
<listitem>
<para>
The path to the folder where <parameter>cubrid_err.msg</parameter> file can be found. This file contains the error messages that CUBRID uses in case of some errors.
</para>
</listitem>
</varlistentry>
</variablelist>
</para>
</section>
<section xml:id="cubrid.resources">