OCWS

2021 OC Fair Homewine Competition

Orange County Wine Society

Held June 12, 2021 at the OC Fair and Event Center, Costa Mesa, California

OCFair
OCFair
2021 Home Wine Competition

CException

CException

Property "Config.results_page_active" is not defined.

/home/competitionocws/public_html/yii-1.1.9.r3527/framework/db/ar/CActiveRecord.php(144)

132      */
133     public function __get($name)
134     {
135         if(isset($this->_attributes[$name]))
136             return $this->_attributes[$name];
137         else if(isset($this->getMetaData()->columns[$name]))
138             return null;
139         else if(isset($this->_related[$name]))
140             return $this->_related[$name];
141         else if(isset($this->getMetaData()->relations[$name]))
142             return $this->getRelated($name);
143         else
144             return parent::__get($name);
145     }
146 
147     /**
148      * PHP setter magic method.
149      * This method is overridden so that AR attributes can be accessed like properties.
150      * @param string $name property name
151      * @param mixed $value property value
152      */
153     public function __set($name,$value)
154     {
155         if($this->setAttribute($name,$value)===false)
156         {

Stack Trace

#1
+
 /home/competitionocws/public_html/protected/controllers/CompetitionEntriesController.php(1521): CActiveRecord->__get("results_page_active")
1516             
1517             <div class="container">';
1518                 
1519                 // If the Results page is not yet active and we are not an admin, display the 'Pending' message
1520                 $configModel=Config::model()->findByPk(1);
1521                 $resultsPageActive = $configModel->results_page_active;
1522                 if (($resultsPageActive == 0) && Yii::app()->user->isGuest ) {
1523                     echo '<div style="font-size:200%;text-align:center;"><br/><br/>'. $configModel->results_pending_message .'</div>';
1524                     return FALSE;
1525                 }
1526             
#2
+
 /home/competitionocws/public_html/protected/controllers/CompetitionEntriesController.php(1098): CompetitionEntriesController->resultsWebPageHeader("1")
1093         * Web Page of Results Grouped by Award
1094         */
1095     public function actionResultsWebPagebyAward() {
1096         $this->layout = 'printMailForm'; 
1097         
1098         if ($this->resultsWebPageHeader('1') === FALSE) {
1099             return;
1100         }
1101         
1102 
1103         
#6
+
 /home/competitionocws/public_html/protected/controllers/CompetitionEntriesController.php(282): CFilterChain->run()
277     }
278     
279     public function filterWineMakerContext($filterChain) {
280         
281         
282         $filterChain->run();
283     }
284     
285     /** 
286      * We need to assign a numerically increasing value to the wine.
287      *
2023-09-28 00:52:26 Apache Yii Framework/1.1.9