PhpMyAdmin
Nico
- php
Hallo,
die Installation von PhpMyAdmin treibt mich noch in den Wahnsinn. Aber wahrscheinlich ist's wie so oft: die Loesung liegt sehr nahe.
Ich habe das zip File heruntergeladen, entpackt und im cfg File die noetigen Aenderungen angebracht (hoffentlich vollstaendig).
Was muss ich nun beachten?
1. Muessen alle Files aus meinem PhpMyAdmin-Verzeichnis auf den WEB-Server hochgeladen werden?
2. Wie sollte ich das PhpMyAdmin-Verzeichnis auf dem WEB-Server vor unberechtigtem Zugriff schuetzen?
Allerbesten Dank fuer Eure Hilfe
Gruss
Nico
Hallo,
lade das GESAMTE phpMyAdmin verzeichniss hoch.
zum absichern genügt eine .htaccess :-)
das cfg file:
$cfgServers[1]['host'] = 'localhost'; // MySQL hostname
$cfgServers[1]['port'] = ''; // MySQL port - leave blank for default port
$cfgServers[1]['adv_auth'] = false; // Use advanced authentication?
$cfgServers[1]['stduser'] = 'DEINUSERNAME'; // MySQL standard user (only needed with advanced auth)
$cfgServers[1]['stdpass'] = 'DEINPASSWORT'; // MySQL standard password (only needed with advanced auth)
$cfgServers[1]['user'] = 'DEINUSERNAME'; // MySQL user (only needed with basic auth)
$cfgServers[1]['password'] = 'DEINPASSWORT'; // MySQL password (only needed with basic auth)
$cfgServers[1]['only_db'] = 'DEINEDB'; // 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
lg
Ludwig
Hallo Ludwig,
Allerbesten Dank. Jetzt geht's ans 'Dumpen'.
AbG
Nico
Hallo,
lade das GESAMTE phpMyAdmin verzeichniss hoch.
zum absichern genügt eine .htaccess :-)
das cfg file:
$cfgServers[1]['host'] = 'localhost'; // MySQL hostname
$cfgServers[1]['port'] = ''; // MySQL port - leave blank for default port
$cfgServers[1]['adv_auth'] = false; // Use advanced authentication?
$cfgServers[1]['stduser'] = 'DEINUSERNAME'; // MySQL standard user (only needed with advanced auth)
$cfgServers[1]['stdpass'] = 'DEINPASSWORT'; // MySQL standard password (only needed with advanced auth)
$cfgServers[1]['user'] = 'DEINUSERNAME'; // MySQL user (only needed with basic auth)
$cfgServers[1]['password'] = 'DEINPASSWORT'; // MySQL password (only needed with basic auth)
$cfgServers[1]['only_db'] = 'DEINEDB'; // If set to a db-name, only this db is accessible
$cfgServers[1]['verbose'] = ''; // Verbose name for this host - leave blank to show the hostnamelg
Ludwig