0
我運行WAMP,並嘗試連接到數據庫,但我得到了笨3錯誤連接到數據庫
Unable to connect to your database server using the provided settings.
的FAQ /我做了什麼:
- 我自動加載在配置數據庫庫.PHP
- 我的phpMyAdmin的沒有任何的用戶名,並通過設置
- 這是database.php中
$db['default'] = array( 'dsn' => '', 'hostname' => 'localhost', 'username' => '', 'password' => '', 'database' => 'ciintro', 'dbdriver' => 'mysqli', 'dbprefix' => '', 'pconnect' => TRUE, 'db_debug' => TRUE, 'cache_on' => FALSE, 'cachedir' => '', 'char_set' => 'utf8', 'dbcollat' => 'utf8_general_ci', 'swap_pre' => '', 'autoinit' => TRUE, 'encrypt' => FALSE, 'compress' => FALSE, 'stricton' => FALSE, 'failover' => array(), 'save_queries' => TRUE );
嘗試使用簡單index.php中的mysql_connect(),看看是否可行 – 2014-11-21 03:14:50
我解決了這個問題,用戶名應該等於'root'。 – 2014-11-21 03:25:09