Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
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.
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?