mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
Made the information about the new changes more visible, as this seems to be a constant problem with users.
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@168369 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
2d3ce8d205
commit
efbb10251a
1 changed files with 18 additions and 6 deletions
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.10 $ -->
|
||||
<!-- $Revision: 1.11 $ -->
|
||||
<section id="mysql.installation">
|
||||
&reftitle.install;
|
||||
<para id="mysql.configure">
|
||||
|
@ -24,16 +24,28 @@
|
|||
<para>
|
||||
In PHP 5, MySQL is no longer enabled by default, nor is the MySQL library
|
||||
bundled with PHP. Read this <link linkend="faq.databases.mysql.php5">
|
||||
FAQ</link> for details on why. Because of this, Windows users will need
|
||||
to enable <filename>php_mysql.dll</filename> inside of &php.ini; and either
|
||||
copy <filename>libmysql.dll</filename> into the Windows system directory or
|
||||
make it available to the <envar>PATH</envar>. For compiling, simply use
|
||||
FAQ</link> for details on why.
|
||||
</para>
|
||||
|
||||
<note>
|
||||
<para>
|
||||
Windows users will need to enable <filename>php_mysql.dll</filename>
|
||||
inside of &php.ini; and either copy <filename>libmysql.dll</filename>
|
||||
into the Windows system directory, or make it available to the <envar>PATH</envar>.
|
||||
</para>
|
||||
<para>
|
||||
This will fix "Unable to load dynamic library './php_mysql.dll'" errors.
|
||||
</para>
|
||||
</note>
|
||||
|
||||
<para>
|
||||
For compiling, simply use
|
||||
<option role="configure"> --with-mysql=[DIR]</option> where
|
||||
<literal>[DIR]</literal> points to your MySQL installation directory.
|
||||
</para>
|
||||
<para>
|
||||
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>.
|
||||
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
|
||||
|
|
Loading…
Reference in a new issue