另外一个手机广电网 跟中毒一样自动下载大量软件删不了。手机点一下就卡出五六条广

CDbException
CDbException
数据库中无法找到 active record class &Question1& 对应的 table &{{question_1}}&.
/mnt/ftp/www/framework/yiilite.php(8289)
8277 class CActiveRecordMetaData
public $tableS
public $relations=array();
public $attributeDefaults=array();
private $_modelClassN
public function __construct($model)
$this-&_modelClassName=get_class($model);
$tableName=$model-&tableName();
if(($table=$model-&getDbConnection()-&getSchema()-&getTable($tableName))===null)
throw new CDbException(Yii::t('yii','The table &{table}& for active record class &{class}& cannot be found in the database.',
array('{class}'=&$this-&_modelClassName,'{table}'=&$tableName)));
if($table-&primaryKey===null)
$table-&primaryKey=$model-&primaryKey();
if(is_string($table-&primaryKey) && isset($table-&columns[$table-&primaryKey]))
$table-&columns[$table-&primaryKey]-&isPrimaryKey=
elseif(is_array($table-&primaryKey))
foreach($table-&primaryKey as $name)
if(isset($table-&columns[$name]))
$table-&columns[$name]-&isPrimaryKey=
Stack Trace
&/mnt/ftp/www/framework/yiilite.php(7392): CActiveRecordMetaData->__construct(Question1)
$className=get_class($this);
if(!array_key_exists($className,self::$_md))
self::$_md[$className]= // preventing recursive invokes of {@link getMetaData()} via {@link __get()}
self::$_md[$className]=new CActiveRecordMetaData($this);
return self::$_md[$className];
public function refreshMetaData()
&/mnt/ftp/www/framework/yiilite.php(7463): CActiveRecord->getMetaData()
return isset($this-&getMetaData()-&relations[$name]) ? $this-&getMetaData()-&relations[$name] :
public function getTableSchema()
return $this-&getMetaData()-&tableS
public function getCommandBuilder()
return $this-&getDbConnection()-&getSchema()-&getCommandBuilder();
&/mnt/ftp/www/framework/yiilite.php(7811): CActiveRecord->getTableSchema()
$this-&applyScopes($criteria);
if(empty($criteria-&with))
$criteria-&limit=1;
$command=$this-&getCommandBuilder()-&createFindCommand($this-&getTableSchema(),$criteria,$this-&getTableAlias());
return $all ? $this-&populateRecords($command-&queryAll(), true, $criteria-&index) : $this-&populateRecord($command-&queryRow());
$finder=$this-&getActiveFinder($criteria-&with);
&/mnt/ftp/www/framework/yiilite.php(7876): CActiveRecord->query(CDbCriteria)
$this-&_alias=$
public function find($condition='',$params=array())
$criteria=$this-&getCommandBuilder()-&createCriteria($condition,$params);
return $this-&query($criteria);
public function findAll($condition='',$params=array())
$criteria=$this-&getCommandBuilder()-&createCriteria($condition,$params);
return $this-&query($criteria,true);
&/mnt/ftp/www/models/question/Question1.php(361): CActiveRecord->find(&id=:id&, array(&:id& =& &113745&))
* 根据问题ID获取问题
public function getQuestionById($id) {
return $this-&find('id=:id', array(':id' =& $id));
* 根据问题ID集合获取问题
&/mnt/ftp/www/models/question/Question1.php(538): Question1->getQuestionById(&113745&)
$count = $this-&count('show_flag = 1');
$questionList = $this-&getQuestionById($qid);
if ($questionList) {
$arr[0] = $questionList-&getAttributes();
$questionCount = QuestionCount::model()-&getQuestionCountByPK($qid);
if ($questionCount) {
$arr[0] = array_merge($questionCount-&getAttributes(), $arr[0]);
&/mnt/ftp/www/dashi/protected/controllers/SiteController.php(302): Question1->getQuestion(&113745&)
public function actionQuestion() {
$this-&layout = 'mobile_transition';
$question_id = Yii::app()-&request-&getParam('id', false);
if ($question_id) {
$questionItem = Question1::model()-&getQuestion($question_id);
$answerList = QuestionAnswer1::model()-&getQuestionAnswer($question_id, 0, 50);
if ($answerList) {
foreach ($answerList as $id =& $value) {
$answerTextItem = QuestionAnswerText1::model()-&getQuestionAnswerText($value['answer_type'], $value['answer_id']);
if ($answerTextItem) {
&/mnt/ftp/www/framework/yiilite.php(4058): SiteController->actionQuestion()
$controller=$this-&getController();
$method=new ReflectionMethod($controller, $methodName);
if($method-&getNumberOfParameters()&0)
return $this-&runWithParamsInternal($controller, $method, $params);
return $controller-&$methodName();
4061 class CWebUser extends CApplicationComponent implements IWebUser
const FLASH_KEY_PREFIX='Yii.CWebUser.flash.';
&/mnt/ftp/www/framework/yiilite.php(3570): CInlineAction->runWithParams(array(&id& =& &113745&))
$priorAction=$this-&_
$this-&_action=$
if($this-&beforeAction($action))
if($action-&runWithParams($this-&getActionParams())===false)
$this-&invalidActionParams($action);
$this-&afterAction($action);
$this-&_action=$priorA
&/mnt/ftp/www/framework/yiilite.php(3555): CController->runAction(CInlineAction)
$this-&missingAction($actionID);
public function runActionWithFilters($action,$filters)
if(empty($filters))
$this-&runAction($action);
$priorAction=$this-&_
$this-&_action=$
CFilterChain::create($this,$action,$filters)-&run();
&/mnt/ftp/www/framework/yiilite.php(3545): CController->runActionWithFilters(CInlineAction, array())
if(($parent=$this-&getModule())===null)
$parent=Yii::app();
if($parent-&beforeControllerAction($this,$action))
$this-&runActionWithFilters($action,$this-&filters());
$parent-&afterControllerAction($this,$action);
$this-&missingAction($actionID);
&/mnt/ftp/www/framework/yiilite.php(1746): CController->run(&question&)
list($controller,$actionID)=$
$oldController=$this-&_
$this-&_controller=$
$controller-&init();
$controller-&run($actionID);
$this-&_controller=$oldC
throw new CHttpException(404,Yii::t('yii','Unable to resolve the request &{route}&.',
array('{route}'=&$route===''?$this-&defaultController:$route)));
&/mnt/ftp/www/framework/yiilite.php(1666): CWebApplication->runController(&site/question/id/113745&)
foreach(array_splice($this-&catchAllRequest,1) as $name=&$value)
$_GET[$name]=$
$route=$this-&getUrlManager()-&parseUrl($this-&getRequest());
$this-&runController($route);
protected function registerCoreComponents()
parent::registerCoreComponents();
$components=array(
&/mnt/ftp/www/framework/yiilite.php(1191): CWebApplication->processRequest()
public function run()
if($this-&hasEventHandler('onBeginRequest'))
$this-&onBeginRequest(new CEvent($this));
register_shutdown_function(array($this,'end'),0,false);
$this-&processRequest();
if($this-&hasEventHandler('onEndRequest'))
$this-&onEndRequest(new CEvent($this));
public function end($status=0,$exit=true)
&/mnt/ftp/www/dashi/index.php(39): CApplication->run()
34 defined('APP') or define('APP', 'dashi');
35 define('BAIDUAD_ONOFF','1');//百度广告开关,1:开,0:关
37 require(dirname(__FILE__) . '/../common/Ossconstant.php');
38 require_once($yii);
39 Yii::createWebApplication($config)-&run();
11:38:42 nginx/1.4.6 /1.1.14

我要回帖

更多关于 广电网 跟中毒一样 的文章

 

随机推荐