#0 |
+
–
/home/admin5/web/pizzadoma.ru/public_html/info/yii/framework/db/CDbConnection.php(330): CDbConnection-> open()
325 public function setActive($value)
326 {
327 if($value!=$this->_active)
328 {
329 if($value)
330 $this->open();
331 else
332 $this->close();
333 }
334 }
335
|
#1 |
+
–
/home/admin5/web/pizzadoma.ru/public_html/info/yii/framework/db/CDbConnection.php(308): CDbConnection-> setActive(true)
303 */
304 public function init()
305 {
306 parent::init();
307 if($this->autoConnect)
308 $this->setActive(true);
309 }
310
311 /**
312 * Returns whether the DB connection is established.
313 * @return boolean whether the DB connection is established
|
#2 |
+
–
/home/admin5/web/pizzadoma.ru/public_html/info/yii/framework/base/CModule.php(387): CDbConnection-> init()
382 if(!isset($config['enabled']) || $config['enabled'])
383 {
384 Yii::trace("Loading \"$id\" application component",'system.CModule');
385 unset($config['enabled']);
386 $component=Yii::createComponent($config);
387 $component->init();
388 return $this->_components[$id]=$component;
389 }
390 }
391 }
392
|
#3 |
+
–
/home/admin5/web/pizzadoma.ru/public_html/info/yii/framework/base/CApplication.php(438): CModule-> getComponent("db")
433 * Returns the database connection component.
434 * @return CDbConnection the database connection
435 */
436 public function getDb()
437 {
438 return $this->getComponent('db');
439 }
440
441 /**
442 * Returns the error handler component.
443 * @return CErrorHandler the error handler application component.
|
#4 |
+
–
/home/admin5/web/pizzadoma.ru/public_html/info/yii/framework/db/ar/CActiveRecord.php(623): CApplication-> getDb()
618 {
619 if(self::$db!==null)
620 return self::$db;
621 else
622 {
623 self::$db=Yii::app()->getDb();
624 if(self::$db instanceof CDbConnection)
625 return self::$db;
626 else
627 throw new CDbException(Yii::t('yii','Active Record requires a "db" CDbConnection application component.'));
628 }
|
#5 |
+
–
/home/admin5/web/pizzadoma.ru/public_html/info/yii/framework/db/ar/CActiveRecord.php(2309): CActiveRecord-> getDbConnection()
2304 public function __construct($model)
2305 {
2306 $this->_model=$model;
2307
2308 $tableName=$model->tableName();
2309 if(($table=$model->getDbConnection()->getSchema()->getTable($tableName))===null)
2310 throw new CDbException(Yii::t('yii','The table "{table}" for active record class "{class}" cannot be found in the database.',
2311 array('{class}'=>get_class($model),'{table}'=>$tableName)));
2312 if($table->primaryKey===null)
2313 {
2314 $table->primaryKey=$model->primaryKey();
|
#6 |
+
–
/home/admin5/web/pizzadoma.ru/public_html/info/yii/framework/db/ar/CActiveRecord.php(387): CActiveRecordMetaData-> __construct(PageComment)
382 if(isset(self::$_models[$className]))
383 return self::$_models[$className];
384 else
385 {
386 $model=self::$_models[$className]=new $className(null);
387 $model->_md=new CActiveRecordMetaData($model);
388 $model->attachBehaviors($model->behaviors());
389 return $model;
390 }
391 }
392
|
#7 |
+
–
/home/admin5/web/pizzadoma.ru/public_html/info/yii/framework/web/CActiveDataProvider.php(74): CActiveRecord:: model("PageComment")
69 public function __construct($modelClass,$config=array())
70 {
71 if(is_string($modelClass))
72 {
73 $this->modelClass=$modelClass;
74 $this->model=CActiveRecord::model($this->modelClass);
75 }
76 elseif($modelClass instanceof CActiveRecord)
77 {
78 $this->modelClass=get_class($modelClass);
79 $this->model=$modelClass;
|
#8 |
+
–
/home/admin5/web/pizzadoma.ru/public_html/info/protected/controllers/PagecommentController.php(191): CActiveDataProvider-> __construct("PageComment", array("criteria" => CDbCriteria))
186 $this->layout = 'block-bootstrap';
187 $criteria = new CDbCriteria;
188 $criteria->compare('page_id',$_GET['page_id']);
189 $criteria->compare('status',1);
190 $criteria->order = 't.create_time DESC';
191 $dataProvider=new CActiveDataProvider('PageComment', array('criteria'=>$criteria ));
192 $criteria->limit = 10;
193 $lastComments = PageComment::model()->findAll($criteria);
194
195 $this->render('index',array(
196 'dataProvider'=>$dataProvider,
|
#9 |
+
–
/home/admin5/web/pizzadoma.ru/public_html/info/yii/framework/web/actions/CInlineAction.php(49): PageCommentController-> actionIndex()
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/admin5/web/pizzadoma.ru/public_html/info/yii/framework/web/CController.php(308): CInlineAction-> runWithParams(array("r" => "pagecomment/index", "encode" => 1, "page_id" => "/water_yeast_dough.html"))
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/admin5/web/pizzadoma.ru/public_html/info/yii/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 } |
#12 |
+
–
/home/admin5/web/pizzadoma.ru/public_html/info/yii/framework/web/filters/CFilter.php(40): CFilterChain-> run()
35 */
36 public function filter($filterChain)
37 {
38 if($this->preFilter($filterChain))
39 {
40 $filterChain->run();
41 $this->postFilter($filterChain);
42 }
43 }
44
45 /**
|
#13 |
+
–
/home/admin5/web/pizzadoma.ru/public_html/info/yii/framework/web/CController.php(1145): CFilter-> filter(CFilterChain)
1140 */
1141 public function filterAccessControl($filterChain)
1142 {
1143 $filter=new CAccessControlFilter;
1144 $filter->setRules($this->accessRules());
1145 $filter->filter($filterChain);
1146 }
1147
1148 /**
1149 * Returns a persistent page state value.
1150 * A page state is a variable that is persistent across POST requests of the same page.
|
#14 |
+
–
/home/admin5/web/pizzadoma.ru/public_html/info/yii/framework/web/filters/CInlineFilter.php(58): CController-> filterAccessControl(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 }
|
#15 |
+
–
/home/admin5/web/pizzadoma.ru/public_html/info/yii/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 } |
#16 |
+
–
/home/admin5/web/pizzadoma.ru/public_html/info/yii/framework/web/CController.php(291): CFilterChain-> run()
286 $this->runAction($action);
287 else
288 {
289 $priorAction=$this->_action;
290 $this->_action=$action;
291 CFilterChain::create($this,$action,$filters)->run();
292 $this->_action=$priorAction;
293 }
294 }
295
296 /**
|
#17 |
+
–
/home/admin5/web/pizzadoma.ru/public_html/info/yii/framework/web/CController.php(265): CController-> runActionWithFilters(CInlineAction, array("accessControl", "postOnly + delete"))
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);
|
#18 |
+
–
/home/admin5/web/pizzadoma.ru/public_html/info/yii/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)));
|
#19 |
+
–
/home/admin5/web/pizzadoma.ru/public_html/info/block.php(37): CWebApplication-> runController("pagecomment/index")
32
33 if ($_GET['r'] == 'site/block')
34 Yii::app()->clientScript->enableJavaScript = false;
35
36
37 Yii::app()->runController($_GET['r']);
38 //echo iconv('utf-8','cp1251//TRANSLIT', ob_get_clean()); //http://koktelbar.ru/ bug
39 echo iconv('utf-8','cp1251', ob_get_clean());
40 Yii::app()->clientScript->enableJavaScript = true;
41 chdir($path0);
42 $_SERVER['PHP_SELF']=$_SERVER['SCRIPT_NAME']=$self0;
|
#20 |
+
–
/home/admin5/web/pizzadoma.ru/public_html/comment_page.php(5): include("/home/admin5/web/pizzadoma.ru/public_html/info/block.php")
1 <?php
2 $_GET['r'] = 'pagecomment/index';
3 $_GET['encode'] = 1;
4 $_GET['page_id'] = $_SERVER['REQUEST_URI'];
5 include $_SERVER['DOCUMENT_ROOT']."/info/block.php";
6 ?> |