CException

Property "Tokens_dynamic.attribute_1" is not defined.

C:\xampp\htdocs\limesurvey\framework\db\ar\CActiveRecord.php(160)

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         {
157             if(isset($this->getMetaData()->relations[$name]))
158                 $this->_related[$name]=$value;
159             else
160                 parent::__set($name,$value);
161         }
162     }
163 
164     /**
165      * Checks if a property value is null.
166      * This method overrides the parent implementation by checking
167      * if the named attribute is null or not.
168      * @param string $name the property name or the event name
169      * @return boolean whether the property value is null
170      */
171     public function __isset($name)
172     {

Stack Trace

#1
+
 C:\xampp\htdocs\limesurvey\application\controllers\RegisterController.php(210): CActiveRecord->__set("attribute_1", "41906777")
205         {
206             $token->validfrom = $starttime;
207             $token->validuntil = $endtime;
208         }
209         foreach ($attributeinsertdata as $k => $v)
210             $token->$k = $v;
211         $result = $token->save();
212 
213         /**
214         $result = $connect->Execute($query, array($postfirstname,
215         $postlastname,
#11
+
 C:\xampp\htdocs\limesurvey\index.php(178): CApplication->run()
173  *
174  */
175 require_once BASEPATH . 'yii' . EXT;
176 require_once APPPATH . 'core/LSYii_Application' . EXT;
177 
178 Yii::createApplication('LSYii_Application', APPPATH . 'config/config' . EXT)->run();
179 
180 /* End of file index.php */
181 /* Location: ./index.php */
2012-10-25 14:50:52 Apache/2.4.2 (Win32) OpenSSL/1.0.1c PHP/5.4.4 Yii Framework/1.1.10