Search : in
By :

The MySQL adapter "mysql" is not availab

Last answer on Feb 19, 2009 4:27:10 pm GMT neda, on Aug 11, 2008 2:41:02 pm BST 
 Report this message to moderators

Hi,i going to install joomla in XP,but

I get the following error message...

Unable to connect to the database:The MySQL adapter "mysql" is not available.

MySql is running smoothly when i login through the command line.

Im using Apache.

Please help...

Configuration: Windows XP
Internet Explorer 6.0

Best answers for « The MySQL adapter "mysql" is not availab » in :
LAMP(Apache + MySQL + PHP) quick install on Linux Show LAMP(Apache + MySQL + PHP) quick install on Linux Intro LAMP is the acronym for a free and open source software suite.usually used to define and run dynamic a web server infrastructure ,software development and establish a software...
Reinitializing the root password of MySQL ShowReinitializing the root password of MySQL The root password is lost! Reinitializing the password: It's important that you are able to access and modify the admin (root) password of MYSQL, either when installing MySQL for the first...
Backup/Restore Mysql database ShowBackup/Restore Mysql database Backup Restore your database Note A simple approach on how to backup and restore MySQL databases. Backup To save an existing database it is recommended that you create a dump. To dump all...
MySQL - SELECT ... YESTERDAY ShowMySQL - SELECT ... YESTERDAY Make use of the following syntax: SELECT * FROM myTable WHERE field_date = DATE_SUB(CONCAT(CURDATE(), ' 00:00:00'), INTERVAL 1 DAY) In order to select previous records: SELECT * FROM myTable WHERE field_date =...
Download MySQL Essential ShowMySQL 5.4 Essential which is recommended for most users is one of the world’s most popular open source database. Includes a configuration wizard for optimal use. It is the most trustworthy, secure and up to date version of most database. To know...
Download MicroOLAP Database Designer for MySQL ShowMicroOLAP Database Designer for MySQL is a powerful development system for database visual modeling, modification, maintenance and reverse engineering in an easy and powerful way. MicroOLAP Database Designer for MySQL also allows to publish or to...
Network cards ShowWhat is a network card? A network card (also called a Network Adapter or Network Interface Card, or NIC for short) acts as the interface between a computer and a network cable. The purpose of the network card is to prepare, send, and control data...
Installing a network adapter ShowPurpose The purpose of this article is to set up a network to enable data exchanges between computers, resource sharing and network games. Is it therefore necessary to install a network card in each computer that may be part of the local area...

1

hornmann, on Aug 11, 2008 3:54:47 pm BST

Hello,

what you need is microsoft sql database you can get one from www.microsoft.com

install it and then after it will work no worries

Reply to hornmann

2

neda, on Aug 12, 2008 7:08:12 am BST
  • +6

Hello,
I installed MySql on the my pc(in the time installing Joomla,MySql installed),but i continuously get error message:
The MySQL adapter "mysql" is not availab ...
problem didnt solve for me...

Reply to neda

3

joomla_novice, on Aug 16, 2008 11:18:10 pm BST

I'm getting the same error; but installing any type of Microsoft SQL database is NOT the answer; JOOMLA requires MySQL database. Any other suggestions? Thanks

Reply to joomla_novice

4

abate, on Nov 15, 2008 9:26:01 pm GMT
Reply to abate

5

mocia65, on Nov 27, 2008 4:19:17 pm GMT

Is a php configuration,
using phpinfo() you have to see the mysql installed,
if not installed reinstall the php and select to install even the mysql module.
mocia65

Reply to mocia65

6

 kicking_and_alive_at_last, on Feb 19, 2009 4:27:10 pm GMT
  • +2

Try locating and setting the following parameter in your php.ini (it is in the Dynamic Extensions section):

extension=php_mysql.dll

prior to this change, I could make a simple php script without mysql run, like this

<?php
phpinfo(();
?>

but not another one like this

<?php
echo mysql_connect ('localhost', '<yourwebuser>', '<yourwebuserpassword>');
?>

the previous should normally output something like:

Resource id #n

where n=1 or 2 or

Reply to kicking_and_alive_at_last