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
Share on other sites

I already configured the username and password of the MySQL.

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

 

MySQL is NOT phpMyAdmin. they are two completely different things.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.