Keep Server Online
If you find the Apache Lounge, the downloads and overall help useful, please express your satisfaction with a donation.
or
A donation makes a contribution towards the costs, the time and effort that's going in this site and building.
Thank You! Steffen
Your donations will help to keep this site alive and well, and continuing building binaries. Apache Lounge is not sponsored.
| |
|
Topic: phpMyAdmin :: Cannot load mysql extension |
|
Author |
|
laurasaur
Joined: 09 Aug 2006 Posts: 3 Location: New Zealand
|
Posted: Fri 11 Aug '06 10:57 Post subject: phpMyAdmin :: Cannot load mysql extension |
|
|
I have just installed mySQL which seems to be working fine.. although im not really sure and then installed phpMyAdmin 2.8.1
I tried to edit the phpMyAdmin file like so:
Code: |
<?php
$i=0;
$i++;
$cfg['Servers'][$i]['user'] = 'root';
$cfg['Servers'][$i]['***'] = 'cbb74bc'; // use here your password
?>
|
and saved it in the right place but when i run the myadmin i get
phpMyAdmin - Error
Cannot load mysql extension. Please check your PHP configuration. - Documentation
:/
thanks |
|
Back to top |
|
James Blond Moderator
Joined: 19 Jan 2006 Posts: 7371 Location: Germany, Next to Hamburg
|
Posted: Fri 11 Aug '06 13:15 Post subject: |
|
|
You need to enable php_mysqli.dll or php_phpmyql.dll in php.ini
Code: |
extesion=php_mysqli.dll;
|
|
|
Back to top |
|
|
|
|
|
|