/home/venev365/public_html/yii/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 |
+
–
/home/venev365/public_html/yii/framework/db/CDbCommand.php(433): CDbCommand->queryInternal("fetchColumn", 0, array()) 428 * @return mixed the value of the first column in the first row of the query result. False is returned if there is no value. 429 * @throws CException execution failed 430 */ 431 public function queryScalar($params=array()) 432 { 433 $result=$this->queryInternal('fetchColumn',0,$params); 434 if(is_resource($result) && get_resource_type($result)==='stream') 435 return stream_get_contents($result); 436 else 437 return $result; 438 } |
#1 |
+
–
/home/venev365/public_html/yii/framework/db/ar/CActiveFinder.php(764): CDbCommand->queryScalar() 759 else 760 $query->selects=array("COUNT(*)"); 761 762 $query->orders=$query->groups=$query->havings=array(); 763 $command=$query->createCommand($this->_builder); 764 return $command->queryScalar(); 765 } 766 } 767 768 /** 769 * Calls {@link CActiveRecord::afterFind} of all the records. |
#2 |
+
–
/home/venev365/public_html/yii/framework/db/ar/CActiveFinder.php(151): CJoinElement->count(CDbCriteria) 146 147 $alias=$criteria->alias===null ? 't' : $criteria->alias; 148 $this->_joinTree->tableAlias=$alias; 149 $this->_joinTree->rawTableAlias=$this->_builder->getSchema()->quoteTableName($alias); 150 151 $n=$this->_joinTree->count($criteria); 152 $this->destroyJoinTree(); 153 return $n; 154 } 155 156 /** |
#3 |
+
–
/home/venev365/public_html/yii/framework/db/ar/CActiveRecord.php(1610): CActiveFinder->count(CDbCriteria) 1605 if(empty($criteria->with)) 1606 return $builder->createCountCommand($this->getTableSchema(),$criteria)->queryScalar(); 1607 else 1608 { 1609 $finder=$this->getActiveFinder($criteria->with); 1610 return $finder->count($criteria); 1611 } 1612 } 1613 1614 /** 1615 * Finds the number of rows that have the specified attribute values. |
#4 |
+
–
/home/venev365/public_html/yii/framework/web/CActiveDataProvider.php(228): CActiveRecord->count(CDbCriteria) 223 protected function calculateTotalItemCount() 224 { 225 $baseCriteria=$this->model->getDbCriteria(false); 226 if($baseCriteria!==null) 227 $baseCriteria=clone $baseCriteria; 228 $count=$this->model->count($this->getCountCriteria()); 229 $this->model->setDbCriteria($baseCriteria); 230 return $count; 231 } 232 } |
#5 |
+
–
/home/venev365/public_html/yii/framework/web/CDataProvider.php(224): CActiveDataProvider->calculateTotalItemCount() 219 * @return integer total number of possible data items. 220 */ 221 public function getTotalItemCount($refresh=false) 222 { 223 if($this->_totalItemCount===null || $refresh) 224 $this->_totalItemCount=$this->calculateTotalItemCount(); 225 return $this->_totalItemCount; 226 } 227 228 /** 229 * Sets the total number of data items. |
#6 |
+
–
/home/venev365/public_html/protected/views/site/viewMapa.php(11): CDataProvider->getTotalItemCount() 06 07 $location = Paises::model()->getLocation(); 08 $modelConfiguracion = Configuracion::model()->find("red_social_id = 1"); 09 $config_color_barra_superior = (empty($modelConfiguracion->config_color_barra_superior)) ? "":$modelConfiguracion->config_color_barra_superior; 10 11 if($model->getTotalItemCount() > 0) { 12 13 ?> 14 15 <?php 16 |
#7 |
+
–
/home/venev365/public_html/yii/framework/web/CBaseController.php(126): require("/home/venev365/public_html/protected/views/site/viewMapa.php") 121 $data=$_data_; 122 if($_return_) 123 { 124 ob_start(); 125 ob_implicit_flush(false); 126 require($_viewFile_); 127 return ob_get_clean(); 128 } 129 else 130 require($_viewFile_); 131 } |
#8 |
+
–
/home/venev365/public_html/yii/framework/web/CBaseController.php(95): CBaseController->renderInternal("/home/venev365/public_html/protected/views/site/viewMapa.php", array("model" => CActiveDataProvider), true) 090 { 091 $widgetCount=count($this->_widgetStack); 092 if(($renderer=Yii::app()->getViewRenderer())!==null && $renderer->fileExtension==='.'.CFileHelper::getExtension($viewFile)) 093 $content=$renderer->renderFile($this,$viewFile,$data,$return); 094 else 095 $content=$this->renderInternal($viewFile,$data,$return); 096 if(count($this->_widgetStack)===$widgetCount) 097 return $content; 098 else 099 { 100 $widget=end($this->_widgetStack); |
#9 |
+
–
/home/venev365/public_html/yii/framework/web/CController.php(869): CBaseController->renderFile("/home/venev365/public_html/protected/views/site/viewMapa.php", array("model" => CActiveDataProvider), true) 864 */ 865 public function renderPartial($view,$data=null,$return=false,$processOutput=false) 866 { 867 if(($viewFile=$this->getViewFile($view))!==false) 868 { 869 $output=$this->renderFile($viewFile,$data,true); 870 if($processOutput) 871 $output=$this->processOutput($output); 872 if($return) 873 return $output; 874 else |
#10 |
+
–
/home/venev365/public_html/protected/views/site/viewClientes.php(23): CController->renderPartial("viewMapa", array("model" => CActiveDataProvider)) 18 19 <div> </div> 20 <?php include_once '_viewEstados.php'; ?> 21 22 <div> </div> 23 <?php $this->renderPartial("viewMapa",array("model"=>$model->searchClientes(array("condition"=>$condition), 500))); ?> 24 <div> </div> 25 26 <div class="row"> 27 28 <?php |
#11 |
+
–
/home/venev365/public_html/yii/framework/web/CBaseController.php(126): require("/home/venev365/public_html/protected/views/site/viewClientes.php") 121 $data=$_data_; 122 if($_return_) 123 { 124 ob_start(); 125 ob_implicit_flush(false); 126 require($_viewFile_); 127 return ob_get_clean(); 128 } 129 else 130 require($_viewFile_); 131 } |
#12 |
+
–
/home/venev365/public_html/yii/framework/web/CBaseController.php(95): CBaseController->renderInternal("/home/venev365/public_html/protected/views/site/viewClientes.php", array("categoria" => "43", "condition" => " cliente_subtipo_id = 15 AND pais_abreviacion LIKE 'cw' AND c..."), true) 090 { 091 $widgetCount=count($this->_widgetStack); 092 if(($renderer=Yii::app()->getViewRenderer())!==null && $renderer->fileExtension==='.'.CFileHelper::getExtension($viewFile)) 093 $content=$renderer->renderFile($this,$viewFile,$data,$return); 094 else 095 $content=$this->renderInternal($viewFile,$data,$return); 096 if(count($this->_widgetStack)===$widgetCount) 097 return $content; 098 else 099 { 100 $widget=end($this->_widgetStack); |
#13 |
+
–
/home/venev365/public_html/yii/framework/web/CController.php(869): CBaseController->renderFile("/home/venev365/public_html/protected/views/site/viewClientes.php", array("categoria" => "43", "condition" => " cliente_subtipo_id = 15 AND pais_abreviacion LIKE 'cw' AND c..."), true) 864 */ 865 public function renderPartial($view,$data=null,$return=false,$processOutput=false) 866 { 867 if(($viewFile=$this->getViewFile($view))!==false) 868 { 869 $output=$this->renderFile($viewFile,$data,true); 870 if($processOutput) 871 $output=$this->processOutput($output); 872 if($return) 873 return $output; 874 else |
#14 |
+
–
/home/venev365/public_html/yii/framework/web/CController.php(782): CController->renderPartial("viewClientes", array("categoria" => "43", "condition" => " cliente_subtipo_id = 15 AND pais_abreviacion LIKE 'cw' AND c..."), true) 777 */ 778 public function render($view,$data=null,$return=false) 779 { 780 if($this->beforeRender($view)) 781 { 782 $output=$this->renderPartial($view,$data,true); 783 if(($layoutFile=$this->getLayoutFile($this->layout))!==false) 784 $output=$this->renderFile($layoutFile,array('content'=>$output),true); 785 786 $this->afterRender($view,$output); 787 |
#15 |
+
–
/home/venev365/public_html/protected/controllers/SiteController.php(2197): CController->render("viewClientes", array("categoria" => "43", "condition" => " cliente_subtipo_id = 15 AND pais_abreviacion LIKE 'cw' AND c...")) 2192 // solo mostrar los clientes activos 2193 $sql .= " AND cliente_activo = 1 "; 2194 2195 //var_dump($sql); 2196 2197 $this->render("viewClientes",array( 2198 "categoria"=>$categoria, 2199 "condition"=>$sql 2200 )); 2201 2202 die(); |
#16 |
+
–
/home/venev365/public_html/yii/framework/web/actions/CInlineAction.php(49): SiteController->actionUrlContenido() 44 $controller=$this->getController(); 45 $method=new ReflectionMethod($controller, $methodName); 46 if($method->getNumberOfParameters()>0) 47 return $this->runWithParamsInternal($controller, $method, $params); 48 49 $controller->$methodName(); 50 return true; 51 } 52 } |
#17 |
+
–
/home/venev365/public_html/yii/framework/web/CController.php(308): CInlineAction->runWithParams(array("iscat" => "1", "cat" => "43", "subcat" => "15", "country" => "cw", ...)) 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; |
#18 |
+
–
/home/venev365/public_html/yii/framework/web/CController.php(286): CController->runAction(CInlineAction) 281 * @see runAction 282 */ 283 public function runActionWithFilters($action,$filters) 284 { 285 if(empty($filters)) 286 $this->runAction($action); 287 else 288 { 289 $priorAction=$this->_action; 290 $this->_action=$action; 291 CFilterChain::create($this,$action,$filters)->run(); |
#19 |
+
–
/home/venev365/public_html/yii/framework/web/CController.php(265): CController->runActionWithFilters(CInlineAction, array()) 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); |
#20 |
+
–
/home/venev365/public_html/yii/framework/web/CWebApplication.php(282): CController->run("urlContenido") 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))); |
#21 |
+
–
/home/venev365/public_html/yii/framework/web/CWebApplication.php(141): CWebApplication->runController("site/urlContenido") 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. |
#22 |
+
–
/home/venev365/public_html/yii/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 /** |
#23 |
+
–
/home/venev365/public_html/index.php(13): CApplication->run() 08 defined('YII_DEBUG') or define('YII_DEBUG',true); 09 // specify how many levels of call stack should be shown in each log message 10 defined('YII_TRACE_LEVEL') or define('YII_TRACE_LEVEL',3); 11 12 require_once($yii); 13 Yii::createWebApplication($config)->run(); |