Hallo,
nachdem ich den ganzen Tag in sämtlichen Foren gesucht habe und die verschiedenen Lösungsvorschläge auch angewendet habe (ohne Erfolg) poste ich mein Problem das bestimmt total DAU mäßig ist. Aber bevor ich noch in die Tastatur beiß hoffe ich doch auf Hilfe. Es wurde auch in diesem Forum schon so ähnlich beschrieben, aber wie gesagt es half alles nix.
Auf meinem PC mit Win2000 + SP4 habe ich PHP und mySQL installiert.
PHP funktioniert, nur habe ich Probleme mit der Datenbank.
phpMyAdmin 2.5.3. Apache läuft. MySQL läuft auch.
Das ist der Teil aus der config.inc.php:
* Server(s) configuration
*/
$i = 0;
// The $cfg['Servers'] array starts with $cfg['Servers'][1]. Do not use $cfg['Servers'][0].
// You can disable a server config entry by setting host to ''.
$i++;
$cfg['Servers'][$i]['host'] = 'localhost'; // MySQL hostname or IP address
$cfg['Servers'][$i]['port'] = ''; // MySQL port - leave blank for default port
$cfg['Servers'][$i]['socket'] = ''; // Path to the socket - leave blank for default socket
$cfg['Servers'][$i]['connect_type'] = 'tcp'; // How to connect to MySQL server ('tcp' or 'socket')
$cfg['Servers'][$i]['compress'] = FALSE; // Use compressed protocol for the MySQL connection
// (requires PHP >= 4.3.0)
$cfg['Servers'][$i]['controluser'] = ''; // MySQL control user settings
// (this user must have read-only
$cfg['Servers'][$i]['controlpass'] = ''; // access to the "mysql/user"
// and "mysql/db" tables)
$cfg['Servers'][$i]['auth_type'] = 'config'; // Authentication method (config, http or cookie based)?
$cfg['Servers'][$i]['user'] = ''; // MySQL user
$cfg['Servers'][$i]['password'] = ''; // MySQL password (only needed
// with 'config' auth_type)
$cfg['Servers'][$i]['only_db'] = ''; // If set to a db-name, only
// this db is displayed
// at left frame
// It may also be an array
// of db-names
Wenn ich 'root' als user reinschreib ohne Passwort kann ich zu phpMyAdmin connecten.
Wenn ich 'irgendwas' bei user reinschreib MIT Passwort kommt beim connecten:
#1045 - Access denied for user: 'irgendwas@localhost' (Using password: YES)
Ohne Passwort kann ich auch mit user 'irgendwas' connecten.
Ich hab als root schon zig mal den user 'irgendwas' angelegt und die Rechte vergeben. MySQL neugestartet. Ich habe auch FLUSH PRIVILEGES gemacht.
Bitte helft mir.

TheGeckO
nachdem ich den ganzen Tag in sämtlichen Foren gesucht habe und die verschiedenen Lösungsvorschläge auch angewendet habe (ohne Erfolg) poste ich mein Problem das bestimmt total DAU mäßig ist. Aber bevor ich noch in die Tastatur beiß hoffe ich doch auf Hilfe. Es wurde auch in diesem Forum schon so ähnlich beschrieben, aber wie gesagt es half alles nix.
Auf meinem PC mit Win2000 + SP4 habe ich PHP und mySQL installiert.
PHP funktioniert, nur habe ich Probleme mit der Datenbank.
phpMyAdmin 2.5.3. Apache läuft. MySQL läuft auch.
Das ist der Teil aus der config.inc.php:
* Server(s) configuration
*/
$i = 0;
// The $cfg['Servers'] array starts with $cfg['Servers'][1]. Do not use $cfg['Servers'][0].
// You can disable a server config entry by setting host to ''.
$i++;
$cfg['Servers'][$i]['host'] = 'localhost'; // MySQL hostname or IP address
$cfg['Servers'][$i]['port'] = ''; // MySQL port - leave blank for default port
$cfg['Servers'][$i]['socket'] = ''; // Path to the socket - leave blank for default socket
$cfg['Servers'][$i]['connect_type'] = 'tcp'; // How to connect to MySQL server ('tcp' or 'socket')
$cfg['Servers'][$i]['compress'] = FALSE; // Use compressed protocol for the MySQL connection
// (requires PHP >= 4.3.0)
$cfg['Servers'][$i]['controluser'] = ''; // MySQL control user settings
// (this user must have read-only
$cfg['Servers'][$i]['controlpass'] = ''; // access to the "mysql/user"
// and "mysql/db" tables)
$cfg['Servers'][$i]['auth_type'] = 'config'; // Authentication method (config, http or cookie based)?
$cfg['Servers'][$i]['user'] = ''; // MySQL user
$cfg['Servers'][$i]['password'] = ''; // MySQL password (only needed
// with 'config' auth_type)
$cfg['Servers'][$i]['only_db'] = ''; // If set to a db-name, only
// this db is displayed
// at left frame
// It may also be an array
// of db-names
Wenn ich 'root' als user reinschreib ohne Passwort kann ich zu phpMyAdmin connecten.
Wenn ich 'irgendwas' bei user reinschreib MIT Passwort kommt beim connecten:
#1045 - Access denied for user: 'irgendwas@localhost' (Using password: YES)
Ohne Passwort kann ich auch mit user 'irgendwas' connecten.
Ich hab als root schon zig mal den user 'irgendwas' angelegt und die Rechte vergeben. MySQL neugestartet. Ich habe auch FLUSH PRIVILEGES gemacht.
Bitte helft mir.


TheGeckO