ask9 Posted June 30, 2011 Share Posted June 30, 2011 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. Quote Link to comment https://forums.phpfreaks.com/topic/240761-configuring-mysql-on-xampp/ Share on other sites More sharing options...
trq Posted June 30, 2011 Share Posted June 30, 2011 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. Quote Link to comment https://forums.phpfreaks.com/topic/240761-configuring-mysql-on-xampp/#findComment-1236657 Share on other sites More sharing options...
ask9 Posted June 30, 2011 Author Share Posted June 30, 2011 @thorpe Have you tried XAMPP for development? So How do I fix this? Thanks in advanced. Quote Link to comment https://forums.phpfreaks.com/topic/240761-configuring-mysql-on-xampp/#findComment-1236666 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.