/home/suryasukses/yii/framework/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/suryasukses/yii/framework/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/suryasukses/yii/framework/db/ar/CActiveFinder.php(784): CDbCommand->queryAll() 779 * @param CJoinQuery $query the query to be executed. 780 */ 781 public function runQuery($query) 782 { 783 $command=$query->createCommand($this->_builder); 784 foreach($command->queryAll() as $row) 785 $this->populateRecord($query,$row); 786 } 787 788 /** 789 * Populates the active records with the query data. |
#2 |
+
–
/home/suryasukses/yii/framework/db/ar/CActiveFinder.php(422): CJoinElement->runQuery(CJoinQuery) 417 { 418 $query=new CJoinQuery($this,$criteria); 419 $this->_finder->baseLimited=($criteria->offset>=0 || $criteria->limit>=0); 420 $this->buildQuery($query); 421 $this->_finder->baseLimited=false; 422 $this->runQuery($query); 423 } 424 else if(!$this->_joined && !empty($this->_parent->records)) // not joined before 425 { 426 $query=new CJoinQuery($this->_parent); 427 $this->_joined=true; |
#3 |
+
–
/home/suryasukses/yii/framework/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/suryasukses/yii/framework/db/ar/CActiveRecord.php(1296): CActiveFinder->query(CDbCriteria, true) 1291 return $all ? $this->populateRecords($command->queryAll(), true, $criteria->index) : $this->populateRecord($command->queryRow()); 1292 } 1293 else 1294 { 1295 $finder=new CActiveFinder($this,$criteria->with); 1296 return $finder->query($criteria,$all); 1297 } 1298 } 1299 1300 /** 1301 * Applies the query scopes to the given criteria. |
#5 |
+
–
/home/suryasukses/yii/framework/db/ar/CActiveRecord.php(1410): CActiveRecord->query(CDbCriteria, true) 1405 */ 1406 public function findAll($condition='',$params=array()) 1407 { 1408 Yii::trace(get_class($this).'.findAll()','system.db.ar.CActiveRecord'); 1409 $criteria=$this->getCommandBuilder()->createCriteria($condition,$params); 1410 return $this->query($criteria,true); 1411 } 1412 1413 /** 1414 * Finds a single active record with the specified primary key. 1415 * See {@link find()} for detailed explanation about $condition and $params. |
#6 |
+
–
/home/suryasukses/public_html/amariupvc.com/protected/views/layouts/column1.php(14): CActiveRecord->findAll(CDbCriteria) 09 $criteria->addCondition('description.language_id = :language_id'); 10 $criteria->addCondition('active = 1'); 11 $criteria->params[':language_id'] = $this->languageID; 12 $criteria->group = 't.id'; 13 $criteria->order = 't.sort ASC'; 14 $slide = Slide::model()->with(array('description'))->findAll($criteria); 15 ?> 16 <div id="gallery-1" class="slider-container preserve-3d"> 17 <div class="flexslider preserve-3d"> 18 <ul class="slides"> 19 <?php foreach ($slide as $key => $value): ?> |
#7 |
+
–
/home/suryasukses/yii/framework/web/CBaseController.php(127): require("/home/suryasukses/public_html/amariupvc.com/protected/views/layo...") 122 $data=$_data_; 123 if($_return_) 124 { 125 ob_start(); 126 ob_implicit_flush(false); 127 require($_viewFile_); 128 return ob_get_clean(); 129 } 130 else 131 require($_viewFile_); 132 } |
#8 |
+
–
/home/suryasukses/yii/framework/web/CBaseController.php(96): CBaseController->renderInternal("/home/suryasukses/public_html/amariupvc.com/protected/views//lay...", array("content" => "<!-- Modal -->
<div class="modal fade" id="exampleModal" tabinde..."), true) 091 { 092 $widgetCount=count($this->_widgetStack); 093 if(($renderer=Yii::app()->getViewRenderer())!==null && $renderer->fileExtension==='.'.CFileHelper::getExtension($viewFile)) 094 $content=$renderer->renderFile($this,$viewFile,$data,$return); 095 else 096 $content=$this->renderInternal($viewFile,$data,$return); 097 if(count($this->_widgetStack)===$widgetCount) 098 return $content; 099 else 100 { 101 $widget=end($this->_widgetStack); |
#9 |
+
–
/home/suryasukses/yii/framework/web/CController.php(785): CBaseController->renderFile("/home/suryasukses/public_html/amariupvc.com/protected/views//lay...", array("content" => "<!-- Modal -->
<div class="modal fade" id="exampleModal" tabinde..."), true) 780 { 781 if($this->beforeRender($view)) 782 { 783 $output=$this->renderPartial($view,$data,true); 784 if(($layoutFile=$this->getLayoutFile($this->layout))!==false) 785 $output=$this->renderFile($layoutFile,array('content'=>$output),true); 786 787 $this->afterRender($view,$output); 788 789 $output=$this->processOutput($output); 790 |
#10 |
+
–
/home/suryasukses/public_html/amariupvc.com/protected/controllers/HomeController.php(82): CController->render("index", array()) 77 $this->metaDesc = ($this->setting['home_meta_description'] != '')? $this->setting['home_meta_description'] : $this->metaDesc; 78 79 $this->layout='//layouts/column1'; 80 $this->render('index', array( 81 // 'product'=>$product, 82 )); 83 } 84 85 public function actionAbout() 86 { 87 $this->layout='//layouts/column2'; |
#11 |
+
–
/home/suryasukses/yii/framework/web/actions/CInlineAction.php(50): HomeController->actionIndex() 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 } |
#12 |
+
–
/home/suryasukses/yii/framework/web/CController.php(309): CInlineAction->runWithParams(array()) 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; |
#13 |
+
–
/home/suryasukses/yii/framework/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(); |
#14 |
+
–
/home/suryasukses/yii/framework/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); |
#15 |
+
–
/home/suryasukses/yii/framework/web/CWebApplication.php(283): CController->run("index") 278 { 279 list($controller,$actionID)=$ca; 280 $oldController=$this->_controller; 281 $this->_controller=$controller; 282 $controller->init(); 283 $controller->run($actionID); 284 $this->_controller=$oldController; 285 } 286 else 287 throw new CHttpException(404,Yii::t('yii','Unable to resolve the request "{route}".', 288 array('{route}'=>$route===''?$this->defaultController:$route))); |
#16 |
+
–
/home/suryasukses/yii/framework/web/CWebApplication.php(142): CWebApplication->runController("home/index") 137 foreach(array_splice($this->catchAllRequest,1) as $name=>$value) 138 $_GET[$name]=$value; 139 } 140 else 141 $route=$this->getUrlManager()->parseUrl($this->getRequest()); 142 $this->runController($route); 143 } 144 145 /** 146 * Registers the core application components. 147 * This method overrides the parent implementation by registering additional core components. |
#17 |
+
–
/home/suryasukses/yii/framework/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 /** |
#18 |
+
–
/home/suryasukses/public_html/amariupvc.com/index.php(37): CApplication->run() 32 // specify how many levels of call stack should be shown in each log message 33 defined('YII_TRACE_LEVEL') or define('YII_TRACE_LEVEL',3); 34 error_reporting(E_ALL ^ E_NOTICE); 35 date_default_timezone_set('Asia/Jakarta'); 36 require_once($yii); 37 Yii::createWebApplication($config)->run(); 38 39 $end_timeeeee = microtime(TRUE); 40 41 // echo $end_timeeeee - $start_timeeeee; 42 // echo "<br>"; |