首頁 > 後端開發 > php教程 > 请教:初次安装typecho,出现Error establishing a database connection,是怎么回事?

请教:初次安装typecho,出现Error establishing a database connection,是怎么回事?

WBOY
發布: 2016-06-06 20:30:28
原創
4283 人瀏覽過

请教:初次安装typecho,出现Error establishing a database connection,是怎么回事?

如图所示
"Error establishing a database connection"报错的意思是"建立一个数据库连接错误"
请教下该怎么解决

回复内容:

请教:初次安装typecho,出现Error establishing a database connection,是怎么回事?

如图所示
"Error establishing a database connection"报错的意思是"建立一个数据库连接错误"
请教下该怎么解决

找了下代码,估计是你用户名、密码或者数据库名没有设置准确

<code>public function connect(Typecho_Config $config)
{
    if ($this->_dbLink = @mysql_connect($config->host . (empty($config->port) ? '' : ':' . $config->port),
    $config->user, $config->password, true)) {
        if (@mysql_select_db($config->database, $this->_dbLink)) {
            if ($config->charset) {
                mysql_query("SET NAMES '{$config->charset}'", $this->_dbLink);
            }
            return $this->_dbLink;
        }
    }

    /** 数据库异常 */
    throw new Typecho_Db_Adapter_Exception(@mysql_error($this->_dbLink));
}
</code>
登入後複製

来自 www.typechodev.com

@TypechoDev 请教:初次安装typecho,出现Error establishing a database connection,是怎么回事?

犯了一个错误,确实是我的用户名、密码或者数据库名没有设置准确,现在可以安装了,谢谢你

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板