$cfg['Servers'][$i]['host']          = 'localhost'; // MySQL hostname
$cfg['Servers'][$i]['port']          = '3306';          // MySQL port - leave blank for default port
$cfg['Servers'][$i]['socket']        = '';          // Path to the socket - leave blank for default socket
$cfg['Servers'][$i]['connect_type']  = 'tcp';       // How to connect to MySQL server ('tcp' or 'socket')
$cfg['Servers'][$i]['controluser']   = '';          // MySQL control user settings
                                                    // (this user must have read-only
$cfg['Servers'][$i]['controlpass']   = '';          // access to the "mysql/user"
                                                    // and "mysql/db" tables)
$cfg['Servers'][$i]['auth_type']     = 'config';    // Authentication method (config, http or cookie based)?
$cfg['Servers'][$i]['user']          = '用户名';      // MySQL user
$cfg['Servers'][$i]['password']      = '密码';          // MySQL password (only needed

解决方案 »

  1.   

    <?php
    /* $Id: config.inc.php3,v 1.28 2000/07/13 13:52:48 tobias Exp $ *//*
     *  phpMyAdmin Configuration File
     *  All directives are explained in Documentation.html
     */// The $cfgServers array starts with $cfgServers[1].  Do not use $cfgServers[0].
    // You can disable a server config entry by setting host to ''.
    $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'] = 'root';             // MySQL standard user (only needed with advanced auth)
    $cfgServers[1]['stdpass'] = '';                 // MySQL standard password (only needed with advanced auth)
    $cfgServers[1]['user'] = 'root';                // 連接Mysql的用戶名 MySQL user (only needed with basic auth)
    $cfgServers[1]['password'] = 'password';                // 連接Mysql 的密碼 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$cfgServers[2]['host'] = '';
    $cfgServers[2]['port'] = '';
    $cfgServers[2]['adv_auth'] = false;
    $cfgServers[2]['stduser'] = '';
    $cfgServers[2]['stdpass'] = '';
    $cfgServers[2]['user'] = '';
    $cfgServers[2]['password'] = '';
    $cfgServers[2]['only_db'] = '';
    $cfgServers[2]['verbose'] = '';$cfgServers[3]['host'] = '';
    $cfgServers[3]['port'] = '';
    $cfgServers[3]['adv_auth'] = false;
    $cfgServers[3]['stduser'] = '';
    $cfgServers[3]['stdpass'] = '';
    $cfgServers[3]['user'] = 'root';
    $cfgServers[3]['password'] = '';
    $cfgServers[3]['only_db'] = '';
    $cfgServers[3]['verbose'] = '';// If you have more than one server configured, you can set $cfgServerDefault
    // to any one of them to autoconnect to that server when phpMyAdmin is started,
    // or set it to 0 to be given a list of servers without logging in
    // If you have only one server configured, $cfgServerDefault *MUST* be
    // set to that server.
    $cfgServerDefault = 1;                            // Default server  (0 = no default server)
    $cfgServer = '';
    unset($cfgServers[0]);$cfgManualBase = "http://www.mysql.com/documentation/mysql/bychapter/";$cfgConfirm = true;
    $cfgPersistentConnections = false;$cfgBorder      = "0";
    $cfgThBgcolor  = "#D3DCE3";
    $cfgBgcolorOne = "#CCCCCC";
    $cfgBgcolorTwo = "#DDDDDD";
    $cfgMaxRows = 30;
    $cfgMaxInputsize = "300px";
    $cfgOrder = "ASC";
    $cfgShowBlob = true;
    $cfgShowSQL = true;//require("english.inc.php3");     //使用英文界面
    require("chinese_gb.inc.php3");   //使用中文簡体界面
    //require("chinese_big5.inc.php3");    //使用中文繁體界面$cfgColumnTypes = array(
       "TINYINT",
       "SMALLINT",
       "MEDIUMINT",
       "INT",
       "BIGINT",
       "FLOAT",
       "DOUBLE",
       "DECIMAL",
       "DATE",
       "DATETIME",
       "TIMESTAMP",
       "TIME",
       "YEAR",
       "CHAR",
       "VARCHAR",
       "TINYBLOB",
       "TINYTEXT",
       "TEXT",
       "BLOB",
       "MEDIUMBLOB",
       "MEDIUMTEXT",
       "LONGBLOB",
       "LONGTEXT",
       "ENUM",
       "SET");$cfgFunctions = array(
       "ASCII",
       "CHAR",
       "SOUNDEX",
       "CURDATE",
       "CURTIME",
       "FROM_DAYS",
       "FROM_UNIXTIME",
       "NOW",
       "PASSWORD",
       "PERIOD_ADD",
       "PERIOD_DIFF",
       "TO_DAYS",
       "USER",
       "WEEKDAY",
       "RAND");$cfgAttributeTypes = array(
       "",
       "BINARY",
       "UNSIGNED",
       "UNSIGNED ZEROFILL");// Setting magic_quotes_runtime - do not change!
    set_magic_quotes_runtime(0);
    ?>
      

  2.   

    当你有多个mysql服务,或按用户名分配权限时,才需要配置其它的内容。否则的话,只要配置第一个就可以了。即第一个$i++后的内容可以不管。
      

  3.   

    <?php
    /* $Id: config.inc.php,v 1.80 2002/04/17 01:48:32 lem9 Exp $ */$cfgPmaAbsoluteUri = 'http://192.168.0.111/mysqladmins/';  //你的phpMyAdmin 运行的 url
    $i = 0;
    // The $cfgServers array starts with $cfgServers[1].  Do not use $cfgServers[0].
    // You can disable a server config entry by setting host to ''.
    $i++;
    $cfgServers[$i]['host']          = 'localhost'; // MySQL hostname(主机名)
    $cfgServers[$i]['port']          = '';          // MySQL port - leave blank for default port
    $cfgServers[$i]['socket']        = '';          // Path to the socket - leave blank for default socket
    $cfgServers[$i]['connect_type']  = 'tcp';       // How to connect to MySQL server ('tcp' or 'socket')
    $cfgServers[$i]['controluser']   = '';          // MySQL control user settings
                                                    // (this user must have read-only
    $cfgServers[$i]['controlpass']   = '';          // access to the "mysql/user"
                                                    // and "mysql/db" tables)
    $cfgServers[$i]['auth_type']     = 'config';    // Authentication method (config, http or cookie based)?
    $cfgServers[$i]['user']          = 'root';//(用户名)      // MySQL user
    $cfgServers[$i]['password']      = '';  //(密码)        // MySQL password (only needed
                                                    // with 'config' auth_type)
    $cfgServers[$i]['only_db']       = '';          // If set to a db-name, only
                                                    // this db is displayed
                                                    // at left frame
                                                    // It may also be an array
                                                    // of db-names
    $cfgServers[$i]['verbose']       = '';          // Verbose name for this host - leave blank to show the hostname
    $cfgServers[$i]['bookdb']    = '';          // Book db - leave blank for no book support
    $cfgServers[$i]['booktable'] = '';          // Book table - leave blank for no book support
    $cfgServers[$i]['relation']      = '';          // table to describe the relation between links (see doc)
                                                    //   - leave blank for no relation-links support
    // 如果你有多个MYSQL服务器,可配置以下(配置同上),否则不需要。$i++;
    $cfgServers[$i]['host']          = '192.168.0.1';
    ................
    以下一般默认都可以了
    ------------------------------------------------------------------------------
    $cfgServerDefault = 1;        // 选择默认服务器(0,为没有默认服务器)/**
     * 语言选择
     */
    $cfgDefaultLang = 'en';//默认为英文,zh为中文。
    // $cfgLang     = 'zh';//不出现语言选择项,直接使用此处语言。
    // Loads language file
    require('./libraries/select_lang.lib.php');
    ............
    ?>
      

  4.   

    必须设定 $cfg['PmaAbsoluteUri'] 在设定档案内!
    页面上显示这个,是红字有什么影响?
      

  5.   

    现在还用phpMyadmin?用EMS MySQL Manager吧。
      

  6.   

    设定$cfg['PmaAbsoluteUri']是只允许从以上URL访问,可以防止别人从外网访问phpmyadmin
      

  7.   

    EMS MySQL Manager??这个工具好像是在本地使用的吧如果想远程也可以吗?