ID:185362
 
I'm trying to login to PHPMyAdmin and on each attempt it says I gave either a wrong username, wrong password, or both. I set the username in the config.inc file and set the password in mysql_password then set the auth_type to 'http', and no matter what I do it keeps giving me that error.
I had phpmyadmin installed into my web directory on my computer.. I don't know how your using it.. but I thought using it is simple just config the files and create a virtual Directory (thats if its on your computeR) and just set it to the mysql databaseisnt really that hard. The password is for YOUR "Mysql" if you know the mysql password to get in and out like for example
user: Root
Pass: admin

(not enitrely sure this is helpful so..)
(Ill see if i can if ill resetup my phpadmin)
In response to Nadrew
I set the 'username' variable to 'artemio', but I left the password to implode() (it did say that it wasn't needed unless I use 'config'), but I use 'artemio' and the password set in the mysql_password file and it doesn't work. So how would I set the UN/PW for HTTP authentication?

I first left it as 'config' but I still got the same error.
I even tried setting the password directly in config.inc for both auth types and got the same error.
In response to Artemio
In response to Nadrew
Positive.

$cfg['Servers'][$i]['auth_type'] = 'config'; // Authentication method (config, http
or cookie based)?
$cfg['Servers'][$i]['user'] = 'artemio'; // MySQL user
$cfg['Servers'][$i]['password'] = implode('',file('../mysql_password'));
In response to Artemio
In response to Nadrew
I just reinstalled, apparantly it doesn't want you to log in if you set a different password than "root" in mysql_password.

I have another problem, though. I'm using Yuugi's scoreboard system- I made the table and all the fields, and the page never loads.
<?
/* Database Information - Required!! */
/* -- Configure the Variables Below --*/
$dbhost = '68.56.69.178:80';
$dbusername = '//editedout\\';
$dbpasswd = '//editedout\\';
$database_name = '68.56.69.178';

/* Database Stuff, do not modify below this line */

$connection = mysql_pconnect("$dbhost","$dbusername","$dbpasswd")
or die ("Couldn't connect to.");

$db = mysql_select_db("$database_name", $connection)
or die("Couldn't select database.");
?>
In response to Artemio
In response to Nadrew
Now I get "couldn't select database" after changing database_name to "highscore" and dbhost to "localhost".
In response to Artemio
In response to Nadrew
I went into PHPMyAdmin, went to the MySQL database, and added a "highscore" table with the appropriate fields.

Screenshot.
In response to Artemio
In response to Nadrew
It's on the same server, yes.
In response to Artemio
In response to Nadrew
didn't notice if this was mentioned, but often times you need to reload the mysql server for certain changes (like a username/password, or creating a database) before you work with those changes. so setting the database username/pass, reloading, *then* updating that info in your phpmyadmin config, should have worked.
In response to digitalmouse
I already tried that, but I just set it in PHPMyAdmin when I reinstalled.

Last problem: Names with a single quotation mark in them fsk up the link, how do I fix it?