faq for mysql extension
This commit is contained in:
@@ -5,6 +5,10 @@ phpMyAdmin - Changelog
|
|||||||
$Id$
|
$Id$
|
||||||
$Source$
|
$Source$
|
||||||
|
|
||||||
|
2002-07-21 Marc Delisle <lem9@users.sourceforge.net>
|
||||||
|
* Documentation.html, libraries/common.lib.php3: added a faq about
|
||||||
|
mysql extension, and a link to it when the error occurs
|
||||||
|
|
||||||
2002-07-20 Marc Delisle <lem9@users.sourceforge.net>
|
2002-07-20 Marc Delisle <lem9@users.sourceforge.net>
|
||||||
* tbl_properties*: missing $sub_part for back links (bug 584069)
|
* tbl_properties*: missing $sub_part for back links (bug 584069)
|
||||||
|
|
||||||
|
@@ -1613,7 +1613,21 @@ $cfg['PmaAbsoluteUri'] = (!empty($_SERVER['HTTPS']) ? 'https' : 'http') . '://'
|
|||||||
these files.
|
these files.
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
|
<a name="faqmysql"></a>
|
||||||
|
<p>
|
||||||
|
<b>I receive the error 'cannot load MySQL extension, please check
|
||||||
|
PHP Configuration'.</b>
|
||||||
|
<br />
|
||||||
|
To connect to a MySQL server, PHP needs a set of MySQL functions called
|
||||||
|
"MySQL extension".
|
||||||
|
This extension may be part of the PHP server (compiled-in), otherwise
|
||||||
|
it needs to be loaded dynamically. phpMyAdmin tried to load the extension
|
||||||
|
but failed.
|
||||||
|
<br /><br />
|
||||||
|
Usually, the problem is solved by installing a software package called
|
||||||
|
"PHP-MySQL" or something similar.
|
||||||
|
|
||||||
|
</p>
|
||||||
<a name="faqconfig"></a>
|
<a name="faqconfig"></a>
|
||||||
<h3>[Configuration]</h3>
|
<h3>[Configuration]</h3>
|
||||||
|
|
||||||
|
@@ -195,7 +195,9 @@ h1 {font-family: sans-serif; font-size: large; font-weight: bold}
|
|||||||
@dl($extension.$suffix);
|
@dl($extension.$suffix);
|
||||||
}
|
}
|
||||||
if (!@extension_loaded($extension)) {
|
if (!@extension_loaded($extension)) {
|
||||||
echo $strCantLoadMySQL;
|
echo $strCantLoadMySQL . '<br /> '
|
||||||
|
. '<a href="Documentation.html#faqmysql">'
|
||||||
|
. $GLOBALS['strDocu'] . '</a>';
|
||||||
exit();
|
exit();
|
||||||
}
|
}
|
||||||
} // end load mysql extension
|
} // end load mysql extension
|
||||||
|
Reference in New Issue
Block a user