/home/c/cd97155/avtor.ru/public_html/yii/framework/YiiBase.php(418)
406 { 407 foreach(self::$_includePaths as $path) 408 { 409 $classFile=$path.DIRECTORY_SEPARATOR.$className.'.php'; 410 if(is_file($classFile)) 411 { 412 include($classFile); 413 break; 414 } 415 } 416 } 417 else 418 include($className.'.php'); 419 } 420 else // class name with namespace in PHP 5.3 421 { 422 $namespace=str_replace('\\','.',ltrim($className,'\\')); 423 if(($path=self::getPathOfAlias($namespace))!==false) 424 include($path.'.php'); 425 else 426 return false; 427 } 428 return class_exists($className,false) || interface_exists($className,false); 429 } 430 return true;
#0 |
+
–
/home/c/cd97155/avtor.ru/public_html/yii/framework/YiiBase.php(418): YiiBase::autoload() 413 break; 414 } 415 } 416 } 417 else 418 include($className.'.php'); 419 } 420 else // class name with namespace in PHP 5.3 421 { 422 $namespace=str_replace('\\','.',ltrim($className,'\\')); 423 if(($path=self::getPathOfAlias($namespace))!==false) |
#1 |
unknown(0): YiiBase::autoload("ProfileAdd")
|
#2 |
+
–
/home/c/cd97155/avtor.ru/public_html/protected/controllers/SiteController.php(849): spl_autoload_call("ProfileAdd") 844 845 $way = isset($_GET['way']) ? $_GET['way'] : 0; 846 847 Yii::app()->session['preview']=0; 848 $model = new Document; 849 $model_profileadd = new ProfileAdd; 850 $flag = 'guest'; 851 $user_id = Yii::app()->user->id; 852 if($way!=0 and !$user_id) 853 { 854 $this->redirect(array('site/registrate')); |
#3 |
+
–
/home/c/cd97155/avtor.ru/public_html/yii/framework/web/actions/CInlineAction.php(50): SiteController->actionUpload() 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 } |
#4 |
+
–
/home/c/cd97155/avtor.ru/public_html/yii/framework/web/CController.php(309): CInlineAction->runWithParams(array("r" => "site/upload", "way" => "3")) 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; |
#5 |
+
–
/home/c/cd97155/avtor.ru/public_html/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(); |
#6 |
+
–
/home/c/cd97155/avtor.ru/public_html/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); |
#7 |
+
–
/home/c/cd97155/avtor.ru/public_html/yii/framework/web/CWebApplication.php(276): CController->run("upload") 271 { 272 list($controller,$actionID)=$ca; 273 $oldController=$this->_controller; 274 $this->_controller=$controller; 275 $controller->init(); 276 $controller->run($actionID); 277 $this->_controller=$oldController; 278 } 279 else 280 throw new CHttpException(404,Yii::t('yii','Unable to resolve the request "{route}".', 281 array('{route}'=>$route===''?$this->defaultController:$route))); |
#8 |
+
–
/home/c/cd97155/avtor.ru/public_html/yii/framework/web/CWebApplication.php(135): CWebApplication->runController("site/upload") 130 foreach(array_splice($this->catchAllRequest,1) as $name=>$value) 131 $_GET[$name]=$value; 132 } 133 else 134 $route=$this->getUrlManager()->parseUrl($this->getRequest()); 135 $this->runController($route); 136 } 137 138 /** 139 * Registers the core application components. 140 * This method overrides the parent implementation by registering additional core components. |
#9 |
+
–
/home/c/cd97155/avtor.ru/public_html/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 /** |
#10 |
+
–
/home/c/cd97155/avtor.ru/public_html/index.php(24): CApplication->run() 19 defined('YII_DEBUG') or define('YII_DEBUG',true); 20 // specify how many levels of call stack should be shown in each log message 21 defined('YII_TRACE_LEVEL') or define('YII_TRACE_LEVEL',3); 22 23 require_once($yii); 24 Yii::createWebApplication($config)->run(); |