mathias Posted May 18, 2007 Report Share Posted May 18, 2007 hey i'am a newbe to this, and i can see that there i a topic white the same problem, but there is not the answer that i need.when i try to log in on mysql througn phpmyadmin is says #1045 - Access denied for user 'masc030686'@'localhost' (using password: YES), the password is ok no error there, but i don't know if the user navn is the right on is there i method, where i'am able to see it. i have made a config fill, but i don't know if there is some thing i need.<?php/* * Generated configuration file * Generated by: phpMyAdmin 2.10.1 setup script by Michal Čihař <michal@cihar.com> * Version: $Id: setup.php 9697 2006-11-13 08:32:28Z nijel $ * Date: Thu, 17 May 2007 17:00:33 GMT */ /* Servers configuration */$i = 0; /* Server localhost (cookie) [1] */$i++;$cfg['Servers'][$i]['host'] = 'localhost';$cfg['Servers'][$i]['extension'] = 'mysql';$cfg['Servers'][$i]['port'] = '3306';$cfg['Servers'][$i]['connect_type'] = 'tcp';$cfg['Servers'][$i]['controluser'] = 'masc030686';$cfg['Servers'][$i]['controlpass'] = '10953001';$cfg['Servers'][$i]['compress'] = false;$cfg['Servers'][$i]['auth_type'] = 'cookie';$cfg['Servers'][$i]['user'] = 'masc030686';$cfg['Servers'][$i]['password'] = '10953001'; /* End of servers configuration */ $cfg['blowfish_secret'] = '464c8a06b71b53.62977543';$cfg['UploadDir'] = 'D:\\MySQL Datafiles';$cfg['SaveDir'] = 'D:\\MySQL Datafiles';$cfg['AllowAnywhereRecoding'] = true;$cfg['DefaultCharset'] = 'iso-8859-1';$cfg['RecodingEngine'] = 'iconv';$cfg['IconvExtraParams'] = '//TRANSLIT';?> please help me Quote Link to comment Share on other sites More sharing options...
Ric Posted May 18, 2007 Report Share Posted May 18, 2007 Note: Only changing the password in file mysql_password without changing the database user root first is the main cause for this error message.“#1045 - Access denied for user 'root'@'localhost' (using password: YES)” For changing root password check out these pages: http://center.uniformserver.com/uniserver/...check_list.htmlorhttp://center.uniformserver.com/new_users/...#mysql_security If you want to host multi-MySQL users and use phpMyAdmin check out this page: http://center.uniformserver.com/mysql/mysql_accounts.html Hope that helps Quote Link to comment 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.