/var/app/current/framework/db/CDbCommand.php(543)
531 { 532 if($this->_connection->enableProfiling) 533 Yii::endProfile('system.db.CDbCommand.query('.$this->getText().$par.')','system.db.CDbCommand.query'); 534 535 $errorInfo=$e instanceof PDOException ? $e->errorInfo : null; 536 $message=$e->getMessage(); 537 Yii::log(Yii::t('yii','CDbCommand::{method}() failed: {error}. The SQL statement executed was: {sql}.', 538 array('{method}'=>$method, '{error}'=>$message, '{sql}'=>$this->getText().$par)),CLogger::LEVEL_ERROR,'system.db.CDbCommand'); 539 540 if(YII_DEBUG) 541 $message.='. The SQL statement executed was: '.$this->getText().$par; 542 543 throw new CDbException(Yii::t('yii','CDbCommand failed to execute the SQL statement: {error}', 544 array('{error}'=>$message)),(int)$e->getCode(),$errorInfo); 545 } 546 } 547 548 /** 549 * Builds a SQL SELECT statement from the given query specification. 550 * @param array $query the query specification in name-value pairs. The following 551 * query options are supported: {@link select}, {@link distinct}, {@link from}, 552 * {@link where}, {@link join}, {@link group}, {@link having}, {@link order}, 553 * {@link limit}, {@link offset} and {@link union}. 554 * @throws CDbException if "from" key is not present in given query parameter 555 * @return string the SQL statement
#0 |
+
–
/var/app/current/framework/db/CDbCommand.php(396): CDbCommand->queryInternal("fetchAll", array(2), array()) 391 * An empty array is returned if the query results in nothing. 392 * @throws CException execution failed 393 */ 394 public function queryAll($fetchAssociative=true,$params=array()) 395 { 396 return $this->queryInternal('fetchAll',$fetchAssociative ? $this->_fetchMode : PDO::FETCH_NUM, $params); 397 } 398 399 /** 400 * Executes the SQL statement and returns the first row of the result. 401 * This is a convenient method of {@link query} when only the first row of data is needed. |
#1 |
+
–
/var/app/current/protected/api/WwfgApi.php(318): CDbCommand->queryAll() 313 ->from('wwfg_client_pages wp') 314 ->join('profile p', 'p.id = wp.client_pk_id') 315 ->where('wp.country IN ("United States","Canada") AND wp.status = "Published" AND wp.' . $pageName .' = "*" AND wp.country != "" AND wp.map_state != "" AND wp.map_city != ""') 316 ->group('wp.country') 317 ->order('wp.country desc') 318 ->queryAll(); 319 320 $country_list2 = Yii::app()->db->createCommand() 321 ->select('wp.country, "International" as country, count(wp.country) as charter_count') 322 ->from('wwfg_client_pages wp') 323 ->join('profile p', 'p.id = wp.client_pk_id') |
#2 |
+
–
/var/app/current/protected/controllers/SiteController.php(748): WwfgApi->getCountryShortcutList("578727", "index", array("pageName" => "index", "param1" => "favicon.ico", "page_type" => "Home", "site" => LiveSite, ...)) 743 if($this->pageName == 'onthewater'){ 744 //$this->pageName = '_wwfgonthewater'; 745 } 746 else{ 747 748 $shortcut_country_list = $wwfgApi->getCountryShortcutList(Yii::app()->session['site_profile']->id, $this->pageName, $this->params); 749 $this->params['shortcut_country_list'] = $shortcut_country_list; 750 751 $country_list = $wwfgApi->getCountryList(Yii::app()->session['site_profile']->id, $this->pageName, $this->params); 752 $this->params['country_list'] = $country_list; 753 |
#3 |
unknown(0): SiteController->actionIndexParam("favicon.ico")
|
#4 |
+
–
/var/app/current/framework/web/actions/CAction.php(108): ReflectionMethod->invokeArgs(SiteController, array("favicon.ico")) 103 elseif($param->isDefaultValueAvailable()) 104 $ps[]=$param->getDefaultValue(); 105 else 106 return false; 107 } 108 $method->invokeArgs($object,$ps); 109 return true; 110 } 111 } |
#5 |
+
–
/var/app/current/framework/web/actions/CInlineAction.php(47): CAction->runWithParamsInternal(SiteController, ReflectionMethod, array("action" => "img", "param1" => "favicon.ico")) 42 { 43 $methodName='action'.$this->getId(); 44 $controller=$this->getController(); 45 $method=new ReflectionMethod($controller, $methodName); 46 if($method->getNumberOfParameters()>0) 47 return $this->runWithParamsInternal($controller, $method, $params); 48 else 49 return $controller->$methodName(); 50 } 51 52 } |
#6 |
+
–
/var/app/current/framework/web/CController.php(308): CInlineAction->runWithParams(array("action" => "img", "param1" => "favicon.ico")) 303 { 304 $priorAction=$this->_action; 305 $this->_action=$action; 306 if($this->beforeAction($action)) 307 { 308 if($action->runWithParams($this->getActionParams())===false) 309 $this->invalidActionParams($action); 310 else 311 $this->afterAction($action); 312 } 313 $this->_action=$priorAction; |
#7 |
+
–
/var/app/current/framework/web/filters/CFilterChain.php(133): CController->runAction(CInlineAction) 128 $filter=$this->itemAt($this->filterIndex++); 129 Yii::trace('Running filter '.($filter instanceof CInlineFilter ? get_class($this->controller).'.filter'.$filter->name.'()':get_class($filter).'.filter()'),'system.web.filters.CFilterChain'); 130 $filter->filter($this); 131 } 132 else 133 $this->controller->runAction($this->action); 134 } 135 } |
#8 |
+
–
/var/app/current/framework/web/filters/CFilter.php(40): CFilterChain->run() 35 */ 36 public function filter($filterChain) 37 { 38 if($this->preFilter($filterChain)) 39 { 40 $filterChain->run(); 41 $this->postFilter($filterChain); 42 } 43 } 44 45 /** |
#9 |
+
–
/var/app/current/protected/modules/rights/components/RController.php(39): CFilter->filter(CFilterChain) 34 public function filterRights($filterChain) 35 { 36 // Yii::log("***********************************RController::filterRights()",'vardump'); 37 $filter = new RightsFilter; 38 $filter->allowedActions = $this->allowedActions(); 39 $filter->filter($filterChain); 40 } 41 42 /** 43 * @return string the actions that are always allowed separated by commas. 44 */ |
#10 |
+
–
/var/app/current/framework/web/filters/CInlineFilter.php(58): RController->filterRights(CFilterChain) 53 * @param CFilterChain $filterChain the filter chain that the filter is on. 54 */ 55 public function filter($filterChain) 56 { 57 $method='filter'.$this->name; 58 $filterChain->controller->$method($filterChain); 59 } 60 } |
#11 |
+
–
/var/app/current/framework/web/filters/CFilterChain.php(130): CInlineFilter->filter(CFilterChain) 125 { 126 if($this->offsetExists($this->filterIndex)) 127 { 128 $filter=$this->itemAt($this->filterIndex++); 129 Yii::trace('Running filter '.($filter instanceof CInlineFilter ? get_class($this->controller).'.filter'.$filter->name.'()':get_class($filter).'.filter()'),'system.web.filters.CFilterChain'); 130 $filter->filter($this); 131 } 132 else 133 $this->controller->runAction($this->action); 134 } 135 } |
#12 |
+
–
/var/app/current/framework/web/CController.php(291): CFilterChain->run() 286 $this->runAction($action); 287 else 288 { 289 $priorAction=$this->_action; 290 $this->_action=$action; 291 CFilterChain::create($this,$action,$filters)->run(); 292 $this->_action=$priorAction; 293 } 294 } 295 296 /** |
#13 |
+
–
/var/app/current/framework/web/CController.php(265): CController->runActionWithFilters(CInlineAction, array("rights", array(0 => "CHttpCacheFilter + index", "lastModified" => 1453411144))) 260 { 261 if(($parent=$this->getModule())===null) 262 $parent=Yii::app(); 263 if($parent->beforeControllerAction($this,$action)) 264 { 265 $this->runActionWithFilters($action,$this->filters()); 266 $parent->afterControllerAction($this,$action); 267 } 268 } 269 else 270 $this->missingAction($actionID); |
#14 |
+
–
/var/app/current/framework/web/CWebApplication.php(282): CController->run("indexparam") 277 { 278 list($controller,$actionID)=$ca; 279 $oldController=$this->_controller; 280 $this->_controller=$controller; 281 $controller->init(); 282 $controller->run($actionID); 283 $this->_controller=$oldController; 284 } 285 else 286 throw new CHttpException(404,Yii::t('yii','Unable to resolve the request "{route}".', 287 array('{route}'=>$route===''?$this->defaultController:$route))); |
#15 |
+
–
/var/app/current/framework/web/CWebApplication.php(141): CWebApplication->runController("site/indexparam") 136 foreach(array_splice($this->catchAllRequest,1) as $name=>$value) 137 $_GET[$name]=$value; 138 } 139 else 140 $route=$this->getUrlManager()->parseUrl($this->getRequest()); 141 $this->runController($route); 142 } 143 144 /** 145 * Registers the core application components. 146 * This method overrides the parent implementation by registering additional core components. |
#16 |
+
–
/var/app/current/framework/base/CApplication.php(184): CWebApplication->processRequest() 179 public function run() 180 { 181 if($this->hasEventHandler('onBeginRequest')) 182 $this->onBeginRequest(new CEvent($this)); 183 register_shutdown_function(array($this,'end'),0,false); 184 $this->processRequest(); 185 if($this->hasEventHandler('onEndRequest')) 186 $this->onEndRequest(new CEvent($this)); 187 } 188 189 /** |
#17 |
+
–
/var/app/current/index.php(30): CApplication->run() 25 require_once($yii); 26 27 28 require_once(dirname(__FILE__).'/protected/components/XwebApplication.php'); 29 $app = new XwebApplication($config); 30 $app->run(); 31 32 //Yii::createWebApplication($config)->run(); |