Fatal error: Cannot declare self-referencing constant ""
本帖最後由 ayayad 於 2013-11-25 10:19:51 編輯
Fatal error: Cannot declare self-referencing constant ""
這是yii架構的一個報錯
報錯檔案:framework\db\CDbCommand.php
報錯內容:
public function prepare()
{
if($this->_statement==null)
{
try
{
$this->_statement=$this->getConnection()->getPdoInstance()->prepare($this->getText());/**************就是這行報錯******************/
$this->_paramLog=array();
}
catch(Exception $e)
{
Yii::log('Error in preparing SQL: '.$this->getText(),CLogger::LEVEL_ERROR,'system.db.CDbCommand');
$errorInfo = $e instanceof PDOException ? $e->errorInfo : null;
throw new CDbException(Yii::t('yii','CDbCommand failed to prepare the SQL statement: {error}',
array('{error}'=>$e->getMessage())),(int)$e->getCode(),$errorInfo);
}
}
}
情況描述:一般不會出現這個報錯,就是不知道怎麼網站運行一段時間(大概3-4天)後就報這錯,只有重啟apache後才會恢複,但一段時間後仍會出現。
求指教,謝謝!
------解決方案--------------------
不是yii的原生錯誤,我不知道
不過在網上只搜到你的這個與 yii 的相關問題,別人都沒有就你有....
你給出的出錯行需要跟蹤進去才可能發現問題
既然是在訪問頻繁的時候才會出現,那可能與系統資源不足有關係了