mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
changed configure documentation
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@153568 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
3397580dec
commit
0eed3b7b5e
2 changed files with 13 additions and 12 deletions
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.7 $ -->
|
||||
<!-- $Revision: 1.8 $ -->
|
||||
<section id="mysql.installation">
|
||||
&reftitle.install;
|
||||
<para id="mysql.configure">
|
||||
|
@ -27,9 +27,13 @@
|
|||
FAQ</link> for details on why.
|
||||
</para>
|
||||
<para>
|
||||
This MySQL extension will not work with MySQL versions greater than
|
||||
This MySQL extension doesn't support full functionality of MySQL versions greater than
|
||||
4.1.0. For that, use <link linkend="ref.mysqli">MySQLi</link>.
|
||||
</para>
|
||||
<para>
|
||||
If you would like to install the mysql extension along with the mysqli extension
|
||||
you have to use the same client library to avoid any conflicts.
|
||||
</para>
|
||||
<warning>
|
||||
<para>
|
||||
Crashes and startup problems of <literal>PHP</literal> may be encountered
|
||||
|
|
|
@ -1,20 +1,17 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.2 $ -->
|
||||
<!-- $Revision: 1.3 $ -->
|
||||
<section id="mysqli.installation">
|
||||
&reftitle.install;
|
||||
<para id="mysqli.configure">
|
||||
To install the mysqli extension for PHP, use the
|
||||
<option role="configure">--with-mysqli=mysql_config_path</option>
|
||||
<option role="configure">--with-mysqli=mysql_config_path/mysql_config</option>
|
||||
configuration option where <literal>mysql_config_path</literal> represents
|
||||
the location of the <literal>mysql_config</literal> program that comes
|
||||
with MySQL versions greater than 4.1. Also, disable the standard
|
||||
<link linkend="ref.mysql">MySQL</link> extension (which is enabled by
|
||||
default) by also using the <option>--without-mysql</option> configuration
|
||||
option. If you would like to install the standard mysql extension along
|
||||
with the mysqli extension, the bundled libmysql library that comes with
|
||||
PHP cannot be used. Instead, use the client libraries installed by MySQL
|
||||
with versions below 4.1. This will force PHP to use the client libraries
|
||||
installed by MySQL thus avoiding any conflicts.
|
||||
with MySQL versions greater than 4.1.
|
||||
</para>
|
||||
<para>
|
||||
If you would like to install the mysql extension along with the mysqli extension
|
||||
you have to use the same client library to avoid any conflicts.
|
||||
</para>
|
||||
</section>
|
||||
|
||||
|
|
Loading…
Reference in a new issue