html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" Pin-Up "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"
/home/yogaa/public_html/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(); 537Yii::log(Yii::t('yii','CDbCommand::{method}() failed: {error}. The SQL statement executed was: {sql}.', Pin-Up538 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 543throw Pin-Up 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 Pin-Up from the given query specification.550 * @param array $query the query specification in name-value pairs. The following 551* query options are supported: Pin-Up {@link select}, {@link distinct}, {@link from},552* {@link where}, {@link join}, {@link group}, {@link having}, {@link order}, Pin-Up553* {@link limit}, {@link offset} and {@link Pin-Up union}.554 * @throws CDbException if "from" key is not present in given query parameter 555 * @return string the SQL statement
#0 | + – /home/yogaa/public_html/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 Pin-Up 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/yogaa/public_html/framework/db/ar/CActiveRecord.php(1613): CDbCommand->queryScalar()1608 $builder=$this->getCommandBuilder(); 1609 $criteria=$builder->createCriteria($condition,$params); 1610 $this->applyScopes($criteria); 1611 1612 if(empty($criteria->with)) 1613 return $builder->createCountCommand($this->getTableSchema(),$criteria)->queryScalar(); 1614 else 1615 { 1616 $finder=$this->getActiveFinder($criteria->with); 1617 return $finder->count($criteria); 1618 } |
#2 | + – /home/yogaa/public_html/protected/modules/sorular/controllers/front/DefaultController.php(60): CActiveRecord->count(CDbCriteria)55 $this->breadcrumbs[$this->pageTitle ] = Yii::app()->baseUrl . '/sorular/kategori/'.$cat->slug; 56 $criteria=new CDbCriteria(); 57 $criteria->condition = 'category_id ='.$cat->id; 58 //$criteria->params = array(':language'=>Yii::app()->wbrLanguage->activeLanguage->id); 59 $criteria->order = 't.order desc'; 60 $count=Sorular::model()->count($criteria); 61 $pages=new CPagination($count); 62 $pages->pageSize=999; 63 $pages->applyLimit($criteria); 64 $models=Sorular::model()->findAll($criteria); 65 $others = Sorular::model()->findAll(array('limit'=>10,'order'=> 'id desc')); |
#3 | unknown(0): DefaultController->actionKategori("hizmetler") |
#4 | + – /home/yogaa/public_html/framework/web/actions/CAction.php(109): ReflectionMethod->invokeArgs(DefaultController, array("hizmetler"))104 elseif($param->isDefaultValueAvailable()) 105 $ps[]=$param->getDefaultValue(); 106 else 107 return false; 108 } 109 $method->invokeArgs($object,$ps); 110 return true; 111 } 112 } |
#5 | + – /home/yogaa/public_html/framework/web/actions/CInlineAction.php(47): CAction->runWithParamsInternal(DefaultController, ReflectionMethod, array("slug" => "hizmetler"))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 49 $controller->$methodName(); 50 return true; 51 } 52 } |
#6 | + – /home/yogaa/public_html/framework/web/CController.php(308): CInlineAction->runWithParams(array("slug" => "hizmetler"))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 | + – /home/yogaa/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(); |
#8 | + – /home/yogaa/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); |
#9 | + – /home/yogaa/public_html/framework/web/CWebApplication.php(282): CController->run("kategori")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 286throw new Pin-Up CHttpException(404,Yii::t('yii','Unable to resolve the request "{route}".',287 array('{route}'=>$route===''?$this->defaultController:$route))); |
#10 | + – /home/yogaa/public_html/framework/web/CWebApplication.php(141): CWebApplication->runController("sorular/default/kategori/slug/hizmetler")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. Pin-Up |
#11 | + – /home/yogaa/public_html/framework/base/CApplication.php(185): CWebApplication->processRequest()180 public function run() 181 { 182 if($this->hasEventHandler('onBeginRequest')) 183 $this->onBeginRequest(new CEvent($this)); 184 register_shutdown_function(array($this,'end'),0,false); 185 $this->processRequest(); 186 if($this->hasEventHandler('onEndRequest')) 187 $this->onEndRequest(new CEvent($this)); 188 } 189 190 /** |
#12 | + – /home/yogaa/public_html/protected/components/WebApplicationEndBehavior.php(32): CApplication->run()27 // Attach the changeModulePaths event handler 28 // and raise it. 29 $this->onModuleCreate = array($this, 'changeModulePaths'); 30 $this->onModuleCreate(new CEvent($this->owner)); 31 32 $this->owner->run(); // Run application. 33 } 34 35// This event should be raised Pin-Up when CWebApplication36 // or CWebModule instances are being initialized. 37 public function onModuleCreate($event) |
#13 | + – /home/yogaa/public_html/framework/base/CComponent.php(261): WebApplicationEndBehavior->runEnd("front")256 if($this->_m!==null) 257 { 258 foreach($this->_m as $object) 259 { 260 if($object->getEnabled() && method_exists($object,$name)) 261 return call_user_func_array(array($object,$name),$parameters); 262 } 263 } 264 if(class_exists('Closure', false) && ($this->canGetProperty($name) || property_exists($this, $name)) && $this->$name instanceof Closure) 265 return call_user_func_array($this->$name, $parameters); 266throw new CException(Yii::t('yii','{class} and its behaviors do not have Pin-Up a method or closure named "{name}".', |
#14 | + – /home/yogaa/public_html/index.php(23): CComponent->__call("runEnd", array("front"))18 return parent::init(); 19 } 20 } 21 22 $app = new KraftCMS($config); 23 $app->runEnd('front'); 24 |