MyPHPAdmin auf Kontent.de Webserver

Hallo,
nachdem ich auf meiem Stand-Alone-PC zu Testzwecken einen Webserver mit WAMPP eingerichtet habe und dort das MySQL Frontend MyPHPAdmin "kennenlernte" würde ich es gerne auch bei meinem Webserver-Account bei kontent.de einrichten. Wie stelle ich das an?
 
Quick Install:

Use a distribution kit with the files having the extension (.php3 or .php) depending on the way your web/PHP server interprets those extensions.
Untar or unzip the distribution (be sure to unzip the subdirectories): tar xzvf phpMyAdmin_x.x.x.tar.gz in your webserver's document root.
Open the file config.inc.php3 in your favourite editor and change the values for host, user, password and authentication mode to fit your environment. Also insert the correct value for $cfg['PmaAbsoluteUri']. Have a look at Configuration section for an explanation of all values.
It is recommended that you protect the directory in which you installed phpMyAdmin (unless it's on a closed intranet, or you wish to use http or cookie authentication), for example with HTTP-AUTH (in a .htaccess file). See the FAQ section for additional information.
Open the file <www.your-host.com>/<your-install-dir>/index.php3 in your browser. phpMyAdmin should now display a welcome screen and your databases, or a login dialog if using http or cookie authentication mode.

also die config.inc.php anpassen, datenbankname, passwort, pfad etc und dann einfach uploaden

also:
config.ini.php:
$cfgServers[1]['host'] = 'mysql1.kontent.de';
$cfgServers[1]['port'] = '';
$cfgServers[1]['adv_auth'] = false;
$cfgServers[1]['stduser'] = ' DATENBANKNAME ';
$cfgServers[1]['stdpass'] = ' PASSWORT ';
$cfgServers[1]['user'] = DATENBANKNAME ;
$cfgServers[1]['password'] = 'PASSWORT';
$cfgServers[1]['only_db'] = 'DATENBANKNAME';
$cfgServers[1]['verbose'] = '';

danach sollte das verzeichniss mit einem .htaccess passwortschutz versehen werden -> http://selfhtml.teamone.de/diverses/htaccess.htm#verzeichnisschutz
 
Original von Mackz
$cfgServers[1]['host'] = 'mysql1.kontent.de';
$cfgServers[1]['port'] = '';
$cfgServers[1]['adv_auth'] = false;
$cfgServers[1]['stduser'] = ' DATENBANKNAME ';
$cfgServers[1]['stdpass'] = ' PASSWORT ';
$cfgServers[1]['user'] = DATENBANKNAME ;
$cfgServers[1]['password'] = 'PASSWORT';
$cfgServers[1]['only_db'] = 'DATENBANKNAME';
$cfgServers[1]['verbose'] = '';

Gut, in meinem Fall ist es mysql2.kontent.de

der Datenbankname dürfte dann 3mal das Gleiche sein oder (de11******)?
Und das Passwort ist dann auch 2mal das Gleiche?
 
Zurück
Oben