Some manual editing is needed in config.inc.php.
Look at
-------------
* If the auto-detection code does work properly, you can set to TRUE the
* $cfg['PmaAbsoluteUri_Disab
*/
$cfg['PmaAbsoluteUri'] = 'http://xxxxx.com/phpMyAdm
-------------
(this should be the address to launch PMA)
-------------
Here is a (modified) example that works:
$cfg['Servers'][$i]['host'
$cfg['Servers'][$i]['port'
$cfg['Servers'][$i]['socke
$cfg['Servers'][$i]['conne
$cfg['Servers'][$i]['exten
$cfg['Servers'][$i]['compr
// (requires PHP >= 4.3.0)
$cfg['Servers'][$i]['contr
// (this user must have read-only
$cfg['Servers'][$i]['contr
// and "mysql/db" tables).
// The controluser is also
// used for all relational
// features (pmadb)
$cfg['Servers'][$i]['auth_
$cfg['Servers'][$i]['user'
$cfg['Servers'][$i]['passw
// with 'config' auth_type)
$cfg['Servers'][$i]['only_
// this db is displayed in left frame
// It may also be an array of db-names, where sorting order is relevant.
------------------------
Note that these parameters describe the connection between your server running PHP and the one running MySQL. Usually they are the same, hence localhost is the right value.
For a start, user (root) and its password (xxxx) should match one of the users you have ceated inside MySQL (most of the time 'xxxx' would be ''). Once this is running, you can add some security.
Main Topics
Browse All Topics





by: SqueebeePosted on 2005-11-25 at 09:30:54ID: 15361854
Is there an apache password on the phpmyadmin pages?