Тел./ факс
+7 (495) 727 06 57
+7 (495) 240 50 30
+7 (985) 130 00 99
г. Москва , Киевское шоссе, БП "Румянцево", подъезд 11, этаж 7, офис 713г.
Тел./ факс
+7 (495) 727 06 57
+7 (495) 240 50 30
+7 (985) 130 00 99
г. Москва , Киевское шоссе, БП "Румянцево", подъезд 11, этаж 7, офис 713г.
Таблица "domains", упомянутая в записи active record класса "Domains", не найдена в базе данных.
/home/nma/sites/links.m-analytics.ru/framework/db/ar/CActiveRecord.php(2362)
2350 2351 /** 2352 * Constructor. 2353 * @param CActiveRecord $model the model instance 2354 * @throws CDbException if specified table for active record class cannot be found in the database 2355 */ 2356 public function __construct($model) 2357 { 2358 $this->_modelClassName=get_class($model); 2359 2360 $tableName=$model->tableName(); 2361 if(($table=$model->getDbConnection()->getSchema()->getTable($tableName))===null) 2362 throw new CDbException(Yii::t('yii','The table "{table}" for active record class "{class}" cannot be found in the database.', 2363 array('{class}'=>$this->_modelClassName,'{table}'=>$tableName))); 2364 if($table->primaryKey===null) 2365 { 2366 $table->primaryKey=$model->primaryKey(); 2367 if(is_string($table->primaryKey) && isset($table->columns[$table->primaryKey])) 2368 $table->columns[$table->primaryKey]->isPrimaryKey=true; 2369 elseif(is_array($table->primaryKey)) 2370 { 2371 foreach($table->primaryKey as $name) 2372 { 2373 if(isset($table->columns[$name])) 2374 $table->columns[$name]->isPrimaryKey=true;
| #0 |
+
–
/home/nma/sites/links.m-analytics.ru/framework/db/ar/CActiveRecord.php(411): CActiveRecordMetaData->__construct(Domains) 406 { 407 $className=get_class($this); 408 if(!array_key_exists($className,self::$_md)) 409 { 410 self::$_md[$className]=null; // preventing recursive invokes of {@link getMetaData()} via {@link __get()} 411 self::$_md[$className]=new CActiveRecordMetaData($this); 412 } 413 return self::$_md[$className]; 414 } 415 416 /** |
| #1 |
+
–
/home/nma/sites/links.m-analytics.ru/framework/db/ar/CActiveRecord.php(658): CActiveRecord->getMetaData() 653 * Returns the metadata of the table that this AR belongs to 654 * @return CDbTableSchema the metadata of the table that this AR belongs to 655 */ 656 public function getTableSchema() 657 { 658 return $this->getMetaData()->tableSchema; 659 } 660 661 /** 662 * Returns the command builder used by this AR. 663 * @return CDbCommandBuilder the command builder used by this AR |
| #2 |
+
–
/home/nma/sites/links.m-analytics.ru/framework/db/ar/CActiveRecord.php(1518): CActiveRecord->getTableSchema() 1513 */ 1514 public function findByAttributes($attributes,$condition='',$params=array()) 1515 { 1516 Yii::trace(get_class($this).'.findByAttributes()','system.db.ar.CActiveRecord'); 1517 $prefix=$this->getTableAlias(true).'.'; 1518 $criteria=$this->getCommandBuilder()->createColumnCriteria($this->getTableSchema(),$attributes,$condition,$params,$prefix); 1519 return $this->query($criteria); 1520 } 1521 1522 /** 1523 * Finds all active records that have the specified attribute values. |
| #3 |
+
–
/home/nma/sites/links.m-analytics.ru/protected/controllers/DomainsController.php(45): CActiveRecord->findByAttributes(array("number" => "9273135_265")) 40 public function actionGetlinks($number){ 41 $this->layout = false; 42 43 44 45 $domain = Domains::model()->findByAttributes(array('number'=>$number)); 46 if(isset($domain->id) && $domain->active == 1){ 47 $dir = getcwd(); 48 49 50 |
| #4 |
unknown(0): DomainsController->actionGetlinks("9273135_265")
|
| #5 |
+
–
/home/nma/sites/links.m-analytics.ru/framework/web/actions/CAction.php(108): ReflectionMethod->invokeArgs(DomainsController, array("9273135_265")) 103 elseif($param->isDefaultValueAvailable()) 104 $ps[]=$param->getDefaultValue(); 105 else 106 return false; 107 } 108 $method->invokeArgs($object,$ps); 109 return true; 110 } 111 } |
| #6 |
+
–
/home/nma/sites/links.m-analytics.ru/framework/web/actions/CInlineAction.php(47): CAction->runWithParamsInternal(DomainsController, ReflectionMethod, array("url" => "https://www.ksk-group.ru/shop/nasosy-dlya-basseynov/speck-pumpen...", "ss" => "1", "number" => "9273135_265")) 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 } |
| #7 |
+
–
/home/nma/sites/links.m-analytics.ru/framework/web/CController.php(308): CInlineAction->runWithParams(array("url" => "https://www.ksk-group.ru/shop/nasosy-dlya-basseynov/speck-pumpen...", "ss" => "1", "number" => "9273135_265")) 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; |
| #8 |
+
–
/home/nma/sites/links.m-analytics.ru/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 } |
| #9 |
+
–
/home/nma/sites/links.m-analytics.ru/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 /** |
| #10 |
+
–
/home/nma/sites/links.m-analytics.ru/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. |
| #11 |
+
–
/home/nma/sites/links.m-analytics.ru/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 } |
| #12 |
+
–
/home/nma/sites/links.m-analytics.ru/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 } |
| #13 |
+
–
/home/nma/sites/links.m-analytics.ru/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 /** |
| #14 |
+
–
/home/nma/sites/links.m-analytics.ru/framework/web/CController.php(265): CController->runActionWithFilters(CInlineAction, array("accessControl")) 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); |
| #15 |
+
–
/home/nma/sites/links.m-analytics.ru/framework/web/CWebApplication.php(282): CController->run("getlinks") 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))); |
| #16 |
+
–
/home/nma/sites/links.m-analytics.ru/framework/web/CWebApplication.php(141): CWebApplication->runController("domains/getlinks") 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. |
| #17 |
+
–
/home/nma/sites/links.m-analytics.ru/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 /** |
| #18 |
+
–
/home/nma/sites/links.m-analytics.ru/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(); |
