/home/mmelb/public_html/web/yii/db/CDbCommand.php(528)
516 return $result; 517 } 518 catch(Exception $e) 519 { 520 if($this->_connection->enableProfiling) 521 Yii::endProfile('system.db.CDbCommand.query('.$this->getText().$par.')','system.db.CDbCommand.query'); 522 $errorInfo = $e instanceof PDOException ? $e->errorInfo : null; 523 $message = $e->getMessage(); 524 Yii::log(Yii::t('yii','CDbCommand::{method}() failed: {error}. The SQL statement executed was: {sql}.', 525 array('{method}'=>$method, '{error}'=>$message, '{sql}'=>$this->getText().$par)),CLogger::LEVEL_ERROR,'system.db.CDbCommand'); 526 if(YII_DEBUG) 527 $message .= '. The SQL statement executed was: '.$this->getText().$par; 528 throw new CDbException(Yii::t('yii','CDbCommand failed to execute the SQL statement: {error}', 529 array('{error}'=>$message)),(int)$e->getCode(),$errorInfo); 530 } 531 } 532 533 /** 534 * Builds a SQL SELECT statement from the given query specification. 535 * @param array $query the query specification in name-value pairs. The following 536 * query options are supported: {@link select}, {@link distinct}, {@link from}, 537 * {@link where}, {@link join}, {@link group}, {@link having}, {@link order}, 538 * {@link limit}, {@link offset} and {@link union}. 539 * @return string the SQL statement 540 * @since 1.1.6
#0 |
+
–
/home/mmelb/public_html/web/yii/db/CDbCommand.php(390): CDbCommand->queryInternal("fetchAll", array(2), array()) 385 * An empty array is returned if the query results in nothing. 386 * @throws CException execution failed 387 */ 388 public function queryAll($fetchAssociative=true,$params=array()) 389 { 390 return $this->queryInternal('fetchAll',$fetchAssociative ? $this->_fetchMode : PDO::FETCH_NUM, $params); 391 } 392 393 /** 394 * Executes the SQL statement and returns the first row of the result. 395 * This is a convenient method of {@link query} when only the first row of data is needed. |
#1 |
+
–
/home/mmelb/public_html/web/yii/db/ar/CActiveFinder.php(818): CDbCommand->queryAll() 813 * @param CJoinQuery $query the query to be executed. 814 */ 815 public function runQuery($query) 816 { 817 $command=$query->createCommand($this->_builder); 818 foreach($command->queryAll() as $row) 819 $this->populateRecord($query,$row); 820 } 821 822 /** 823 * Populates the active records with the query data. |
#2 |
+
–
/home/mmelb/public_html/web/yii/db/ar/CActiveFinder.php(452): CJoinElement->runQuery(CJoinQuery) 447 { 448 $query=new CJoinQuery($this,$criteria); 449 $this->_finder->baseLimited=($criteria->offset>=0 || $criteria->limit>=0); 450 $this->buildQuery($query); 451 $this->_finder->baseLimited=false; 452 $this->runQuery($query); 453 } 454 else if(!$this->_joined && !empty($this->_parent->records)) // not joined before 455 { 456 $query=new CJoinQuery($this->_parent); 457 $this->_joined=true; |
#3 |
+
–
/home/mmelb/public_html/web/yii/db/ar/CActiveFinder.php(70): CJoinElement->find(CDbCriteria) 65 { 66 $this->_joinTree->tableAlias=$criteria->alias; 67 $this->_joinTree->rawTableAlias=$this->_builder->getSchema()->quoteTableName($criteria->alias); 68 } 69 70 $this->_joinTree->find($criteria); 71 $this->_joinTree->afterFind(); 72 73 if($all) 74 { 75 $result = array_values($this->_joinTree->records); |
#4 |
+
–
/home/mmelb/public_html/web/yii/db/ar/CActiveRecord.php(1292): CActiveFinder->query(CDbCriteria, false) 1287 return $all ? $this->populateRecords($command->queryAll(), true, $criteria->index) : $this->populateRecord($command->queryRow()); 1288 } 1289 else 1290 { 1291 $finder=new CActiveFinder($this,$criteria->with); 1292 return $finder->query($criteria,$all); 1293 } 1294 } 1295 1296 /** 1297 * Applies the query scopes to the given criteria. |
#5 |
+
–
/home/mmelb/public_html/web/yii/db/ar/CActiveRecord.php(1392): CActiveRecord->query(CDbCriteria) 1387 */ 1388 public function find($condition='',$params=array()) 1389 { 1390 Yii::trace(get_class($this).'.find()','system.db.ar.CActiveRecord'); 1391 $criteria=$this->getCommandBuilder()->createCriteria($condition,$params); 1392 return $this->query($criteria); 1393 } 1394 1395 /** 1396 * Finds all active records satisfying the specified condition. 1397 * See {@link find()} for detailed explanation about $condition and $params. |
#6 |
+
–
/home/mmelb/public_html/web/protected/controllers/CmsController.php(10): CActiveRecord->find(CDbCriteria) 05 if(Jii::param('id')){ 06 $criteria = new CDbCriteria; 07 $criteria->addCondition('con_id = '.Jii::param('id')); 08 $criteria->addCondition('con_status = '.Content::status()->getItem('publish')->getValue()); 09 $criteria->with = array('content_lang:'.Jii::app()->language,'comment'=>array('condition'=>'com_status = '.Comment::status()->getItem('approved')->getValue())); 10 $view = Content::model()->find($criteria); 11 if(isset($view->con_id)){ 12 $this->render('view',array('view'=>$view)); 13 }else{ 14 $this->redirect(Jii::app()->baseUrl); 15 } |
#7 |
+
–
/home/mmelb/public_html/web/yii/web/actions/CInlineAction.php(50): CmsController->actionView() 45 $controller=$this->getController(); 46 $method=new ReflectionMethod($controller, $methodName); 47 if($method->getNumberOfParameters()>0) 48 return $this->runWithParamsInternal($controller, $method, $params); 49 else 50 return $controller->$methodName(); 51 } 52 53 } |
#8 |
+
–
/home/mmelb/public_html/web/yii/web/CController.php(309): CInlineAction->runWithParams(array("r" => "cms/view", "id" => "-29' union select 1,2,3,4,5,6,7-- -")) 304 { 305 $priorAction=$this->_action; 306 $this->_action=$action; 307 if($this->beforeAction($action)) 308 { 309 if($action->runWithParams($this->getActionParams())===false) 310 $this->invalidActionParams($action); 311 else 312 $this->afterAction($action); 313 } 314 $this->_action=$priorAction; |
#9 |
+
–
/home/mmelb/public_html/web/yii/web/CController.php(287): CController->runAction(CInlineAction) 282 * @see runAction 283 */ 284 public function runActionWithFilters($action,$filters) 285 { 286 if(empty($filters)) 287 $this->runAction($action); 288 else 289 { 290 $priorAction=$this->_action; 291 $this->_action=$action; 292 CFilterChain::create($this,$action,$filters)->run(); |
#10 |
+
–
/home/mmelb/public_html/web/yii/web/CController.php(266): CController->runActionWithFilters(CInlineAction, array()) 261 { 262 if(($parent=$this->getModule())===null) 263 $parent=Yii::app(); 264 if($parent->beforeControllerAction($this,$action)) 265 { 266 $this->runActionWithFilters($action,$this->filters()); 267 $parent->afterControllerAction($this,$action); 268 } 269 } 270 else 271 $this->missingAction($actionID); |
#11 |
+
–
/home/mmelb/public_html/web/yii/web/CWebApplication.php(276): CController->run("view") 271 { 272 list($controller,$actionID)=$ca; 273 $oldController=$this->_controller; 274 $this->_controller=$controller; 275 $controller->init(); 276 $controller->run($actionID); 277 $this->_controller=$oldController; 278 } 279 else 280 throw new CHttpException(404,Yii::t('yii','Unable to resolve the request "{route}".', 281 array('{route}'=>$route===''?$this->defaultController:$route))); |
#12 |
+
–
/home/mmelb/public_html/web/yii/web/CWebApplication.php(135): CWebApplication->runController("cms/view") 130 foreach(array_splice($this->catchAllRequest,1) as $name=>$value) 131 $_GET[$name]=$value; 132 } 133 else 134 $route=$this->getUrlManager()->parseUrl($this->getRequest()); 135 $this->runController($route); 136 } 137 138 /** 139 * Registers the core application components. 140 * This method overrides the parent implementation by registering additional core components. |
#13 |
+
–
/home/mmelb/public_html/web/yii/base/CApplication.php(162): CWebApplication->processRequest() 157 */ 158 public function run() 159 { 160 if($this->hasEventHandler('onBeginRequest')) 161 $this->onBeginRequest(new CEvent($this)); 162 $this->processRequest(); 163 if($this->hasEventHandler('onEndRequest')) 164 $this->onEndRequest(new CEvent($this)); 165 } 166 167 /** |
#14 |
+
–
/home/mmelb/public_html/web/index.php(15): CApplication->run() 10 defined('YII_DEBUG') or define('YII_DEBUG',true); 11 // specify how many levels of call stack should be shown in each log message 12 defined('YII_TRACE_LEVEL') or define('YII_TRACE_LEVEL',3); 13 14 require_once($yii); 15 Yii::createWebApplication($config)->run(); 16 ob_flush(); |