CHttpException

Sua requisição é inválida.

/var/www/limesurvey/framework/web/CController.php(337)

325         return $_GET;
326     }
327 
328     /**
329      * This method is invoked when the request parameters do not satisfy the requirement of the specified action.
330      * The default implementation will throw a 400 HTTP exception.
331      * @param CAction $action the action being executed
332      * @since 1.1.7
333      * @throws CHttpException
334      */
335     public function invalidActionParams($action)
336     {
337         throw new CHttpException(400,Yii::t('yii','Your request is invalid.'));
338     }
339 
340     /**
341      * Postprocesses the output generated by {@link render()}.
342      * This method is invoked at the end of {@link render()} and {@link renderText()}.
343      * If there are registered client scripts, this method will insert them into the output
344      * at appropriate places. If there are dynamic contents, they will also be inserted.
345      * This method may also save the persistent page states in hidden fields of
346      * stateful forms in the page.
347      * @param string $output the output generated by the current action
348      * @return string the output that has been processed.
349      */

Stack Trace

#3
+
 /var/www/limesurvey/application/controllers/AdminController.php(158): CController->run("questions")
153                     $this->redirect(array('/admin/authentication/sa/login'));
154                 }
155             }
156         }
157 
158         return parent::run($action);
159     }
160 
161     /**
162      * Routes all the actions to their respective places
163      *
#7
+
 /var/www/limesurvey/index.php(194): CApplication->run()
189 require_once APPPATH . 'core/LSYii_Application' . EXT;
190 
191 $config = require_once(APPPATH . 'config/internal' . EXT);
192 
193 Yii::$enableIncludePath = false;
194 Yii::createApplication('LSYii_Application', $config)->run();
195 
196 /* End of file index.php */
197 /* Location: ./index.php */
2019-07-02 10:33:20 Apache Yii Framework/1.1.21