// http://listings.blankandmccune.com/site/residential CDbException The table "RC_DATA" for active record class "ListingResidential" cannot be found in the database. /home6/mlsexcha/public_html/listings/yii_framework/db/ar/CActiveRecord.php(2264) 2252 private $_model; 2253 2254 /** 2255 * Constructor. 2256 * @param CActiveRecord $model the model instance 2257 */ 2258 public function __construct($model) 2259 { 2260 $this->_model=$model; 2261 2262 $tableName=$model->tableName(); 2263 if(($table=$model->getDbConnection()->getSchema()->getTable($tableName))===null) 2264 throw new CDbException(Yii::t('yii','The table "{table}" for active record class "{class}" cannot be found in the database.', 2265 array('{class}'=>get_class($model),'{table}'=>$tableName))); 2266 if($table->primaryKey===null) 2267 { 2268 $table->primaryKey=$model->primaryKey(); 2269 if(is_string($table->primaryKey) && isset($table->columns[$table->primaryKey])) 2270 $table->columns[$table->primaryKey]->isPrimaryKey=true; 2271 else if(is_array($table->primaryKey)) 2272 { 2273 foreach($table->primaryKey as $name) 2274 { 2275 if(isset($table->columns[$name])) 2276 $table->columns[$name]->isPrimaryKey=true; Stack Trace #0 – /home6/mlsexcha/public_html/listings/yii_framework/db/ar/CActiveRecord.php(379): CActiveRecordMetaData->__construct(ListingResidential) 374 if(isset(self::$_models[$className])) 375 return self::$_models[$className]; 376 else 377 { 378 $model=self::$_models[$className]=new $className(null); 379 $model->_md=new CActiveRecordMetaData($model); 380 $model->attachBehaviors($model->behaviors()); 381 return $model; 382 } 383 } 384 #1 – /home6/mlsexcha/public_html/listings/protected/models/tables/BaseTable.php(85): CActiveRecord::model("ListingResidential") 80 * @param string $className 81 * @return \CActiveRecord 82 */ 83 public static function model($className = __CLASS__) 84 { 85 return parent::model($className); 86 } 87 88 /** 89 * Yii 90 * @return bool #2 – /home6/mlsexcha/public_html/listings/protected/models/tables/Listing.php(40): BaseTable::model("ListingResidential") 35 /** 36 * Yii 37 */ 38 public static function model($className = __CLASS__) 39 { 40 $model = parent::model($className); 41 return $model; 42 } 43 44 45 /** #3 – /home6/mlsexcha/public_html/listings/protected/controllers/SiteController.php(118): Listing::model("ListingResidential") 113 $response = array(); 114 115 $page = empty($page) ? 1 : $page; 116 117 /* @var Listing $listingModel*/ 118 $listingModel = Listing::model($type); 119 $listingsCount = $listingModel->getListingsCount($filters); 120 $listings = $listingModel->getListingsByPage($page, $filters); 121 122 $response['listings'] = $listings; 123 #4 – /home6/mlsexcha/public_html/listings/protected/controllers/SiteController.php(64): SiteController->getListings(null, "ListingResidential", 10, "") 59 if($search !== null) 60 { 61 $filters = $form->getSearchString($search); 62 $enableSearchForm = true; 63 } 64 $response = $this->getListings($page, Listing::RESIDENTIAL, Yii::app()->params['residentialListingsPageSize'], $filters); 65 66 if($search !== null) 67 { 68 $response['schools_elementary'] = Listing::model(Listing::RESIDENTIAL)->getSchools(Listing::SCHOOL_ELEMENTARY); 69 $response['schools_middle'] = Listing::model(Listing::RESIDENTIAL)->getSchools(Listing::SCHOOL_MIDDLE); #5 unknown(0): SiteController->actionResidential(null, null) #6 – /home6/mlsexcha/public_html/listings/yii_framework/web/actions/CAction.php(107): ReflectionMethod->invokeArgs(SiteController, array(null, null)) 102 else if($param->isDefaultValueAvailable()) 103 $ps[]=$param->getDefaultValue(); 104 else 105 return false; 106 } 107 $method->invokeArgs($object,$ps); 108 return true; 109 } 110 } #7 – /home6/mlsexcha/public_html/listings/yii_framework/web/actions/CInlineAction.php(48): CAction->runWithParamsInternal(SiteController, ReflectionMethod, array()) 43 { 44 $methodName='action'.$this->getId(); 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 } #8 – /home6/mlsexcha/public_html/listings/yii_framework/web/CController.php(309): CInlineAction->runWithParams(array()) 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; #9 – /home6/mlsexcha/public_html/listings/yii_framework/web/filters/CFilterChain.php(134): CController->runAction(CInlineAction) 129 $filter=$this->itemAt($this->filterIndex++); 130 Yii::trace('Running filter '.($filter instanceof CInlineFilter ? get_class($this->controller).'.filter'.$filter->name.'()':get_class($filter).'.filter()'),'system.web.filters.CFilterChain'); 131 $filter->filter($this); 132 } 133 else 134 $this->controller->runAction($this->action); 135 } 136 } #10 – /home6/mlsexcha/public_html/listings/yii_framework/web/filters/CFilter.php(41): CFilterChain->run() 36 */ 37 public function filter($filterChain) 38 { 39 if($this->preFilter($filterChain)) 40 { 41 $filterChain->run(); 42 $this->postFilter($filterChain); 43 } 44 } 45 46 /** #11 – /home6/mlsexcha/public_html/listings/yii_framework/web/CController.php(1146): CFilter->filter(CFilterChain) 1141 */ 1142 public function filterAccessControl($filterChain) 1143 { 1144 $filter=new CAccessControlFilter; 1145 $filter->setRules($this->accessRules()); 1146 $filter->filter($filterChain); 1147 } 1148 1149 /** 1150 * Returns a persistent page state value. 1151 * A page state is a variable that is persistent across POST requests of the same page. #12 – /home6/mlsexcha/public_html/listings/yii_framework/web/filters/CInlineFilter.php(59): CController->filterAccessControl(CFilterChain) 54 * @param CFilterChain $filterChain the filter chain that the filter is on. 55 */ 56 public function filter($filterChain) 57 { 58 $method='filter'.$this->name; 59 $filterChain->controller->$method($filterChain); 60 } 61 } #13 – /home6/mlsexcha/public_html/listings/yii_framework/web/filters/CFilterChain.php(131): CInlineFilter->filter(CFilterChain) 126 { 127 if($this->offsetExists($this->filterIndex)) 128 { 129 $filter=$this->itemAt($this->filterIndex++); 130 Yii::trace('Running filter '.($filter instanceof CInlineFilter ? get_class($this->controller).'.filter'.$filter->name.'()':get_class($filter).'.filter()'),'system.web.filters.CFilterChain'); 131 $filter->filter($this); 132 } 133 else 134 $this->controller->runAction($this->action); 135 } 136 } #14 – /home6/mlsexcha/public_html/listings/yii_framework/web/CController.php(292): CFilterChain->run() 287 $this->runAction($action); 288 else 289 { 290 $priorAction=$this->_action; 291 $this->_action=$action; 292 CFilterChain::create($this,$action,$filters)->run(); 293 $this->_action=$priorAction; 294 } 295 } 296 297 /** #15 – /home6/mlsexcha/public_html/listings/yii_framework/web/CController.php(266): CController->runActionWithFilters(CInlineAction, array("accessControl")) 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); #16 – /home6/mlsexcha/public_html/listings/yii_framework/web/CWebApplication.php(276): CController->run("residential") 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))); #17 – /home6/mlsexcha/public_html/listings/yii_framework/web/CWebApplication.php(135): CWebApplication->runController("site/residential") 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. #18 – /home6/mlsexcha/public_html/listings/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 /** #19 – /home6/mlsexcha/public_html/listings/index.php(12): CApplication->run() 07 defined('YII_DEBUG') or define('YII_DEBUG', true); 08 // specify how many levels of call stack should be shown in each log message 09 defined('YII_TRACE_LEVEL') or define('YII_TRACE_LEVEL', 3); 10 11 require_once($yii); 12 Yii::createWebApplication($config)->run(); 2013-05-22 22:05:05 Apache Yii Framework/1.1.10