Jump to content

Configuring MySQL on XAMPP.


ask9

Recommended Posts

Hi guys

 

This is my first time using XAMPP for development purpose.

 

I created a PHP script that will create a table and I encountered this error message below,

Warning: mysql_connect() [function.mysql-connect]: Access denied for user 'admin'@'localhost' (using password: YES) in C:\xampp\htdocs\mysql_create_table.php on line 3
Access denied for user 'admin'@'localhost' (using password: YES)

 

I already configured the username and password of the MySQL.

As you can see under the file of  c:\XAMPP\phpMyAdmin\config.inc.php

/* Authentication type and info */
$cfg['Servers'][$i]['auth_type'] = 'config';
$cfg['Servers'][$i]['host'] = 'localhost';
$cfg['Servers'][$i]['connect_type'] = 'tcp';
$cfg['Servers'][$i]['compress'] = false;
$cfg['Servers'][$i]['user'] = 'admin';
$cfg['Servers'][$i]['password'] = 'asdf1234';
$cfg['Servers'][$i]['extension'] = 'mysql';
$cfg['Servers'][$i]['AllowNoPassword'] = true;

 

 

What am I missing here?

 

Thanks in advanced.

 

 

 

 

Link to comment
https://forums.phpfreaks.com/topic/240761-configuring-mysql-on-xampp/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.