关于phpMyAdmin的求助。

关于phpMyAdmin的求助。

我的php和Mysql都是好的。                                                      
: 但是启动http://...../phpMyAdmin/index.php的时候                              
: 报错:                                                                        
: Fatal error: Call to undefined function: mysql_connect() in                  
:  /home/hy/public_html/phpMyAdmin111/lib.inc.php3 on line 119                  
: 请问错在什么地方                                                              
: 换了一个phpMyAdmin还是不行,                                                  
: 报错:                                                                        
: cannot load MySQL extension,                                                  
: please check PHP Configuration.                                               
: ?                                                                           
: ...................      
我也一样,help me!!!      
我也不好用!

web提示:
cannot load MySQL extension,
please check PHP Configuration.
----------------------------------------------
config.inc.php文件怎么配才对?
------------------------------------------
*/
$cfgPmaAbsoluteUri = 'http://192.168.0.3/admin/php/';


/**
* Server(s) configuration
*/
$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']          = '192.168.0.3'; // MySQL hostname
$cfgServers[$i]['port']          = '3306';          // 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']   = 'root';          // MySQL control user settings
                                                // (this user must have read-only
$cfgServers[$i]['controlpass']   = '123456';          // access to the "mysql/user"
                                                // and "mysql/db" tables)
$cfgServers[$i]['auth_type']     = 'true';    // Authentication method (config, http or cookie based)?
$cfgServers[$i]['user']          = 'root';      // MySQL user
$cfgServers[$i]['password']      = '123456';          // MySQL password (only needed
                                                // with 'config' auth_type)
$cfgServers[$i]['only_db']       = '';      
楼上几位是否是解压后就直接使用的?      
错误的意思是说你的php没有加载mysql模块
找到php.ini文件,然后找到
;extension=mysql.so
把前面的;去掉
然后再装mysql.so
你要找到php-mysql这样的文件(根据的你的php版本号,在网上下,去天网)
装好后就好用了,对了,最好还要重起一下。      
也许你没有装php-mysql