I am getting this error while accessing the survey and admin. The credentials in the config file are correct. The prefix is correct and the table exists in the database.
For some reasons, it keeps throwing this error.
The table "{{settings_global}}" for active record class "SettingGlobal" cannot be found in the database.
23782379/**
2380 * Constructor.
2381 * @param CActiveRecord $model the model instance
2382 * @throws CDbException if specified table for active record class cannot be found in the database
2383 */2384publicfunction __construct($model)2385{2386$this->_modelClassName=get_class($model);23872388$tableName=$model->tableName();2389if(($table=$model->getDbConnection()->getSchema()->getTable($tableName))===null)2390thrownew CDbException(Yii::t('yii','The table "{table}" for active record class "{class}" cannot be found in the database.',2391array('{class}'=>$this->_modelClassName,'{table}'=>$tableName)));2392