/var/www/vhosts/znuweb/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/www/vhosts/znuweb/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/www/vhosts/znuweb/protected/views/layouts/theme_new_dep_eng/main_fa.php(755): CDbCommand->queryAll() 750 751 <?php 752 753 $sql="SELECT * from news_content where jid=$id2 and storyimage!='NULL' and storyimage!='' and storyimageVBig!='0' AND topic!=78 and topic!=75 and topic!=80 and actived='1' order by timeEn DESC limit 1"; 754 $command=Yii::app()->db->createCommand($sql); 755 $result=$command->queryAll(); 756 757 758 $n1=$n2=$n3=0; 759 $num=0; 760 $i=1; |
#2 |
+
–
/var/www/vhosts/znuweb/framework/web/CBaseController.php(126): require("/var/www/vhosts/znuweb/protected/views/layouts/theme_new_dep_eng...") 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 } |
#3 |
+
–
/var/www/vhosts/znuweb/framework/web/CBaseController.php(95): CBaseController->renderInternal("/var/www/vhosts/znuweb/protected/views//layouts/theme_new_dep_en...", array("content" => ""), 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); |
#4 |
+
–
/var/www/vhosts/znuweb/framework/web/CController.php(827): CBaseController->renderFile("/var/www/vhosts/znuweb/protected/views//layouts/theme_new_dep_en...", array("content" => ""), true) 822 { 823 if($this->beforeRender($view)) 824 { 825 $output=$this->renderPartial($view,$data,true); 826 if(($layoutFile=$this->getLayoutFile($this->layout))!==false) 827 $output=$this->renderFile($layoutFile,array('content'=>$output),true); 828 829 $this->afterRender($view,$output); 830 831 $output=$this->processOutput($output); 832 |
#5 |
+
–
/var/www/vhosts/znuweb/protected/controllers/PageController.php(204): CController->render("index", array("model" => Journals)) 199 //$this->id2 = $id2; 200 //$this->sub = $sub; 201 //MMMMMMMMmm 202 $this->render('index', array( 203 'model' => Journals::model()->findByAttributes(array('url'=>$jrnl)) 204 )); 205 } 206 207 208 ///////////////////////////////////////////////////////////////////////////////////////////////////////// 209 public function actionTel($id='NULL',$lang='fa')//$id=$url=>jrnl |
#6 |
unknown(0): PageController->actionIndex("fa")
|
#7 |
+
–
/var/www/vhosts/znuweb/framework/web/actions/CAction.php(108): ReflectionMethod->invokeArgs(PageController, array("fa")) 103 elseif($param->isDefaultValueAvailable()) 104 $ps[]=$param->getDefaultValue(); 105 else 106 return false; 107 } 108 $method->invokeArgs($object,$ps); 109 return true; 110 } 111 } |
#8 |
+
–
/var/www/vhosts/znuweb/framework/web/actions/CInlineAction.php(47): CAction->runWithParamsInternal(PageController, ReflectionMethod, array("controller" => "nursery-unit")) 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 } |
#9 |
+
–
/var/www/vhosts/znuweb/framework/web/CController.php(351): CInlineAction->runWithParams(array("controller" => "nursery-unit")) 346 { 347 $priorAction=$this->_action; 348 $this->_action=$action; 349 if($this->beforeAction($action)) 350 { 351 if($action->runWithParams($this->getActionParams())===false) 352 $this->invalidActionParams($action); 353 else 354 $this->afterAction($action); 355 } 356 $this->_action=$priorAction; |
#10 |
+
–
/var/www/vhosts/znuweb/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 } |
#11 |
+
–
/var/www/vhosts/znuweb/framework/web/CController.php(175): CFilterChain->run() 170 } 171 else{ 172 Yii::app()->request->cookies['lang'] = new CHttpCookie('lang','fa'); 173 $this->layout = '//layouts/main_fa'; 174 } 175 $filterChain->run(); 176 } 177 178 public function filterSetLanguage2($filterChain) { 179 if(isset(Yii::app()->request->cookies['lang'])) 180 { |
#12 |
+
–
/var/www/vhosts/znuweb/framework/web/filters/CInlineFilter.php(58): CController->filterSetLanguage(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 } |
#13 |
+
–
/var/www/vhosts/znuweb/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 } |
#14 |
+
–
/var/www/vhosts/znuweb/framework/web/CController.php(334): CFilterChain->run() 329 $this->runAction($action); 330 else 331 { 332 $priorAction=$this->_action; 333 $this->_action=$action; 334 CFilterChain::create($this,$action,$filters)->run(); 335 $this->_action=$priorAction; 336 } 337 } 338 339 /** |
#15 |
+
–
/var/www/vhosts/znuweb/framework/web/CController.php(308): CController->runActionWithFilters(CInlineAction, array("setLanguage")) 303 { 304 if(($parent=$this->getModule())===null) 305 $parent=Yii::app(); 306 if($parent->beforeControllerAction($this,$action)) 307 { 308 $this->runActionWithFilters($action,$this->filters()); 309 $parent->afterControllerAction($this,$action); 310 } 311 } 312 else 313 $this->missingAction($actionID); |
#16 |
+
–
/var/www/vhosts/znuweb/framework/web/CWebApplication.php(282): CController->run("index") 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))); |
#17 |
+
–
/var/www/vhosts/znuweb/framework/web/CWebApplication.php(141): CWebApplication->runController("page/index") 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. |
#18 |
+
–
/var/www/vhosts/znuweb/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 /** |
#19 |
+
–
/var/www/vhosts/znuweb/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(); |