/home/dinasppkbwng/public_html/framework/db/CDbCommand.php(358)
346 { 347 if($this->_connection->enableProfiling) 348 Yii::endProfile('system.db.CDbCommand.execute('.$this->getText().$par.')','system.db.CDbCommand.execute'); 349 350 $errorInfo=$e instanceof PDOException ? $e->errorInfo : null; 351 $message=$e->getMessage(); 352 Yii::log(Yii::t('yii','CDbCommand::execute() failed: {error}. The SQL statement executed was: {sql}.', 353 array('{error}'=>$message, '{sql}'=>$this->getText().$par)),CLogger::LEVEL_ERROR,'system.db.CDbCommand'); 354 355 if(YII_DEBUG) 356 $message.='. The SQL statement executed was: '.$this->getText().$par; 357 358 throw new CDbException(Yii::t('yii','CDbCommand failed to execute the SQL statement: {error}', 359 array('{error}'=>$message)),(int)$e->getCode(),$errorInfo); 360 } 361 } 362 363 /** 364 * Executes the SQL statement and returns query result. 365 * This method is for executing an SQL query that returns result set. 366 * @param array $params input parameters (name=>value) for the SQL execution. This is an alternative 367 * to {@link bindParam} and {@link bindValue}. If you have multiple input parameters, passing 368 * them in this way can improve the performance. Note that if you pass parameters in this way, 369 * you cannot bind parameters or values using {@link bindParam} or {@link bindValue}, and vice versa. 370 * Please also note that all values are treated as strings in this case, if you need them to be handled as
| #0 |
+
–
/home/dinasppkbwng/public_html/framework/db/ar/CActiveRecord.php(1748): CDbCommand->execute() 1743 Yii::trace(get_class($this).'.updateByPk()','system.db.ar.CActiveRecord'); 1744 $builder=$this->getCommandBuilder(); 1745 $table=$this->getTableSchema(); 1746 $criteria=$builder->createPkCriteria($table,$pk,$condition,$params); 1747 $command=$builder->createUpdateCommand($table,$attributes,$criteria); 1748 return $command->execute(); 1749 } 1750 1751 /** 1752 * Updates records with the specified condition. 1753 * See {@link find()} for detailed explanation about $condition and $params. |
| #1 |
+
–
/home/dinasppkbwng/public_html/framework/db/ar/CActiveRecord.php(1124): CActiveRecord->updateByPk("170", array("tblwebkontent_id" => "170", "tblwebmenu_id" => "18", "tblwebmodul_id" => null, "tblwebkontent_judul" => "Pencanangan Kampung KB IDAMAN BKBKSPP Kab. Wonogiri", ...)) 1119 if($this->beforeSave()) 1120 { 1121 Yii::trace(get_class($this).'.update()','system.db.ar.CActiveRecord'); 1122 if($this->_pk===null) 1123 $this->_pk=$this->getPrimaryKey(); 1124 $this->updateByPk($this->getOldPrimaryKey(),$this->getAttributes($attributes)); 1125 $this->_pk=$this->getPrimaryKey(); 1126 $this->afterSave(); 1127 return true; 1128 } 1129 else |
| #2 |
+
–
/home/dinasppkbwng/public_html/framework/db/ar/CActiveRecord.php(806): CActiveRecord->update(null) 801 * @return boolean whether the saving succeeds 802 */ 803 public function save($runValidation=true,$attributes=null) 804 { 805 if(!$runValidation || $this->validate($attributes)) 806 return $this->getIsNewRecord() ? $this->insert($attributes) : $this->update($attributes); 807 else 808 return false; 809 } 810 811 /** |
| #3 |
+
–
/home/dinasppkbwng/public_html/protected/views/web/detail.php(7): CActiveRecord->save() 02 <?php if ($jumlah_kontent>0): ?> 03 <?php 04 $id = Yii::app()->request->getParam('id'); 05 $model = WebKontent::model()->findByPk($id); 06 $model->tblwebkontent_klik = $model_kontent['tblwebkontent_klik']+1; 07 $model->save(); 08 ?> 09 <div class="col-sm-16 business wow fadeInDown animated" data-wow-delay="1s" data-wow-offset="50"> 10 <div class="row"> 11 <div class="col-md-16 col-sm-16"> 12 <center><h1><?php echo $model_kontent['tblwebkontent_judul']; ?></h1></center> |
| #4 |
+
–
/home/dinasppkbwng/public_html/framework/web/CBaseController.php(126): require("/home/dinasppkbwng/public_html/protected/views/web/detail.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 } |
| #5 |
+
–
/home/dinasppkbwng/public_html/framework/web/CBaseController.php(95): CBaseController->renderInternal("/home/dinasppkbwng/public_html/protected/views/web/detail.php", array("model_kontent" => WebKontent), 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); |
| #6 |
+
–
/home/dinasppkbwng/public_html/framework/web/CController.php(869): CBaseController->renderFile("/home/dinasppkbwng/public_html/protected/views/web/detail.php", array("model_kontent" => WebKontent), 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 |
| #7 |
+
–
/home/dinasppkbwng/public_html/framework/web/CController.php(782): CController->renderPartial("detail", array("model_kontent" => WebKontent), 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 |
| #8 |
+
–
/home/dinasppkbwng/public_html/protected/controllers/WebController.php(97): CController->render("detail", array("model_kontent" => WebKontent)) 092 093 public function actionDetail() 094 { 095 $id = Yii::app()->request->getParam('id'); 096 $model_kontent = WebKontent::model()->findByPk($id); 097 $this->render('detail', array('model_kontent' =>$model_kontent)); 098 } 099 100 101 102 public function actionAduan() |
| #9 |
+
–
/home/dinasppkbwng/public_html/framework/web/actions/CInlineAction.php(49): WebController->actionDetail() 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 } |
| #10 |
+
–
/home/dinasppkbwng/public_html/framework/web/CController.php(308): CInlineAction->runWithParams(array("dummy" => "pencanangan_kampung_kb_idaman_bkbkspp_kab._wonogiri", "id" => "170")) 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; |
| #11 |
+
–
/home/dinasppkbwng/public_html/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(); |
| #12 |
+
–
/home/dinasppkbwng/public_html/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); |
| #13 |
+
–
/home/dinasppkbwng/public_html/framework/web/CWebApplication.php(282): CController->run("detail") 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))); |
| #14 |
+
–
/home/dinasppkbwng/public_html/framework/web/CWebApplication.php(141): CWebApplication->runController("web/detail/id/170") 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. |
| #15 |
+
–
/home/dinasppkbwng/public_html/framework/base/CApplication.php(180): CWebApplication->processRequest() 175 public function run() 176 { 177 if($this->hasEventHandler('onBeginRequest')) 178 $this->onBeginRequest(new CEvent($this)); 179 register_shutdown_function(array($this,'end'),0,false); 180 $this->processRequest(); 181 if($this->hasEventHandler('onEndRequest')) 182 $this->onEndRequest(new CEvent($this)); 183 } 184 185 /** |
| #16 |
+
–
/home/dinasppkbwng/public_html/index.php(21): CApplication->run() 16 defined('YII_DEBUG') or define('YII_DEBUG',true); 17 // specify how many levels of call stack should be shown in each log message 18 defined('YII_TRACE_LEVEL') or define('YII_TRACE_LEVEL',3); 19 20 require_once($yii); 21 Yii::createWebApplication($config)->run(); |