[PHP]CodeIgniter資料庫報錯以及mysql_connect(): No such file or directory報錯

來源:互聯網
上載者:User

標籤:blog   http   os   io   ar   檔案   資料   2014   問題   

首先CodeIgniter串連資料庫連不上,總是顯示串連錯誤,但是又沒有error資訊,難以debug。


解決方案是:在application/config/database.php檔案的最後加上這一段代碼:

echo ‘<pre>‘;print_r($db[‘default‘]);echo ‘</pre>‘;echo ‘Trying to connect to database: ‘ .$db[‘default‘][‘database‘];$dbh=mysql_connect(    $db[‘default‘][‘hostname‘],    $db[‘default‘][‘username‘],    $db[‘default‘][‘password‘])or die(‘Cannot connect to the database because: ‘ . mysql_error());mysql_select_db ($db[‘default‘][‘database‘]);echo ‘<br />   Connected OK:‘  ;die( ‘file: ‘ .__FILE__ . ‘--> Line: ‘ .__LINE__);



顯示報錯,問題是mysql_connect(): No such file or directory報錯。

因為以前也有用過CI都沒有這個錯誤,Google一下發現是因為MySQL是brew安裝的,因為路徑問題導致PHP無法擷取相關資料。


解決方案:

如果你已經有了 /tmp/mysql.sock 但是沒有  /var/mysql/mysql.sock 你應該:


cd /var mkdir mysqlcd mysqlln -s /tmp/mysql.sock mysql.sock





如果你有了 /var/mysql/mysql.sock   但是沒有  mysql.sock name:


cd /tmpln -s /var/mysql/mysql.sock mysql.sock




原回答地址:http://stackoverflow.com/questions/12584762/mysql-connect-no-such-file-or-directory






[PHP]CodeIgniter資料庫報錯以及mysql_connect(): No such file or directory報錯

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.