Hallo,
$cfgServers[1]['host'] = '123.123.123.12';<<
Hallo,
richtig, das sollte locoalhost sein,
du mußt natürlich noch ein passwort für die DB angeben (bei einer normalen installation ist es nicht vorhanden)
das machst du am einfachsten mit der anleitung auf:
http://www2.rent-a-database.de/mysql/mysql-13.html
Alles was du jetzt noch machen mußt, ist einen user nebst passwort anzulegen, und ihm fast ALLE rechte geben (sowas wie der standard user root (der von der DB natürlich nicht vom system :-) ), den du natürlich auch verwenden kannst)
dann änderst du das common.inc.php3 wie folgt ab:
<CUT>
$cfgServers[1]['host'] = 'localhost'; // MySQL hostname (IP-Adresse)
$cfgServers[1]['port'] = ''; // MySQL port - leave blank for default port
$cfgServers[1]['adv_auth'] = false; // Use advanced authentication?
$cfgServers[1]['stduser'] = 'root'; // MySQL standard user (only needed with advanced auth)
$cfgServers[1]['stdpass'] = ''; // MySQL standard password (only needed with advanced auth)
$cfgServers[1]['user'] = 'USERNAME'; // MySQL user (only needed with basic auth)
$cfgServers[1]['password'] = 'PASSWORT'; // MySQL password (only needed with basic auth)
$cfgServers[1]['only_db'] = ''; // If set to a db-name, only this db is accessible
$cfgServers[1]['verbose'] = ''; // Verbose name for this host - leave blank to show the hostname
</CUT>
"USERNAME" und "PASSWORT" mußt du selber anlegen, du kannst wie oben gesagt auch den root nehmen.
Hoffe du schaffst es wenn nicht: mailto:ruderstaller@cwd.at
lg
Ludwig