From 7ef6bd96b678c5cb70f31c7400019530dcbe7cbd Mon Sep 17 00:00:00 2001 From: Patrick Seeger Date: Sat, 5 May 2012 18:09:22 +0200 Subject: Assets etc aus git genommen, erste ansicht vereinslist --- .gitignore | 3 + .settings/org.eclipse.core.resources.prefs | 3 + css/astaf/layout.css | 1 + images/Altstadtfest_titel.jpg | Bin 0 -> 72292 bytes protected/controllers/CmsPageController.php | 176 - protected/controllers/KategorieController.php | 163 + protected/controllers/SpeisTrankController.php | 163 + protected/controllers/StandortController.php | 190 + protected/controllers/UserController.php | 168 + protected/controllers/VeranstaltungController.php | 169 + protected/controllers/VereinController.php | 164 + .../extensions/extckeditor/assets/CHANGES.html | 1503 +++++++ protected/extensions/wetter/Wetter.php | 5 +- protected/extensions/wetter/views/wetter.php | 42 +- protected/models/Angebot.php | 106 + protected/models/AngebotVerein.php | 108 + protected/models/CmsPage.php | 133 - protected/models/Kategorie.php | 107 + protected/models/Standort.php | 112 + protected/models/Veranstaltung.php | 130 + protected/models/Verein.php | 125 + protected/modules/cms/models/Cms.php | 10 +- protected/runtime/application.log | 4685 ++++++++++++++++++++ .../cache/57bda9da3bcf4917957d5102f46386f0.bin | 2 +- .../cache/c14ee5a4fa047c25488b05abf0f92fff.bin | 1 - protected/views/cmsPage/_form.php | 50 - protected/views/cmsPage/_search.php | 49 - protected/views/cmsPage/_view.php | 32 - protected/views/cmsPage/admin.php | 58 - protected/views/cmsPage/create.php | 15 - protected/views/cmsPage/index.php | 17 - protected/views/cmsPage/update.php | 18 - protected/views/cmsPage/view.php | 39 - protected/views/common/_advanced_search.php | 20 + protected/views/common/_comparison_text.php | 4 + protected/views/common/_required_fields_text.php | 1 + protected/views/verein/_form.php | 114 + protected/views/verein/_search.php | 64 + protected/views/verein/_short.php | 11 + protected/views/verein/create.php | 14 + protected/views/verein/index.php | 19 + protected/views/verein/update.php | 16 + protected/views/verein/view.php | 30 + themes/astaf/views/layouts/column1.php | 3 + themes/astaf/views/layouts/column2.php | 5 + themes/astaf/views/layouts/main.php | 52 +- 46 files changed, 8272 insertions(+), 628 deletions(-) create mode 100644 .gitignore create mode 100644 .settings/org.eclipse.core.resources.prefs create mode 100644 images/Altstadtfest_titel.jpg delete mode 100644 protected/controllers/CmsPageController.php create mode 100644 protected/controllers/KategorieController.php create mode 100644 protected/controllers/SpeisTrankController.php create mode 100644 protected/controllers/StandortController.php create mode 100644 protected/controllers/UserController.php create mode 100644 protected/controllers/VeranstaltungController.php create mode 100644 protected/controllers/VereinController.php create mode 100644 protected/extensions/extckeditor/assets/CHANGES.html create mode 100644 protected/models/Angebot.php create mode 100644 protected/models/AngebotVerein.php delete mode 100644 protected/models/CmsPage.php create mode 100644 protected/models/Kategorie.php create mode 100644 protected/models/Standort.php create mode 100644 protected/models/Veranstaltung.php create mode 100644 protected/models/Verein.php delete mode 100644 protected/runtime/cache/c14ee5a4fa047c25488b05abf0f92fff.bin delete mode 100644 protected/views/cmsPage/_form.php delete mode 100644 protected/views/cmsPage/_search.php delete mode 100644 protected/views/cmsPage/_view.php delete mode 100644 protected/views/cmsPage/admin.php delete mode 100644 protected/views/cmsPage/create.php delete mode 100644 protected/views/cmsPage/index.php delete mode 100644 protected/views/cmsPage/update.php delete mode 100644 protected/views/cmsPage/view.php create mode 100644 protected/views/common/_advanced_search.php create mode 100644 protected/views/common/_comparison_text.php create mode 100644 protected/views/common/_required_fields_text.php create mode 100644 protected/views/verein/_form.php create mode 100644 protected/views/verein/_search.php create mode 100644 protected/views/verein/_short.php create mode 100644 protected/views/verein/create.php create mode 100644 protected/views/verein/index.php create mode 100644 protected/views/verein/update.php create mode 100644 protected/views/verein/view.php create mode 100644 themes/astaf/views/layouts/column1.php create mode 100644 themes/astaf/views/layouts/column2.php diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..38c7b5b --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ + +/assets +/protected/runtime \ No newline at end of file diff --git a/.settings/org.eclipse.core.resources.prefs b/.settings/org.eclipse.core.resources.prefs new file mode 100644 index 0000000..44632ff --- /dev/null +++ b/.settings/org.eclipse.core.resources.prefs @@ -0,0 +1,3 @@ +eclipse.preferences.version=1 +encoding//protected/extensions/wetter/views/wetter.php=UTF-8 +encoding/=UTF-8 diff --git a/css/astaf/layout.css b/css/astaf/layout.css index 33b2088..4726978 100644 --- a/css/astaf/layout.css +++ b/css/astaf/layout.css @@ -20,6 +20,7 @@ /* import screen layout | Screen-Layout einbinden */ @import url(../yaml4/navigation/hlist-blue.css); +@import url(../yaml4/navigation/vlist.css); @import url(../yaml4/forms/blue-theme.css); @import url(../yaml4/screen/typography-blue.css); diff --git a/images/Altstadtfest_titel.jpg b/images/Altstadtfest_titel.jpg new file mode 100644 index 0000000..d95f819 Binary files /dev/null and b/images/Altstadtfest_titel.jpg differ diff --git a/protected/controllers/CmsPageController.php b/protected/controllers/CmsPageController.php deleted file mode 100644 index 362f991..0000000 --- a/protected/controllers/CmsPageController.php +++ /dev/null @@ -1,176 +0,0 @@ -array('index','view'), - 'users'=>array('*'), - ), - array('allow', // allow authenticated user to perform 'create' and 'update' actions - 'actions'=>array('create','update'), - 'users'=>array('@'), - ), - array('allow', // allow admin user to perform 'admin' and 'delete' actions - 'actions'=>array('admin','delete'), - 'users'=>array('admin'), - ), - array('deny', // deny all users - 'users'=>array('*'), - ), - ); - } - - /** - * Displays a particular model. - * @param integer $id the ID of the model to be displayed - */ - public function actionView($id) - { - $this->render('view',array( - 'model'=>$this->loadModel($id), - )); - } - - /** - * Creates a new model. - * If creation is successful, the browser will be redirected to the 'view' page. - */ - public function actionCreate() - { - $model=new CmsPage; - - // Uncomment the following line if AJAX validation is needed - // $this->performAjaxValidation($model); - - if(isset($_POST['CmsPage'])) - { - $model->attributes=$_POST['CmsPage']; - if($model->save()) - $this->redirect(array('view','id'=>$model->id)); - } - - $this->render('create',array( - 'model'=>$model, - )); - } - - /** - * Updates a particular model. - * If update is successful, the browser will be redirected to the 'view' page. - * @param integer $id the ID of the model to be updated - */ - public function actionUpdate($id) - { - $model=$this->loadModel($id); - - // Uncomment the following line if AJAX validation is needed - // $this->performAjaxValidation($model); - - if(isset($_POST['CmsPage'])) - { - $model->attributes=$_POST['CmsPage']; - if($model->save()) - $this->redirect(array('view','id'=>$model->id)); - } - - $this->render('update',array( - 'model'=>$model, - )); - } - - /** - * Deletes a particular model. - * If deletion is successful, the browser will be redirected to the 'admin' page. - * @param integer $id the ID of the model to be deleted - */ - public function actionDelete($id) - { - if(Yii::app()->request->isPostRequest) - { - // we only allow deletion via POST request - $this->loadModel($id)->delete(); - - // if AJAX request (triggered by deletion via admin grid view), we should not redirect the browser - if(!isset($_GET['ajax'])) - $this->redirect(isset($_POST['returnUrl']) ? $_POST['returnUrl'] : array('admin')); - } - else - throw new CHttpException(400,'Invalid request. Please do not repeat this request again.'); - } - - /** - * Lists all models. - */ - public function actionIndex() - { - $dataProvider=new CActiveDataProvider('CmsPage'); - $this->render('index',array( - 'dataProvider'=>$dataProvider, - )); - } - - /** - * Manages all models. - */ - public function actionAdmin() - { - $model=new CmsPage('search'); - $model->unsetAttributes(); // clear any default values - if(isset($_GET['CmsPage'])) - $model->attributes=$_GET['CmsPage']; - - $this->render('admin',array( - 'model'=>$model, - )); - } - - /** - * Returns the data model based on the primary key given in the GET variable. - * If the data model is not found, an HTTP exception will be raised. - * @param integer the ID of the model to be loaded - */ - public function loadModel($id) - { - $model=CmsPage::model()->findByPk($id,"status=".CmsPage::STATUS_PUBLISHED); - if($model===null) - throw new CHttpException(404,'The requested page does not exist.'); - return $model; - } - - /** - * Performs the AJAX validation. - * @param CModel the model to be validated - */ - protected function performAjaxValidation($model) - { - if(isset($_POST['ajax']) && $_POST['ajax']==='cms-page-form') - { - echo CActiveForm::validate($model); - Yii::app()->end(); - } - } -} diff --git a/protected/controllers/KategorieController.php b/protected/controllers/KategorieController.php new file mode 100644 index 0000000..ceeaf42 --- /dev/null +++ b/protected/controllers/KategorieController.php @@ -0,0 +1,163 @@ +format->numberFormat = array('decimals'=>1, 'decimalSeparator'=>",", 'thousandSeparator'=>"."); + } + + /** + * @return array action filters + */ + public function filters() + { + return array( + 'accessControl', // perform access control for CRUD operations + ); + } + + /** + * Specifies the access control rules. + * This method is used by the 'accessControl' filter. + * @return array access control rules + */ + public function accessRules() + { + return array( + array('allow', // allow admin user to perform 'admin' and 'delete' actions + 'actions'=>array('index','create','update','delete','view'), + 'users'=>array('admin'), + ), + array('deny', // deny all users + 'users'=>array('*'), + ), + ); + } + + /** + * Displays a particular model. + * @param integer $id the ID of the model to be displayed + */ + public function actionView($id) + { + $this->render('view',array( + 'model'=>$this->loadModel($id), + )); + } + + /** + * Creates a new model. + * If creation is successful, the browser will be redirected to the 'view' page. + */ + public function actionCreate() + { + $model=new Kategorie; + + // Uncomment the following line if AJAX validation is needed + // $this->performAjaxValidation($model); + + if(isset($_POST['Kategorie'])) + { + $model->attributes=$_POST['Kategorie']; + if($model->save()) + $this->redirect(array('view','id'=>$model->id)); + } + + $this->render('create',array( + 'model'=>$model, + )); + } + + /** + * Updates a particular model. + * If update is successful, the browser will be redirected to the 'view' page. + * @param integer $id the ID of the model to be updated + */ + public function actionUpdate($id) + { + $model=$this->loadModel($id); + + // Uncomment the following line if AJAX validation is needed + // $this->performAjaxValidation($model); + + if(isset($_POST['Kategorie'])) + { + $model->attributes=$_POST['Kategorie']; + $model->default_menge = str_replace(",", ".", $model->default_menge); + if($model->save()) { + $this->redirect(array('view','id'=>$model->id)); + } + } + + $this->render('update',array( + 'model'=>$model, + )); + } + + /** + * Deletes a particular model. + * If deletion is successful, the browser will be redirected to the 'admin' page. + * @param integer $id the ID of the model to be deleted + */ + public function actionDelete($id) + { + if(Yii::app()->request->isPostRequest) + { + // we only allow deletion via POST request + $this->loadModel($id)->delete(); + + // if AJAX request (triggered by deletion via admin grid view), we should not redirect the browser + if(!isset($_GET['ajax'])) + $this->redirect(isset($_POST['returnUrl']) ? $_POST['returnUrl'] : array('admin')); + } + else + throw new CHttpException(400,'Invalid request. Please do not repeat this request again.'); + } + + /** + * Lists all models. + */ + public function actionIndex() + { + $model=new Kategorie('search'); + $model->unsetAttributes(); // clear any default values + if(isset($_GET['Kategorie'])) + $model->attributes=$_GET['Kategorie']; + + $this->render('index',array( + 'model'=>$model, + )); + } + + /** + * Returns the data model based on the primary key given in the GET variable. + * If the data model is not found, an HTTP exception will be raised. + * @param integer the ID of the model to be loaded + */ + public function loadModel($id) + { + $model=Kategorie::model()->findByPk($id); + if($model===null) + throw new CHttpException(404,'The requested page does not exist.'); + return $model; + } + + /** + * Performs the AJAX validation. + * @param CModel the model to be validated + */ + protected function performAjaxValidation($model) + { + if(isset($_POST['ajax']) && $_POST['ajax']==='kategorie-form') + { + echo CActiveForm::validate($model); + Yii::app()->end(); + } + } +} diff --git a/protected/controllers/SpeisTrankController.php b/protected/controllers/SpeisTrankController.php new file mode 100644 index 0000000..1da7883 --- /dev/null +++ b/protected/controllers/SpeisTrankController.php @@ -0,0 +1,163 @@ +array('create','index','delete','update','view'), + 'users'=>array('admin'), + ), + array('deny', // deny all users + 'users'=>array('*'), + ), + ); + } + + /** + * Displays a particular model. + * @param integer $id the ID of the model to be displayed + */ + public function actionView($id) + { + $this->render('view',array( + 'model'=>$this->loadModel($id), + )); + } + + /** + * Creates a new model. + * If creation is successful, the browser will be redirected to the 'view' page. + */ + public function actionCreate() + { + $model=new Angebot; + + // Uncomment the following line if AJAX validation is needed + // $this->performAjaxValidation($model); + + if(isset($_POST['Angebot'])) + { + $model->attributes=$_POST['Angebot']; + if($model->save()) + $this->redirect(array('view','id'=>$model->id)); + } + + $kategorien = Kategorie::model()->findAll(array("condition"=>"published=1")); + + $this->render('create',array( + 'model'=>$model, + 'kategorien'=>$kategorien + )); + } + + /** + * Updates a particular model. + * If update is successful, the browser will be redirected to the 'view' page. + * @param integer $id the ID of the model to be updated + */ + public function actionUpdate($id) + { + $model=$this->loadModel($id); + + // Uncomment the following line if AJAX validation is needed + // $this->performAjaxValidation($model); + + if(isset($_POST['Angebot'])) + { + $model->attributes=$_POST['Angebot']; + if($model->save()) + $this->redirect(array('view','id'=>$model->id)); + } + + $kategorien = Kategorie::model()->findAll(array("condition"=>"published=1")); + + $this->render('update',array( + 'model'=>$model, + 'kategorien'=>$kategorien + )); + } + + /** + * Deletes a particular model. + * If deletion is successful, the browser will be redirected to the 'admin' page. + * @param integer $id the ID of the model to be deleted + */ + public function actionDelete($id) + { + if(Yii::app()->request->isPostRequest) + { + // we only allow deletion via POST request + $this->loadModel($id)->delete(); + + // if AJAX request (triggered by deletion via admin grid view), we should not redirect the browser + if(!isset($_GET['ajax'])) + $this->redirect(isset($_POST['returnUrl']) ? $_POST['returnUrl'] : array('admin')); + } + else + throw new CHttpException(400,'Invalid request. Please do not repeat this request again.'); + } + + /** + * Lists all models. + */ + public function actionIndex() + { + $model=new Angebot('search'); + $model->unsetAttributes(); // clear any default values + if(isset($_GET['Angebot'])) + $model->attributes=$_GET['Angebot']; + + $this->render('index',array( + 'model'=>$model, + )); + } + + /** + * Returns the data model based on the primary key given in the GET variable. + * If the data model is not found, an HTTP exception will be raised. + * @param integer the ID of the model to be loaded + */ + public function loadModel($id) + { + $model=Angebot::model()->findByPk($id); + if($model===null) + throw new CHttpException(404,'The requested page does not exist.'); + return $model; + } + + /** + * Performs the AJAX validation. + * @param CModel the model to be validated + */ + protected function performAjaxValidation($model) + { + if(isset($_POST['ajax']) && $_POST['ajax']==='angebot-form') + { + echo CActiveForm::validate($model); + Yii::app()->end(); + } + } +} diff --git a/protected/controllers/StandortController.php b/protected/controllers/StandortController.php new file mode 100644 index 0000000..3fa11df --- /dev/null +++ b/protected/controllers/StandortController.php @@ -0,0 +1,190 @@ +array('delete','create','update','index','view','ajaxupdate','ajaxcreate','savecoords'), + 'users'=>array('admin'), + ), + array('deny', // deny all users + 'users'=>array('*'), + ), + ); + } + + /** + * Displays a particular model. + * @param integer $id the ID of the model to be displayed + */ + public function actionView($id) + { + $this->render('view',array( + 'model'=>$this->loadModel($id), + )); + } + + /** + * Creates a new model. + * If creation is successful, the browser will be redirected to the 'view' page. + */ + public function actionCreate() + { + $model=new Standort; + + // Uncomment the following line if AJAX validation is needed + // $this->performAjaxValidation($model); + + if(isset($_POST['Standort'])) + { + $model->attributes=$_POST['Standort']; + if($model->save()) + $this->redirect(array('index')); + } + + $this->render('create',array( + 'model'=>$model, + )); + } + + /** + * Updates a particular model. + * If update is successful, the browser will be redirected to the 'view' page. + * @param integer $id the ID of the model to be updated + */ + public function actionUpdate($id) + { + $model=$this->loadModel($id); + + // Uncomment the following line if AJAX validation is needed + // $this->performAjaxValidation($model); + + if(isset($_POST['Standort'])) + { + $model->attributes=$_POST['Standort']; + if($model->save()) + $this->redirect(array('view','id'=>$model->id)); + } + + $this->render('update',array( + 'model'=>$model, + )); + } + + + /** + * Updates the standort with $id. + * This method loads the post parameters + * + * @param integer $id the ID of the standort to be moved + * @throws CHttpException if + * + */ + public function actionSavecoords($id) { + $model=$this->loadModel($id); + + if (isset($_POST['lat']) && isset($_POST['lng'])) { + $model->pos_lat = $_POST['lat']; + $model->pos_long = $_POST['lng']; + if($model->save()) { + echo "success"; + } else { + throw new CHttpException(500, "Could not save"); + } + } else { + throw new CHttpException(400, "Wrong parameters"); + } + } + + /** + * Deletes a particular model. + * If deletion is successful, the browser will be redirected to the 'admin' page. + * @param integer $id the ID of the model to be deleted + */ + public function actionDelete($id) + { + if(Yii::app()->request->isPostRequest) + { + // we only allow deletion via POST request + $this->loadModel($id)->delete(); + + // if AJAX request (triggered by deletion via admin grid view), we should not redirect the browser + if(!isset($_GET['ajax'])) + $this->redirect(isset($_POST['returnUrl']) ? $_POST['returnUrl'] : array('admin')); + } + else + throw new CHttpException(400,'Invalid request. Please do not repeat this request again.'); + } + + /** + * Manages all models. + */ + public function actionIndex() + { + $model=new Standort('search'); + $model->unsetAttributes(); // clear any default values + if(isset($_GET['Standort'])) + $model->attributes=$_GET['Standort']; + + $this->render('index',array( + 'model'=>$model, + "standorte"=>Standort::model()->findAll() + )); + } + + /** + * Returns the data model based on the primary key given in the GET variable. + * If the data model is not found, an HTTP exception will be raised. + * @param integer the ID of the model to be loaded + */ + public function loadModel($id) + { + $model=Standort::model()->findByPk($id); + if($model===null) + throw new CHttpException(404,'The requested page does not exist.'); + return $model; + } + + /** + * Performs the AJAX validation. + * @param CModel the model to be validated + */ + protected function performAjaxValidation($model) + { + if(isset($_POST['ajax']) && $_POST['ajax']==='standort-form') + { + echo CActiveForm::validate($model); + Yii::app()->end(); + } + } +} diff --git a/protected/controllers/UserController.php b/protected/controllers/UserController.php new file mode 100644 index 0000000..79fc7e8 --- /dev/null +++ b/protected/controllers/UserController.php @@ -0,0 +1,168 @@ +array('create','update','index','view','admin','delete'), + 'users'=>array('admin'), + ), + array('deny', // deny all users + 'users'=>array('*'), + ), + ); + } + + /** + * Displays a particular model. + * @param integer $id the ID of the model to be displayed + */ + public function actionView($id) + { + $this->render('view',array( + 'model'=>$this->loadModel($id), + )); + } + + /** + * Creates a new model. + * If creation is successful, the browser will be redirected to the 'view' page. + */ + public function actionCreate() + { + $model=new User; + + // Uncomment the following line if AJAX validation is needed + // $this->performAjaxValidation($model); + + if(isset($_POST['User'])) + { + $model->attributes=$_POST['User']; + if($model->save()) + $this->redirect(array('view','id'=>$model->id)); + } + + $this->render('create',array( + 'model'=>$model, + )); + } + + /** + * Updates a particular model. + * If update is successful, the browser will be redirected to the 'view' page. + * @param integer $id the ID of the model to be updated + */ + public function actionUpdate($id) + { + $model=$this->loadModel($id); + + // Uncomment the following line if AJAX validation is needed + // $this->performAjaxValidation($model); + + if(isset($_POST['User'])) + { + $model->attributes=$_POST['User']; + if($model->save()) + $this->redirect(array('view','id'=>$model->id)); + } + + $this->render('update',array( + 'model'=>$model, + )); + } + + /** + * Deletes a particular model. + * If deletion is successful, the browser will be redirected to the 'admin' page. + * @param integer $id the ID of the model to be deleted + */ + public function actionDelete($id) + { + if(Yii::app()->request->isPostRequest) + { + // we only allow deletion via POST request + $this->loadModel($id)->delete(); + + // if AJAX request (triggered by deletion via admin grid view), we should not redirect the browser + if(!isset($_GET['ajax'])) + $this->redirect(isset($_POST['returnUrl']) ? $_POST['returnUrl'] : array('admin')); + } + else + throw new CHttpException(400,'Invalid request. Please do not repeat this request again.'); + } + + /** + * Lists all models. + */ + public function actionIndex() + { + $dataProvider=new CActiveDataProvider('User'); + $this->render('index',array( + 'dataProvider'=>$dataProvider, + )); + } + + /** + * Manages all models. + */ + public function actionAdmin() + { + $model=new User('search'); + $model->unsetAttributes(); // clear any default values + if(isset($_GET['User'])) + $model->attributes=$_GET['User']; + + $this->render('admin',array( + 'model'=>$model, + )); + } + + /** + * Returns the data model based on the primary key given in the GET variable. + * If the data model is not found, an HTTP exception will be raised. + * @param integer the ID of the model to be loaded + */ + public function loadModel($id) + { + $model=User::model()->findByPk($id); + if($model===null) + throw new CHttpException(404,'The requested page does not exist.'); + return $model; + } + + /** + * Performs the AJAX validation. + * @param CModel the model to be validated + */ + protected function performAjaxValidation($model) + { + if(isset($_POST['ajax']) && $_POST['ajax']==='user-form') + { + echo CActiveForm::validate($model); + Yii::app()->end(); + } + } +} diff --git a/protected/controllers/VeranstaltungController.php b/protected/controllers/VeranstaltungController.php new file mode 100644 index 0000000..49ec10a --- /dev/null +++ b/protected/controllers/VeranstaltungController.php @@ -0,0 +1,169 @@ +array('create','update','index','view','delete'), + 'users'=>array('admin'), + ), + array('deny', // deny all users + 'users'=>array('*'), + ), + ); + } + + /** + * Displays a particular model. + * @param integer $id the ID of the model to be displayed + */ + public function actionView($id) + { + $this->render('view',array( + 'model'=>$this->loadModel($id), + )); + } + + /** + * Creates a new model. + * If creation is successful, the browser will be redirected to the 'view' page. + */ + public function actionCreate() + { + $model=new Veranstaltung; + + // Uncomment the following line if AJAX validation is needed + // $this->performAjaxValidation($model); + + if(isset($_POST['Veranstaltung'])) + { + $model->attributes=$_POST['Veranstaltung']; + Yii::trace(print_r($model, true), "VERANSTALTUNG"); + if($model->save()) + $this->redirect(array('view','id'=>$model->id)); + } + + $standorte = Standort::model()->findAll(array("condition"=>"published=1 and type='Bühne'")); + $vereine = Verein::model()->findAll(array("condition"=>"published=1")); + + $this->render('create',array( + 'model'=>$model, + 'vereine'=>$vereine, + 'standorte'=>$standorte + )); + } + + /** + * Updates a particular model. + * If update is successful, the browser will be redirected to the 'view' page. + * @param integer $id the ID of the model to be updated + */ + public function actionUpdate($id) + { + $model=$this->loadModel($id); + + // Uncomment the following line if AJAX validation is needed + // $this->performAjaxValidation($model); + + if(isset($_POST['Veranstaltung'])) + { + $model->attributes=$_POST['Veranstaltung']; + + if($model->save()) + $this->redirect(array('view','id'=>$model->id)); + } + + $standorte = Standort::model()->findAll(array("condition"=>"published=1 and type='Bühne'")); + $vereine = Verein::model()->findAll(array("condition"=>"published=1")); + + $this->render('update',array( + 'model'=>$model, + 'vereine'=>$vereine, + 'standorte'=>$standorte + )); + } + + /** + * Deletes a particular model. + * If deletion is successful, the browser will be redirected to the 'admin' page. + * @param integer $id the ID of the model to be deleted + */ + public function actionDelete($id) + { + if(Yii::app()->request->isPostRequest) + { + // we only allow deletion via POST request + $this->loadModel($id)->delete(); + + // if AJAX request (triggered by deletion via admin grid view), we should not redirect the browser + if(!isset($_GET['ajax'])) + $this->redirect(isset($_POST['returnUrl']) ? $_POST['returnUrl'] : array('admin')); + } + else + throw new CHttpException(400,'Invalid request. Please do not repeat this request again.'); + } + + /** + * Lists all models. + */ + public function actionIndex() + { + $model=new Veranstaltung('search'); + $model->unsetAttributes(); // clear any default values + if(isset($_GET['Veranstaltung'])) + $model->attributes=$_GET['Veranstaltung']; + + $this->render('index',array( + 'model'=>$model, + )); + } + + /** + * Returns the data model based on the primary key given in the GET variable. + * If the data model is not found, an HTTP exception will be raised. + * @param integer the ID of the model to be loaded + */ + public function loadModel($id) + { + $model=Veranstaltung::model()->findByPk($id); + if($model===null) + throw new CHttpException(404,'The requested page does not exist.'); + return $model; + } + + /** + * Performs the AJAX validation. + * @param CModel the model to be validated + */ + protected function performAjaxValidation($model) + { + if(isset($_POST['ajax']) && $_POST['ajax']==='veranstaltung-form') + { + echo CActiveForm::validate($model); + Yii::app()->end(); + } + } +} diff --git a/protected/controllers/VereinController.php b/protected/controllers/VereinController.php new file mode 100644 index 0000000..2be85d6 --- /dev/null +++ b/protected/controllers/VereinController.php @@ -0,0 +1,164 @@ +array('index','create','view','update','delete'), + 'users'=>array('admin'), + ), + array('deny', // deny all users + 'actions'=>array('create','update','delete'), + 'users'=>array('*'), + ), + ); + } + + /** + * Displays a particular model. + * @param integer $id the ID of the model to be displayed + */ + public function actionView($id) + { + $this->render('view',array( + 'model'=>$this->loadModel($id), + )); + } + + /** + * Creates a new model. + * If creation is successful, the browser will be redirected to the 'view' page. + */ + public function actionCreate() + { + $model=new Verein; + + // Uncomment the following line if AJAX validation is needed + // $this->performAjaxValidation($model); + + if(isset($_POST['Verein'])) + { + $model->attributes=$_POST['Verein']; + if($model->save()) + $this->redirect(array('view','id'=>$model->id)); + } + + $standorte = Standort::model()->findAll(array("condition"=>"published=1 and type='Stand'")); + $this->render('create',array( + 'model'=>$model, + 'standorte'=>$standorte + )); + } + + /** + * Updates a particular model. + * If update is successful, the browser will be redirected to the 'view' page. + * @param integer $id the ID of the model to be updated + */ + public function actionUpdate($id) + { + $model=$this->loadModel($id); + + // Uncomment the following line if AJAX validation is needed + // $this->performAjaxValidation($model); + + if(isset($_POST['Verein'])) + { + $model->attributes=$_POST['Verein']; + if($model->save()) + $this->redirect(array('view','id'=>$model->id)); + } + + $standorte = Standort::model()->findAll(array("condition"=>"published=1 and type='Stand'")); + $slugs = User::model()->findAll(); + $this->render('update',array( + 'model'=>$model, + 'standorte'=>$standorte, + 'slugs'=>$slugs + )); + } + + /** + * Deletes a particular model. + * If deletion is successful, the browser will be redirected to the 'admin' page. + * @param integer $id the ID of the model to be deleted + */ + public function actionDelete($id) + { + if(Yii::app()->request->isPostRequest) + { + // we only allow deletion via POST request + $this->loadModel($id)->delete(); + + // if AJAX request (triggered by deletion via admin grid view), we should not redirect the browser + if(!isset($_GET['ajax'])) + $this->redirect(isset($_POST['returnUrl']) ? $_POST['returnUrl'] : array('admin')); + } + else + throw new CHttpException(400,'Invalid request. Please do not repeat this request again.'); + } + + /** + * Lists all models. + */ + public function actionIndex() + { + $model=new Verein('search'); + $model->unsetAttributes(); // clear any default values + if(isset($_GET['Verein'])) + $model->attributes=$_GET['Verein']; + + $this->render('index',array( + 'model'=>$model, + )); + } + + /** + * Returns the data model based on the primary key given in the GET variable. + * If the data model is not found, an HTTP exception will be raised. + * @param integer the ID of the model to be loaded + */ + public function loadModel($id) + { + $model=Verein::model()->findByPk($id); + if($model===null) + throw new CHttpException(404,'The requested page does not exist.'); + return $model; + } + + /** + * Performs the AJAX validation. + * @param CModel the model to be validated + */ + protected function performAjaxValidation($model) + { + if(isset($_POST['ajax']) && $_POST['ajax']==='verein-form') + { + echo CActiveForm::validate($model); + Yii::app()->end(); + } + } +} diff --git a/protected/extensions/extckeditor/assets/CHANGES.html b/protected/extensions/extckeditor/assets/CHANGES.html new file mode 100644 index 0000000..3038039 --- /dev/null +++ b/protected/extensions/extckeditor/assets/CHANGES.html @@ -0,0 +1,1503 @@ + + + + + Changelog — CKEditor + + + + +

+ CKEditor Changelog +

+

+ CKEditor 3.6.3

+

+ New features:

+ +

+ Fixed issues:

+ +

+ CKEditor 3.6.2

+

+ New features:

+ +

+ Fixed issues:

+ +

+ CKEditor 3.6.1

+

+ New features:

+ +

+ Fixed issues:

+ +

+ CKEditor 3.6

+

+ New features:

+ +

+ Fixed issues:

+ +

+ CKEditor 3.5.4

+

+ Fixed issues:

+ +

+ CKEditor 3.5.3

+

+ New features:

+ +

+ Fixed issues:

+ +

+ CKEditor 3.5.2

+

+ Fixed issues:

+ +

+ CKEditor 3.5.1

+

+ New features:

+ +

+ Fixed issues:

+ +

+ CKEditor 3.5

+

+ New features:

+ +

+ Fixed issues:

+ +

+ CKEditor 3.4.3

+

+ Fixed issues:

+ +

+ CKEditor 3.4.2

+

+ New features:

+ +

+ Fixed issues:

+ +

+ CKEditor 3.4.1

+

+ New features:

+ +

+ Fixed issues:

+ +

+ CKEditor 3.4

+

+ Fixed issues:

+ +

+ CKEditor 3.4 Beta

+

+ New features:

+ +

+ Fixed issues:

+ +

+ CKEditor 3.3.2

+

+ New features:

+ +

+ Fixed issues:

+ +

+ CKEditor 3.3.1

+

+ Fixed issues:

+ +

+ CKEditor 3.3

+

+ New features:

+ +

+ CKEditor 3.2.2

+

+ New features:

+ +

+ Fixed issues:

+ +

+ CKEditor 3.2.1

+

+ New features:

+ +

+ Fixed issues:

+ +

+ CKEditor 3.2

+

+ New features:

+ +

+ Fixed issues:

+ +

+ CKEditor 3.1.1

+

+ New features:

+ +

+ Fixed issues:

+ +

+ CKEditor 3.1

+

+ New features:

+ +

+ Fixed issues:

+ +

+ CKEditor 3.0.2

+

+ New features:

+ +

+ Fixed issues:

+ +

+ CKEditor 3.0.1

+

+ New features:

+ +

+ Fixed issues:

+ +

+ CKEditor 3.0

+

+ New features:

+ +

+ Fixed issues:

+ +

+ CKEditor 3.0 RC

+

+ Changelog starts at this release.

+ + + diff --git a/protected/extensions/wetter/Wetter.php b/protected/extensions/wetter/Wetter.php index 613078c..0e913a3 100644 --- a/protected/extensions/wetter/Wetter.php +++ b/protected/extensions/wetter/Wetter.php @@ -1,11 +1,14 @@ cache->get('extensions.Wetter.wetter'); if($wetter===false) { - $mwetter = $this->website_wetter('71332','Germany'); + $mwetter = $this->website_wetter($this->ort,'Germany'); + $wetter['Ort'] = $this->ort; $wetter['jetzt']['tag']='Aktuell'; $wetter['jetzt']['temperatur'] = (string) $mwetter[0]['temperatur']; $wetter['jetzt']['zustand'] = (string) $mwetter[0]['zustand']; diff --git a/protected/extensions/wetter/views/wetter.php b/protected/extensions/wetter/views/wetter.php index 5e81fd2..0ec96da 100644 --- a/protected/extensions/wetter/views/wetter.php +++ b/protected/extensions/wetter/views/wetter.php @@ -1,28 +1,30 @@ -user->getFlashes() as $key => $message) { echo '
' . $message . "
\n"; - } + }*/ ?> -
-
-
- +
Das Wetter in
+

+

+
+
- -


- " - .$wetter['jetzt']['zustand']." bei ".$wetter['jetzt']['temperatur']."°C"; ?>
Min. °C bis max. °C

-
-
-
-
- -


- ".$wetter['morgen']['zustand']." bei min. ".$wetter['morgen']['tiefsttemperatur']."°C bis max. ".$wetter['morgen']['hoechsttemperatur']."°C"; ?>

-
-
-
+
+ " + .$wetter['jetzt']['zustand']." bei ".$wetter['jetzt']['temperatur']."°C"; ?>
Min. °C bis max. °C +
+
+
+
+ +
+ ".$wetter['morgen']['zustand']." bei min. ".$wetter['morgen']['tiefsttemperatur']."°C bis max. ".$wetter['morgen']['hoechsttemperatur']."°C"; ?> + +
+
+
+

diff --git a/protected/models/Angebot.php b/protected/models/Angebot.php new file mode 100644 index 0000000..d6ae02a --- /dev/null +++ b/protected/models/Angebot.php @@ -0,0 +1,106 @@ +true), + array('name', 'length', 'max'=>80), + array('beschreibung', 'safe'), + // The following rule is used by search(). + // Please remove those attributes that should not be searched. + array('id, kategorie_id, name, beschreibung, published', 'safe', 'on'=>'search'), + ); + } + + /** + * @return array relational rules. + */ + public function relations() + { + // NOTE: you may need to adjust the relation name and the related + // class name for the relations automatically generated below. + return array( + "kategorie"=>array(self::HAS_ONE, "Kategorie", array('id'=>'kategorie_id')), + "angebot_vereine"=>array(self::HAS_MANY, "AngebotVerein", array('angebot_id'=>'id')) + ); + } + + /** + * @return array customized attribute labels (name=>label) + */ + public function attributeLabels() + { + return array( + 'id' => 'ID', + 'kategorie_id' => 'Kategorie', + 'kategorie' => 'Kategorie', + 'name' => 'Name', + 'beschreibung' => 'Beschreibung', + 'published' => 'Öffentlich', + ); + } + + /** + * Retrieves a list of models based on the current search/filter conditions. + * @return CActiveDataProvider the data provider that can return the models based on the search/filter conditions. + */ + public function search() + { + // Warning: Please modify the following code to remove attributes that + // should not be searched. + + $criteria=new CDbCriteria; + + $criteria->compare('id',$this->id); + $criteria->compare('kategorie_id',$this->kategorie_id); + $criteria->compare('name',$this->name,true); + $criteria->compare('beschreibung',$this->beschreibung,true); + $criteria->compare('published',$this->published); + + return new CActiveDataProvider($this, array( + 'criteria'=>$criteria, + )); + } + + public function behaviors() { + return array( + 'LoggableBehavior'=>'application.modules.auditTrail.behaviors.LoggableBehavior', + ); + } +} \ No newline at end of file diff --git a/protected/models/AngebotVerein.php b/protected/models/AngebotVerein.php new file mode 100644 index 0000000..26c6dab --- /dev/null +++ b/protected/models/AngebotVerein.php @@ -0,0 +1,108 @@ +true), + array('menge, preis', 'numerical'), + array('einheit', 'length', 'max'=>20), + // The following rule is used by search(). + // Please remove those attributes that should not be searched. + array('angebot_id, verein_id, menge, einheit, preis, published', 'safe', 'on'=>'search'), + ); + } + + /** + * @return array relational rules. + */ + public function relations() + { + // NOTE: you may need to adjust the relation name and the related + // class name for the relations automatically generated below. + return array( + "angebot"=>array(self::HAS_ONE, "Angebot", array('id'=>'angebot_id')), + "verein"=>array(self::HAS_ONE, "Verein", array('id'=>'verein_id')) + ); + } + + /** + * @return array customized attribute labels (name=>label) + */ + public function attributeLabels() + { + return array( + 'angebot_id' => 'Angebot', + 'verein_id' => 'Verein', + 'menge' => 'Menge', + 'einheit' => 'Einheit', + 'preis' => 'Preis', + 'published' => 'Öffentlich', + ); + } + + /** + * Retrieves a list of models based on the current search/filter conditions. + * @return CActiveDataProvider the data provider that can return the models based on the search/filter conditions. + */ + public function search() + { + // Warning: Please modify the following code to remove attributes that + // should not be searched. + + $criteria=new CDbCriteria; + + $criteria->compare('angebot_id',$this->angebot_id); + $criteria->compare('verein_id',$this->verein_id); + $criteria->compare('menge',$this->menge); + $criteria->compare('einheit',$this->einheit,true); + $criteria->compare('preis',$this->preis); + $criteria->compare('published',$this->published); + + return new CActiveDataProvider($this, array( + 'criteria'=>$criteria, + )); + } + + public function behaviors() { + return array( + 'LoggableBehavior'=>'application.modules.auditTrail.behaviors.LoggableBehavior', + ); + } +} \ No newline at end of file diff --git a/protected/models/CmsPage.php b/protected/models/CmsPage.php deleted file mode 100644 index 92acf23..0000000 --- a/protected/models/CmsPage.php +++ /dev/null @@ -1,133 +0,0 @@ -true), - array('status', 'in', 'range'=>array(1,2,3)), - array('title, slug', 'length', 'max'=>255), - // The following rule is used by search(). - // Please remove those attributes that should not be searched. - array('id, content, title, create_time, update_time, status, slug', 'safe', 'on'=>'search'), - //array('title, status', 'safe', 'on'=>'search'), - ); - } - - /** - * @return array relational rules. - */ - public function relations() - { - // NOTE: you may need to adjust the relation name and the related - // class name for the relations automatically generated below. - return array( - ); - } - - /** - * @return array customized attribute labels (name=>label) - */ - public function attributeLabels() - { - return array( - 'id' => 'ID', - 'content' => 'Content', - 'title' => 'Title', - 'create_time' => 'Create Time', - 'update_time' => 'Update Time', - 'status' => 'Status', - 'slug' => 'Slug', - ); - } - - /** - * Retrieves a list of models based on the current search/filter conditions. - * @return CActiveDataProvider the data provider that can return the models based on the search/filter conditions. - */ - public function search() - { - // Warning: Please modify the following code to remove attributes that - // should not be searched. - - $criteria=new CDbCriteria; - - $criteria->compare('id',$this->id); - $criteria->compare('content',$this->content,true); - $criteria->compare('title',$this->title,true); - $criteria->compare('create_time',$this->create_time,true); - $criteria->compare('update_time',$this->update_time,true); - $criteria->compare('status',$this->status); - $criteria->compare('slug',$this->slug,true); - - return new CActiveDataProvider($this, array( - 'criteria'=>$criteria, - )); - } - - public function getUrl() - { - return Yii::app()->createUrl('cms', array( - 'slug'=>$this->slug, - )); - } - - protected function beforeSave() - { - if(parent::beforeSave()) - { - if($this->isNewRecord) - { - $this->create_time=$this->update_time=new CDbExpression('NOW()'); - //$this->author_id=Yii::app()->user->id; - } - else - $this->update_time=new CDbExpression('NOW()'); - return true; - } - else - return false; - } -} \ No newline at end of file diff --git a/protected/models/Kategorie.php b/protected/models/Kategorie.php new file mode 100644 index 0000000..93c799d --- /dev/null +++ b/protected/models/Kategorie.php @@ -0,0 +1,107 @@ +true), + array('default_menge', 'numerical', "numberPattern"=>"/^\s*[-+]?[0-9]*(,|\.)?[0-9]+([eE][-+]?[0-9]+)?\s*$/"), + array('name, einheiten', 'length', 'max'=>100), + array('default_einheit', 'length', 'max'=>20), + // The following rule is used by search(). + // Please remove those attributes that should not be searched. + array('id, name, einheiten, default_menge, default_einheit, published', 'safe', 'on'=>'search'), + ); + } + + /** + * @return array relational rules. + */ + public function relations() + { + // NOTE: you may need to adjust the relation name and the related + // class name for the relations automatically generated below. + return array( + ); + } + + /** + * @return array customized attribute labels (name=>label) + */ + public function attributeLabels() + { + return array( + 'id' => 'ID', + 'name' => 'Name', + 'einheiten' => 'Einheiten', + 'default_menge' => 'Standardmenge', + 'default_einheit' => 'Standardeinheit', + 'published' => 'Published', + ); + } + + /** + * Retrieves a list of models based on the current search/filter conditions. + * @return CActiveDataProvider the data provider that can return the models based on the search/filter conditions. + */ + public function search() + { + // Warning: Please modify the following code to remove attributes that + // should not be searched. + + $criteria=new CDbCriteria; + + $criteria->compare('id',$this->id); + $criteria->compare('name',$this->name,true); + $criteria->compare('einheiten',$this->einheiten,true); + $criteria->compare('default_menge',$this->default_menge); + $criteria->compare('default_einheit',$this->default_einheit,true); + $criteria->compare('published',$this->published); + + return new CActiveDataProvider($this, array( + 'criteria'=>$criteria, + )); + } + + public function behaviors() { + return array( + 'LoggableBehavior'=>'application.modules.auditTrail.behaviors.LoggableBehavior', + ); + } +} \ No newline at end of file diff --git a/protected/models/Standort.php b/protected/models/Standort.php new file mode 100644 index 0000000..d62a594 --- /dev/null +++ b/protected/models/Standort.php @@ -0,0 +1,112 @@ +pos_lat = Yii::app()->params['pos_lat']; + $this->pos_long = Yii::app()->params['pos_long']; + } + + /** + * @return string the associated database table name + */ + public function tableName() + { + return 'standorte'; + } + + /** + * @return array validation rules for model attributes. + */ + public function rules() + { + // NOTE: you should only define rules for those attributes that + // will receive user inputs. + return array( + array('name, pos_lat, pos_long, type', 'required'), + array('published', 'numerical', 'integerOnly'=>true), + array('pos_lat, pos_long', 'numerical'), + array('type', 'length', 'max'=>6), + array('name', 'length', 'max'=>80), + // The following rule is used by search(). + // Please remove those attributes that should not be searched. + array('id, type, name, pos_lat, pos_long, published', 'safe', 'on'=>'search'), + ); + } + + /** + * @return array relational rules. + */ + public function relations() + { + // NOTE: you may need to adjust the relation name and the related + // class name for the relations automatically generated below. + return array( + ); + } + + /** + * @return array customized attribute labels (name=>label) + */ + public function attributeLabels() + { + return array( + 'id' => 'ID', + 'type' => 'Typ', + 'name' => 'Name', + 'pos_lat' => 'Pos Lat', + 'pos_long' => 'Pos Long', + 'published' => 'Öffentlich', + ); + } + + /** + * Retrieves a list of models based on the current search/filter conditions. + * @return CActiveDataProvider the data provider that can return the models based on the search/filter conditions. + */ + public function search() + { + // Warning: Please modify the following code to remove attributes that + // should not be searched. + + $criteria=new CDbCriteria; + + $criteria->compare('id',$this->id); + $criteria->compare('type',$this->type,true); + $criteria->compare('name',$this->name,true); + $criteria->compare('pos_lat',$this->pos_lat); + $criteria->compare('pos_long',$this->pos_long); + $criteria->compare('published',$this->published); + + return new CActiveDataProvider($this, array( + 'criteria'=>$criteria, + )); + } + + public function behaviors() { + return array( + 'LoggableBehavior'=>'application.modules.auditTrail.behaviors.LoggableBehavior', + ); + } +} \ No newline at end of file diff --git a/protected/models/Veranstaltung.php b/protected/models/Veranstaltung.php new file mode 100644 index 0000000..64c7854 --- /dev/null +++ b/protected/models/Veranstaltung.php @@ -0,0 +1,130 @@ +true), + array('titel', 'length', 'max'=>100), + array('startzeit, endzeit, beschreibung', 'safe'), + array('startzeit, endzeit', 'date', 'format'=>'dd.MM.yyyy HH:mm'), + array('startzeit, endzeit', 'DateRangeValidator', 'minDate'=>Yii::app()->params['start_date'].' '.Yii::app()->params['start_time'], 'maxDate'=>Yii::app()->params['end_date'].' '.Yii::app()->params['end_time']), + array('startzeit', 'DateCompareValidator', 'compareAttribute'=>'endzeit', 'operator'=>'<'), + // The following rule is used by search(). + // Please remove those attributes that should not be searched. + array('id, verein_id, titel, startzeit, endzeit, beschreibung, standort_id, published', 'safe', 'on'=>'search'), + ); + } + + /** + * @return array relational rules. + */ + public function relations() + { + // NOTE: you may need to adjust the relation name and the related + // class name for the relations automatically generated below. + return array( + 'standort' => array(self::BELONGS_TO, 'Standort', 'standort_id'), + 'verein' => array(self::BELONGS_TO, 'Verein', 'verein_id'), + ); + } + + /** + * @return array customized attribute labels (name=>label) + */ + public function attributeLabels() + { + return array( + 'id' => 'ID', + 'verein_id' => 'Verein', + 'titel' => 'Titel', + 'startzeit' => 'Startzeit', + 'endzeit' => 'Endzeit', + 'beschreibung' => 'Beschreibung', + 'standort_id' => 'Standort', + 'published' => 'Öffentlich', + ); + } + + /** + * Retrieves a list of models based on the current search/filter conditions. + * @return CActiveDataProvider the data provider that can return the models based on the search/filter conditions. + */ + public function search() + { + // Warning: Please modify the following code to remove attributes that + // should not be searched. + + $criteria=new CDbCriteria; + + $criteria->compare('id',$this->id); + $criteria->compare('verein_id',$this->verein_id); + $criteria->compare('titel',$this->titel,true); + $criteria->compare('startzeit',$this->startzeit,true); + $criteria->compare('endzeit',$this->endzeit,true); + $criteria->compare('beschreibung',$this->beschreibung,true); + $criteria->compare('standort_id',$this->standort_id); + $criteria->compare('published',$this->published); + + return new CActiveDataProvider($this, array( + 'criteria'=>$criteria, + )); + } + + public function beforeSave() { + $isValid = parent::beforeSave(); + if ($isValid) { + $this->startzeit = Format::dbDateTime($this->startzeit); + $this->endzeit = Format::dbDateTime($this->endzeit); + } + return $isValid; + } + + public function behaviors() { + return array( + 'LoggableBehavior'=>'application.modules.auditTrail.behaviors.LoggableBehavior', + ); + } +} \ No newline at end of file diff --git a/protected/models/Verein.php b/protected/models/Verein.php new file mode 100644 index 0000000..f0d30dd --- /dev/null +++ b/protected/models/Verein.php @@ -0,0 +1,125 @@ +true), + array('name, url', 'length', 'max'=>255), + array('bild, email, slug', 'length', 'max'=>100), + array("url", "url", "allowEmpty"=>true, "message"=>"Die eingebene URL ist ungültig."), + array("email", "email", "message"=>"Die eingebene eMail-Adresse ist ungültig."), + array("uploadedImage", "file", "types"=>"jpg, gif, png", "allowEmpty"=>true, "wrongType"=>'Die Datei "{file}" konnte nicht hochgeladen werden. Es sind nur Dateien mit den folgenden Endungen erlaubt: {extensions}.'), + array('kontaktdaten, beschreibung', 'safe'), + // The following rule is used by search(). + // Please remove those attributes that should not be searched. + array('id, name, url, bild, email, slug, kontaktdaten, beschreibung, standort_id, published', 'safe', 'on'=>'search'), + ); + } + + /** + * @return array relational rules. + */ + public function relations() + { + // NOTE: you may need to adjust the relation name and the related + // class name for the relations automatically generated below. + return array( + "standort"=>array(self::HAS_ONE, "Standort", array('id'=>'standort_id')) + ); + } + + /** + * @return array customized attribute labels (name=>label) + */ + public function attributeLabels() + { + return array( + 'id' => 'ID', + 'name' => 'Name', + 'url' => 'Homepage', + 'bild' => 'Logo', + 'email' => 'Email', + 'slug' => 'Anmeldename', + 'kontaktdaten' => 'Kontaktdaten', + 'beschreibung' => 'Beschreibung', + 'standort_id' => 'Standort', + 'standort' => 'Standort', + 'published' => 'Öffentlich', + ); + } + + /** + * Retrieves a list of models based on the current search/filter conditions. + * @return CActiveDataProvider the data provider that can return the models based on the search/filter conditions. + */ + public function search() + { + // Warning: Please modify the following code to remove attributes that + // should not be searched. + + $criteria=new CDbCriteria; + + $criteria->compare('id',$this->id); + $criteria->compare('name',$this->name,true); + $criteria->compare('url',$this->url,true); + $criteria->compare('bild',$this->bild,true); + $criteria->compare('email',$this->email,true); + $criteria->compare('slug',$this->slug,true); + $criteria->compare('kontaktdaten',$this->kontaktdaten,true); + $criteria->compare('beschreibung',$this->beschreibung,true); + $criteria->compare('standort_id',$this->standort_id); + $criteria->compare('published',$this->published); + + return new CActiveDataProvider($this, array( + 'criteria'=>$criteria, + )); + } + + public function behaviors() { + return array( +// 'LoggableBehavior'=>'application.modules.auditTrail.behaviors.LoggableBehavior', + ); + } +} \ No newline at end of file diff --git a/protected/modules/cms/models/Cms.php b/protected/modules/cms/models/Cms.php index 885e589..ca64bad 100644 --- a/protected/modules/cms/models/Cms.php +++ b/protected/modules/cms/models/Cms.php @@ -35,8 +35,12 @@ class Cms { $column .' = :id', array( ':id' => $id)); - if(!$sitecontent && Cms::module()->strict404raising) + if(!$sitecontent && Yii::app()->getModule('cms')->strict404raising) throw new CHttpException(404); + else if (!$sitecontent) { + $sitecontent = new Sitecontent(); + $sitecontent->content = ""; + } else if($return) return $sitecontent->content; else @@ -57,12 +61,12 @@ class Cms { } } public static function getMenuPoints($id) { - + $tmp=array(); if(is_numeric($id)) $sitecontent = Sitecontent::model()->findByAttributes(array('id'=> $id)); $childs = $sitecontent->childs; if($childs) { - $tmp=array(); + foreach($sitecontent->childs as $child) { Yii::trace("Lala","Debug"); $tmp = array_merge($tmp,array(array('label'=>$child->title, 'url'=>array('/cms/sitecontent/view', 'page'=>$child->title_url)))); diff --git a/protected/runtime/application.log b/protected/runtime/application.log index 03f7301..d3b2c1c 100644 --- a/protected/runtime/application.log +++ b/protected/runtime/application.log @@ -202,3 +202,4688 @@ Stack trace: #22 {main} REQUEST_URI=/index.php?r=cmsPage/view&id=1 --- +2012/04/18 18:46:05 [error] [php] Invalid argument supplied for foreach() (D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\zii\widgets\CMenu.php:255) +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(148): CMenu->init() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(173): SiteController->createWidget() +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(49): SiteController->widget() +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require() +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): SiteController->renderInternal() +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(77): SiteController->renderFile() +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(55): CContentDecorator->decorate() +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\COutputProcessor.php(45): CContentDecorator->processOutput() +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(207): CContentDecorator->run() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(301): SiteController->endWidget() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\layouts\column1.php(5): SiteController->endContent() +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): SiteController->renderInternal() +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): SiteController->renderFile() +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\SiteController.php(32): SiteController->render() +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SiteController->actionIndex() +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams() +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(287): SiteController->runAction() +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): SiteController->runActionWithFilters() +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): SiteController->run() +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController() +#21 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#22 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CWebApplication->run() +REQUEST_URI=/index.php?r=site/index +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php (49) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\layouts\column1.php (5) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\SiteController.php (32) +2012/04/18 18:51:54 [error] [php] include(CHmtl.php) [function.include]: failed to open stream: No such file or directory (D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\YiiBase.php:418) +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(32): spl_autoload_call() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require() +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): SiteController->renderInternal() +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(77): SiteController->renderFile() +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(55): CContentDecorator->decorate() +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\COutputProcessor.php(45): CContentDecorator->processOutput() +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(207): CContentDecorator->run() +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(301): SiteController->endWidget() +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\layouts\column1.php(5): SiteController->endContent() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): SiteController->renderInternal() +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): SiteController->renderFile() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CViewAction.php(141): SiteController->render() +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CAction.php(75): CViewAction->run() +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CViewAction->runWithParams() +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(287): SiteController->runAction() +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): SiteController->runActionWithFilters() +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): SiteController->run() +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController() +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CWebApplication->run() +REQUEST_URI=/index.php?r=site/page&view=about +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php (32) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\layouts\column1.php (5) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php (13) +2012/04/18 18:52:10 [error] [exception.CException] exception 'CException' with message 'Property "CWebApplication.title" is not defined.' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CComponent.php:131 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CModule.php(106): CComponent->__get('title') +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(32): CModule->__get('title') +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(77): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(55): CContentDecorator->decorate('
run() +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(301): CBaseController->endWidget('CContentDecorat...') +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\layouts\column1.php(5): CBaseController->endContent() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CViewAction.php(141): CController->render('pages/about') +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CAction.php(75): CViewAction->run() +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CAction->runWithParams(Array) +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(287): CController->runAction(Object(CViewAction)) +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CController->runActionWithFilters(Object(CViewAction), Array) +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CController->run('page') +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('site/page') +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#21 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#22 {main} +REQUEST_URI=/index.php?r=site/page&view=about +HTTP_REFERER=http://localhost/index.php?r=site/index +--- +2012/04/18 20:35:12 [error] [exception.CException] exception 'CException' with message 'Alias "application.extensions.widgets.weatherForecast.WeatherForecast" is invalid. Make sure it points to an existing PHP file.' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\YiiBase.php:318 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWidgetFactory.php(147): YiiBase::import('application.ext...', true) +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(147): CWidgetFactory->createWidget(Object(SiteController), 'application.ext...', Array) +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(173): CBaseController->createWidget('application.ext...', Array) +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(144): CBaseController->widget('application.ext...', Array) +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(77): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(55): CContentDecorator->decorate('
run() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(301): CBaseController->endWidget('CContentDecorat...') +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\layouts\column1.php(5): CBaseController->endContent() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\SiteController.php(32): CController->render('index') +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SiteController->actionIndex() +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(287): CController->runAction(Object(CInlineAction)) +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CController->run('index') +#21 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('site/index') +#22 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#23 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#24 {main} +REQUEST_URI=/index.php?r=site/index +HTTP_REFERER=http://localhost/index.php?r=cmsPage/view&id=1 +--- +2012/04/18 20:35:13 [error] [exception.CException] exception 'CException' with message 'Alias "application.extensions.widgets.weatherForecast.WeatherForecast" is invalid. Make sure it points to an existing PHP file.' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\YiiBase.php:318 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWidgetFactory.php(147): YiiBase::import('application.ext...', true) +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(147): CWidgetFactory->createWidget(Object(SiteController), 'application.ext...', Array) +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(173): CBaseController->createWidget('application.ext...', Array) +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(144): CBaseController->widget('application.ext...', Array) +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(77): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(55): CContentDecorator->decorate('
run() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(301): CBaseController->endWidget('CContentDecorat...') +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\layouts\column1.php(5): CBaseController->endContent() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\SiteController.php(32): CController->render('index') +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SiteController->actionIndex() +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(287): CController->runAction(Object(CInlineAction)) +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CController->run('index') +#21 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('site/index') +#22 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#23 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#24 {main} +REQUEST_URI=/index.php?r=site/index +HTTP_REFERER=http://localhost/index.php?r=cmsPage/view&id=1 +--- +2012/04/18 20:37:35 [error] [exception.CException] exception 'CException' with message 'Alias "application.extensions.widgets.weatherForecast.WeatherForecast" is invalid. Make sure it points to an existing PHP file.' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\YiiBase.php:318 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWidgetFactory.php(147): YiiBase::import('application.ext...', true) +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(147): CWidgetFactory->createWidget(Object(SiteController), 'application.ext...', Array) +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(173): CBaseController->createWidget('application.ext...', Array) +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(144): CBaseController->widget('application.ext...', Array) +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(77): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(55): CContentDecorator->decorate('
run() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(301): CBaseController->endWidget('CContentDecorat...') +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\layouts\column1.php(5): CBaseController->endContent() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\SiteController.php(32): CController->render('index') +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SiteController->actionIndex() +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(287): CController->runAction(Object(CInlineAction)) +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CController->run('index') +#21 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('site/index') +#22 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#23 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#24 {main} +REQUEST_URI=/index.php?r=site/index +HTTP_REFERER=http://localhost/index.php?r=cmsPage/view&id=1 +--- +2012/04/18 20:37:36 [error] [exception.CException] exception 'CException' with message 'Alias "application.extensions.widgets.weatherForecast.WeatherForecast" is invalid. Make sure it points to an existing PHP file.' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\YiiBase.php:318 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWidgetFactory.php(147): YiiBase::import('application.ext...', true) +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(147): CWidgetFactory->createWidget(Object(SiteController), 'application.ext...', Array) +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(173): CBaseController->createWidget('application.ext...', Array) +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(144): CBaseController->widget('application.ext...', Array) +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(77): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(55): CContentDecorator->decorate('
run() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(301): CBaseController->endWidget('CContentDecorat...') +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\layouts\column1.php(5): CBaseController->endContent() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\SiteController.php(32): CController->render('index') +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SiteController->actionIndex() +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(287): CController->runAction(Object(CInlineAction)) +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CController->run('index') +#21 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('site/index') +#22 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#23 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#24 {main} +REQUEST_URI=/index.php?r=site/index +HTTP_REFERER=http://localhost/index.php?r=cmsPage/view&id=1 +--- +2012/04/18 20:37:38 [error] [exception.CException] exception 'CException' with message 'Alias "application.extensions.widgets.weatherForecast.WeatherForecast" is invalid. Make sure it points to an existing PHP file.' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\YiiBase.php:318 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWidgetFactory.php(147): YiiBase::import('application.ext...', true) +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(147): CWidgetFactory->createWidget(Object(SiteController), 'application.ext...', Array) +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(173): CBaseController->createWidget('application.ext...', Array) +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(144): CBaseController->widget('application.ext...', Array) +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(77): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(55): CContentDecorator->decorate('
run() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(301): CBaseController->endWidget('CContentDecorat...') +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\layouts\column1.php(5): CBaseController->endContent() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\SiteController.php(32): CController->render('index') +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SiteController->actionIndex() +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(287): CController->runAction(Object(CInlineAction)) +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CController->run('index') +#21 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('site/index') +#22 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#23 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#24 {main} +REQUEST_URI=/index.php?r=site/index +HTTP_REFERER=http://localhost/index.php?r=cmsPage/view&id=1 +--- +2012/04/18 20:37:39 [error] [exception.CException] exception 'CException' with message 'Alias "application.extensions.widgets.weatherForecast.WeatherForecast" is invalid. Make sure it points to an existing PHP file.' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\YiiBase.php:318 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWidgetFactory.php(147): YiiBase::import('application.ext...', true) +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(147): CWidgetFactory->createWidget(Object(SiteController), 'application.ext...', Array) +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(173): CBaseController->createWidget('application.ext...', Array) +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(144): CBaseController->widget('application.ext...', Array) +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(77): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(55): CContentDecorator->decorate('
run() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(301): CBaseController->endWidget('CContentDecorat...') +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\layouts\column1.php(5): CBaseController->endContent() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\SiteController.php(32): CController->render('index') +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SiteController->actionIndex() +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(287): CController->runAction(Object(CInlineAction)) +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CController->run('index') +#21 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('site/index') +#22 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#23 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#24 {main} +REQUEST_URI=/index.php?r=site/index +HTTP_REFERER=http://localhost/index.php?r=cmsPage/view&id=1 +--- +2012/04/18 20:37:40 [error] [exception.CException] exception 'CException' with message 'Alias "application.extensions.widgets.weatherForecast.WeatherForecast" is invalid. Make sure it points to an existing PHP file.' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\YiiBase.php:318 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWidgetFactory.php(147): YiiBase::import('application.ext...', true) +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(147): CWidgetFactory->createWidget(Object(SiteController), 'application.ext...', Array) +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(173): CBaseController->createWidget('application.ext...', Array) +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(144): CBaseController->widget('application.ext...', Array) +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(77): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(55): CContentDecorator->decorate('
run() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(301): CBaseController->endWidget('CContentDecorat...') +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\layouts\column1.php(5): CBaseController->endContent() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\SiteController.php(32): CController->render('index') +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SiteController->actionIndex() +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(287): CController->runAction(Object(CInlineAction)) +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CController->run('index') +#21 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('site/index') +#22 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#23 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#24 {main} +REQUEST_URI=/index.php?r=site/index +HTTP_REFERER=http://localhost/index.php?r=cmsPage/view&id=1 +--- +2012/04/18 20:38:43 [error] [exception.CException] exception 'CException' with message 'Alias "application.extensions.widgets.weatherForecast.WeatherForecast" is invalid. Make sure it points to an existing PHP file.' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\YiiBase.php:318 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWidgetFactory.php(147): YiiBase::import('application.ext...', true) +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(147): CWidgetFactory->createWidget(Object(SiteController), 'application.ext...', Array) +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(173): CBaseController->createWidget('application.ext...', Array) +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(144): CBaseController->widget('application.ext...', Array) +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(77): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(55): CContentDecorator->decorate('
run() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(301): CBaseController->endWidget('CContentDecorat...') +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\layouts\column1.php(5): CBaseController->endContent() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\SiteController.php(32): CController->render('index') +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SiteController->actionIndex() +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(287): CController->runAction(Object(CInlineAction)) +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CController->run('index') +#21 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('site/index') +#22 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#23 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#24 {main} +REQUEST_URI=/index.php?r=site/index +HTTP_REFERER=http://localhost/index.php?r=cmsPage/view&id=1 +--- +2012/04/18 20:38:44 [error] [exception.CException] exception 'CException' with message 'Alias "application.extensions.widgets.weatherForecast.WeatherForecast" is invalid. Make sure it points to an existing PHP file.' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\YiiBase.php:318 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWidgetFactory.php(147): YiiBase::import('application.ext...', true) +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(147): CWidgetFactory->createWidget(Object(SiteController), 'application.ext...', Array) +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(173): CBaseController->createWidget('application.ext...', Array) +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(144): CBaseController->widget('application.ext...', Array) +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(77): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(55): CContentDecorator->decorate('
run() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(301): CBaseController->endWidget('CContentDecorat...') +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\layouts\column1.php(5): CBaseController->endContent() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\SiteController.php(32): CController->render('index') +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SiteController->actionIndex() +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(287): CController->runAction(Object(CInlineAction)) +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CController->run('index') +#21 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('site/index') +#22 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#23 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#24 {main} +REQUEST_URI=/index.php?r=site/index +HTTP_REFERER=http://localhost/index.php?r=cmsPage/view&id=1 +--- +2012/04/18 20:40:13 [error] [exception.CException] exception 'CException' with message 'Alias "extensions.widgets.weatherForecast.WeatherForecast" is invalid. Make sure it points to an existing directory or file.' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\YiiBase.php:343 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWidgetFactory.php(147): YiiBase::import('extensions.widg...', true) +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(147): CWidgetFactory->createWidget(Object(SiteController), 'extensions.widg...', Array) +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(173): CBaseController->createWidget('extensions.widg...', Array) +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(144): CBaseController->widget('extensions.widg...', Array) +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(77): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(55): CContentDecorator->decorate('
run() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(301): CBaseController->endWidget('CContentDecorat...') +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\layouts\column1.php(5): CBaseController->endContent() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\SiteController.php(32): CController->render('index') +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SiteController->actionIndex() +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(287): CController->runAction(Object(CInlineAction)) +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CController->run('index') +#21 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('site/index') +#22 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#23 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#24 {main} +REQUEST_URI=/index.php?r=site/index +HTTP_REFERER=http://localhost/index.php?r=cmsPage/view&id=1 +--- +2012/04/18 20:40:14 [error] [exception.CException] exception 'CException' with message 'Alias "extensions.widgets.weatherForecast.WeatherForecast" is invalid. Make sure it points to an existing directory or file.' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\YiiBase.php:343 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWidgetFactory.php(147): YiiBase::import('extensions.widg...', true) +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(147): CWidgetFactory->createWidget(Object(SiteController), 'extensions.widg...', Array) +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(173): CBaseController->createWidget('extensions.widg...', Array) +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(144): CBaseController->widget('extensions.widg...', Array) +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(77): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(55): CContentDecorator->decorate('
run() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(301): CBaseController->endWidget('CContentDecorat...') +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\layouts\column1.php(5): CBaseController->endContent() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\SiteController.php(32): CController->render('index') +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SiteController->actionIndex() +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(287): CController->runAction(Object(CInlineAction)) +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CController->run('index') +#21 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('site/index') +#22 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#23 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#24 {main} +REQUEST_URI=/index.php?r=site/index +HTTP_REFERER=http://localhost/index.php?r=cmsPage/view&id=1 +--- +2012/04/18 20:40:16 [error] [exception.CException] exception 'CException' with message 'Alias "extensions.widgets.weatherForecast.WeatherForecast" is invalid. Make sure it points to an existing directory or file.' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\YiiBase.php:343 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWidgetFactory.php(147): YiiBase::import('extensions.widg...', true) +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(147): CWidgetFactory->createWidget(Object(SiteController), 'extensions.widg...', Array) +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(173): CBaseController->createWidget('extensions.widg...', Array) +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(144): CBaseController->widget('extensions.widg...', Array) +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(77): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(55): CContentDecorator->decorate('
run() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(301): CBaseController->endWidget('CContentDecorat...') +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\layouts\column1.php(5): CBaseController->endContent() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\SiteController.php(32): CController->render('index') +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SiteController->actionIndex() +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(287): CController->runAction(Object(CInlineAction)) +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CController->run('index') +#21 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('site/index') +#22 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#23 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#24 {main} +REQUEST_URI=/index.php?r=site/index +HTTP_REFERER=http://localhost/index.php?r=cmsPage/view&id=1 +--- +2012/04/18 21:18:14 [error] [php] Undefined index: temperatur (D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\extensions\wetter\views\wetter.php:15) +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CWidget.php(244): Wetter->renderFile() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\extensions\wetter\Wetter.php(6): Wetter->render() +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(174): Wetter->run() +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(134): SiteController->widget() +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require() +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): SiteController->renderInternal() +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(77): SiteController->renderFile() +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(55): CContentDecorator->decorate() +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\COutputProcessor.php(45): CContentDecorator->processOutput() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(207): CContentDecorator->run() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(301): SiteController->endWidget() +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\layouts\column1.php(5): SiteController->endContent() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require() +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): SiteController->renderInternal() +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): SiteController->renderFile() +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\SiteController.php(32): SiteController->render() +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SiteController->actionIndex() +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams() +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(287): SiteController->runAction() +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): SiteController->runActionWithFilters() +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): SiteController->run() +#21 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController() +#22 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#23 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CWebApplication->run() +REQUEST_URI=/index.php?r=site/index +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\extensions\wetter\views\wetter.php (15) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\extensions\wetter\Wetter.php (6) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php (134) +2012/04/19 09:09:44 [error] [exception.Exception] exception 'Exception' with message 'Serialization of 'SimpleXMLElement' is not allowed' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\caching\CCache.php:147 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\caching\CCache.php(147): serialize(Array) +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\extensions\wetter\Wetter.php(9): CCache->set('extensions.Wett...', Array, 3600) +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(174): Wetter->run() +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(135): CBaseController->widget('application.ext...', Array) +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(77): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(55): CContentDecorator->decorate('
run() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(301): CBaseController->endWidget('CContentDecorat...') +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\layouts\column1.php(5): CBaseController->endContent() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\SiteController.php(32): CController->render('index') +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SiteController->actionIndex() +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(287): CController->runAction(Object(CInlineAction)) +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CController->run('index') +#21 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('site/index') +#22 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#23 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#24 {main} + +Next exception 'Exception' with message 'Serialization of 'SimpleXMLElement' is not allowed' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\caching\CCache.php:147 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\caching\CCache.php(0): serialize() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\extensions\wetter\Wetter.php(9): CCache->set('extensions.Wett...', Array, 3600) +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(174): Wetter->run() +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(135): CBaseController->widget('application.ext...', Array) +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(77): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(55): CContentDecorator->decorate('
run() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(301): CBaseController->endWidget('CContentDecorat...') +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\layouts\column1.php(5): CBaseController->endContent() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\SiteController.php(32): CController->render('index') +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SiteController->actionIndex() +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(287): CController->runAction(Object(CInlineAction)) +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CController->run('index') +#21 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('site/index') +#22 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#23 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#24 {main} + +Next exception 'Exception' with message 'Serialization of 'SimpleXMLElement' is not allowed' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\caching\CCache.php:147 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\caching\CCache.php(0): serialize() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\extensions\wetter\Wetter.php(9): CCache->set('extensions.Wett...', Array, 3600) +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(174): Wetter->run() +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(135): CBaseController->widget('application.ext...', Array) +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(77): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(55): CContentDecorator->decorate('
run() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(301): CBaseController->endWidget('CContentDecorat...') +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\layouts\column1.php(5): CBaseController->endContent() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\SiteController.php(32): CController->render('index') +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SiteController->actionIndex() +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(287): CController->runAction(Object(CInlineAction)) +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CController->run('index') +#21 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('site/index') +#22 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#23 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#24 {main} + +Next exception 'Exception' with message 'Serialization of 'SimpleXMLElement' is not allowed' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\caching\CCache.php:147 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\caching\CCache.php(0): serialize() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\extensions\wetter\Wetter.php(9): CCache->set('extensions.Wett...', Array, 3600) +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(174): Wetter->run() +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(135): CBaseController->widget('application.ext...', Array) +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(77): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(55): CContentDecorator->decorate('
run() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(301): CBaseController->endWidget('CContentDecorat...') +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\layouts\column1.php(5): CBaseController->endContent() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\SiteController.php(32): CController->render('index') +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SiteController->actionIndex() +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(287): CController->runAction(Object(CInlineAction)) +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CController->run('index') +#21 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('site/index') +#22 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#23 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#24 {main} + +Next exception 'Exception' with message 'Serialization of 'SimpleXMLElement' is not allowed' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\caching\CCache.php:147 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\caching\CCache.php(0): serialize() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\extensions\wetter\Wetter.php(9): CCache->set('extensions.Wett...', Array, 3600) +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(174): Wetter->run() +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(135): CBaseController->widget('application.ext...', Array) +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(77): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(55): CContentDecorator->decorate('
run() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(301): CBaseController->endWidget('CContentDecorat...') +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\layouts\column1.php(5): CBaseController->endContent() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\SiteController.php(32): CController->render('index') +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SiteController->actionIndex() +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(287): CController->runAction(Object(CInlineAction)) +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CController->run('index') +#21 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('site/index') +#22 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#23 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#24 {main} + +Next exception 'Exception' with message 'Serialization of 'SimpleXMLElement' is not allowed' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\caching\CCache.php:147 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\caching\CCache.php(0): serialize() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\extensions\wetter\Wetter.php(9): CCache->set('extensions.Wett...', Array, 3600) +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(174): Wetter->run() +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(135): CBaseController->widget('application.ext...', Array) +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(77): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(55): CContentDecorator->decorate('
run() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(301): CBaseController->endWidget('CContentDecorat...') +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\layouts\column1.php(5): CBaseController->endContent() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\SiteController.php(32): CController->render('index') +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SiteController->actionIndex() +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(287): CController->runAction(Object(CInlineAction)) +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CController->run('index') +#21 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('site/index') +#22 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#23 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#24 {main} + +Next exception 'Exception' with message 'Serialization of 'SimpleXMLElement' is not allowed' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\caching\CCache.php:147 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\caching\CCache.php(0): serialize() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\extensions\wetter\Wetter.php(9): CCache->set('extensions.Wett...', Array, 3600) +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(174): Wetter->run() +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(135): CBaseController->widget('application.ext...', Array) +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(77): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(55): CContentDecorator->decorate('
run() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(301): CBaseController->endWidget('CContentDecorat...') +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\layouts\column1.php(5): CBaseController->endContent() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\SiteController.php(32): CController->render('index') +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SiteController->actionIndex() +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(287): CController->runAction(Object(CInlineAction)) +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CController->run('index') +#21 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('site/index') +#22 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#23 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#24 {main} + +Next exception 'Exception' with message 'Serialization of 'SimpleXMLElement' is not allowed' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\caching\CCache.php:147 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\caching\CCache.php(0): serialize() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\extensions\wetter\Wetter.php(9): CCache->set('extensions.Wett...', Array, 3600) +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(174): Wetter->run() +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(135): CBaseController->widget('application.ext...', Array) +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(77): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(55): CContentDecorator->decorate('
run() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(301): CBaseController->endWidget('CContentDecorat...') +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\layouts\column1.php(5): CBaseController->endContent() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\SiteController.php(32): CController->render('index') +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SiteController->actionIndex() +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(287): CController->runAction(Object(CInlineAction)) +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CController->run('index') +#21 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('site/index') +#22 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#23 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#24 {main} + +Next exception 'Exception' with message 'Serialization of 'SimpleXMLElement' is not allowed' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\caching\CCache.php:147 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\caching\CCache.php(0): serialize() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\extensions\wetter\Wetter.php(9): CCache->set('extensions.Wett...', Array, 3600) +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(174): Wetter->run() +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(135): CBaseController->widget('application.ext...', Array) +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(77): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(55): CContentDecorator->decorate('
run() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(301): CBaseController->endWidget('CContentDecorat...') +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\layouts\column1.php(5): CBaseController->endContent() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\SiteController.php(32): CController->render('index') +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SiteController->actionIndex() +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(287): CController->runAction(Object(CInlineAction)) +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CController->run('index') +#21 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('site/index') +#22 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#23 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#24 {main} + +Next exception 'Exception' with message 'Serialization of 'SimpleXMLElement' is not allowed' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\caching\CCache.php:147 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\caching\CCache.php(0): serialize() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\extensions\wetter\Wetter.php(9): CCache->set('extensions.Wett...', Array, 3600) +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(174): Wetter->run() +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(135): CBaseController->widget('application.ext...', Array) +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(77): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(55): CContentDecorator->decorate('
run() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(301): CBaseController->endWidget('CContentDecorat...') +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\layouts\column1.php(5): CBaseController->endContent() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\SiteController.php(32): CController->render('index') +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SiteController->actionIndex() +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(287): CController->runAction(Object(CInlineAction)) +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CController->run('index') +#21 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('site/index') +#22 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#23 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#24 {main} + +Next exception 'Exception' with message 'Serialization of 'SimpleXMLElement' is not allowed' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\caching\CCache.php:147 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\caching\CCache.php(0): serialize() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\extensions\wetter\Wetter.php(9): CCache->set('extensions.Wett...', Array, 3600) +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(174): Wetter->run() +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(135): CBaseController->widget('application.ext...', Array) +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(77): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(55): CContentDecorator->decorate('
run() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(301): CBaseController->endWidget('CContentDecorat...') +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\layouts\column1.php(5): CBaseController->endContent() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\SiteController.php(32): CController->render('index') +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SiteController->actionIndex() +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(287): CController->runAction(Object(CInlineAction)) +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CController->run('index') +#21 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('site/index') +#22 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#23 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#24 {main} + +Next exception 'Exception' with message 'Serialization of 'SimpleXMLElement' is not allowed' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\caching\CCache.php:147 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\caching\CCache.php(0): serialize() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\extensions\wetter\Wetter.php(9): CCache->set('extensions.Wett...', Array, 3600) +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(174): Wetter->run() +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(135): CBaseController->widget('application.ext...', Array) +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(77): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(55): CContentDecorator->decorate('
run() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(301): CBaseController->endWidget('CContentDecorat...') +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\layouts\column1.php(5): CBaseController->endContent() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\SiteController.php(32): CController->render('index') +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SiteController->actionIndex() +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(287): CController->runAction(Object(CInlineAction)) +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CController->run('index') +#21 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('site/index') +#22 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#23 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#24 {main} + +Next exception 'Exception' with message 'Serialization of 'SimpleXMLElement' is not allowed' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\caching\CCache.php:147 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\caching\CCache.php(0): serialize() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\extensions\wetter\Wetter.php(9): CCache->set('extensions.Wett...', Array, 3600) +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(174): Wetter->run() +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(135): CBaseController->widget('application.ext...', Array) +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(77): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(55): CContentDecorator->decorate('
run() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(301): CBaseController->endWidget('CContentDecorat...') +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\layouts\column1.php(5): CBaseController->endContent() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\SiteController.php(32): CController->render('index') +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SiteController->actionIndex() +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(287): CController->runAction(Object(CInlineAction)) +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CController->run('index') +#21 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('site/index') +#22 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#23 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#24 {main} + +Next exception 'Exception' with message 'Serialization of 'SimpleXMLElement' is not allowed' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\caching\CCache.php:147 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\caching\CCache.php(0): serialize() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\extensions\wetter\Wetter.php(9): CCache->set('extensions.Wett...', Array, 3600) +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(174): Wetter->run() +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(135): CBaseController->widget('application.ext...', Array) +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(77): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(55): CContentDecorator->decorate('
run() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(301): CBaseController->endWidget('CContentDecorat...') +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\layouts\column1.php(5): CBaseController->endContent() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\SiteController.php(32): CController->render('index') +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SiteController->actionIndex() +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(287): CController->runAction(Object(CInlineAction)) +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CController->run('index') +#21 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('site/index') +#22 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#23 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#24 {main} + +Next exception 'Exception' with message 'Serialization of 'SimpleXMLElement' is not allowed' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\caching\CCache.php:147 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\caching\CCache.php(0): serialize() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\extensions\wetter\Wetter.php(9): CCache->set('extensions.Wett...', Array, 3600) +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(174): Wetter->run() +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(135): CBaseController->widget('application.ext...', Array) +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(77): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(55): CContentDecorator->decorate('
run() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(301): CBaseController->endWidget('CContentDecorat...') +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\layouts\column1.php(5): CBaseController->endContent() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\SiteController.php(32): CController->render('index') +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SiteController->actionIndex() +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(287): CController->runAction(Object(CInlineAction)) +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CController->run('index') +#21 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('site/index') +#22 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#23 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#24 {main} + +Next exception 'Exception' with message 'Serialization of 'SimpleXMLElement' is not allowed' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\caching\CCache.php:147 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\caching\CCache.php(0): serialize() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\extensions\wetter\Wetter.php(9): CCache->set('extensions.Wett...', Array, 3600) +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(174): Wetter->run() +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(135): CBaseController->widget('application.ext...', Array) +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(77): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(55): CContentDecorator->decorate('
run() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(301): CBaseController->endWidget('CContentDecorat...') +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\layouts\column1.php(5): CBaseController->endContent() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\SiteController.php(32): CController->render('index') +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SiteController->actionIndex() +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(287): CController->runAction(Object(CInlineAction)) +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CController->run('index') +#21 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('site/index') +#22 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#23 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#24 {main} + +Next exception 'Exception' with message 'Serialization of 'SimpleXMLElement' is not allowed' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\caching\CCache.php:147 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\caching\CCache.php(0): serialize() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\extensions\wetter\Wetter.php(9): CCache->set('extensions.Wett...', Array, 3600) +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(174): Wetter->run() +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(135): CBaseController->widget('application.ext...', Array) +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(77): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(55): CContentDecorator->decorate('
run() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(301): CBaseController->endWidget('CContentDecorat...') +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\layouts\column1.php(5): CBaseController->endContent() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\SiteController.php(32): CController->render('index') +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SiteController->actionIndex() +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(287): CController->runAction(Object(CInlineAction)) +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CController->run('index') +#21 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('site/index') +#22 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#23 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#24 {main} + +Next exception 'Exception' with message 'Serialization of 'SimpleXMLElement' is not allowed' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\caching\CCache.php:147 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\caching\CCache.php(0): serialize() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\extensions\wetter\Wetter.php(9): CCache->set('extensions.Wett...', Array, 3600) +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(174): Wetter->run() +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(135): CBaseController->widget('application.ext...', Array) +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(77): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(55): CContentDecorator->decorate('
run() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(301): CBaseController->endWidget('CContentDecorat...') +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\layouts\column1.php(5): CBaseController->endContent() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\SiteController.php(32): CController->render('index') +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SiteController->actionIndex() +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(287): CController->runAction(Object(CInlineAction)) +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CController->run('index') +#21 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('site/index') +#22 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#23 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#24 {main} + +Next exception 'Exception' with message 'Serialization of 'SimpleXMLElement' is not allowed' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\caching\CCache.php:147 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\caching\CCache.php(0): serialize() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\extensions\wetter\Wetter.php(9): CCache->set('extensions.Wett...', Array, 3600) +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(174): Wetter->run() +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(135): CBaseController->widget('application.ext...', Array) +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(77): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(55): CContentDecorator->decorate('
run() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(301): CBaseController->endWidget('CContentDecorat...') +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\layouts\column1.php(5): CBaseController->endContent() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\SiteController.php(32): CController->render('index') +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SiteController->actionIndex() +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(287): CController->runAction(Object(CInlineAction)) +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CController->run('index') +#21 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('site/index') +#22 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#23 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#24 {main} + +Next exception 'Exception' with message 'Serialization of 'SimpleXMLElement' is not allowed' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\caching\CCache.php:147 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\caching\CCache.php(0): serialize() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\extensions\wetter\Wetter.php(9): CCache->set('extensions.Wett...', Array, 3600) +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(174): Wetter->run() +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(135): CBaseController->widget('application.ext...', Array) +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(77): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(55): CContentDecorator->decorate('
run() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(301): CBaseController->endWidget('CContentDecorat...') +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\layouts\column1.php(5): CBaseController->endContent() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\SiteController.php(32): CController->render('index') +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SiteController->actionIndex() +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(287): CController->runAction(Object(CInlineAction)) +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CController->run('index') +#21 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('site/index') +#22 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#23 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#24 {main} + +Next exception 'Exception' with message 'Serialization of 'SimpleXMLElement' is not allowed' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\caching\CCache.php:147 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\caching\CCache.php(0): serialize() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\extensions\wetter\Wetter.php(9): CCache->set('extensions.Wett...', Array, 3600) +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(174): Wetter->run() +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(135): CBaseController->widget('application.ext...', Array) +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(77): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(55): CContentDecorator->decorate('
run() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(301): CBaseController->endWidget('CContentDecorat...') +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\layouts\column1.php(5): CBaseController->endContent() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\SiteController.php(32): CController->render('index') +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SiteController->actionIndex() +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(287): CController->runAction(Object(CInlineAction)) +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CController->run('index') +#21 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('site/index') +#22 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#23 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#24 {main} + +Next exception 'Exception' with message 'Serialization of 'SimpleXMLElement' is not allowed' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\caching\CCache.php:147 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\caching\CCache.php(0): serialize() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\extensions\wetter\Wetter.php(9): CCache->set('extensions.Wett...', Array, 3600) +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(174): Wetter->run() +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(135): CBaseController->widget('application.ext...', Array) +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(77): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(55): CContentDecorator->decorate('
run() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(301): CBaseController->endWidget('CContentDecorat...') +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\layouts\column1.php(5): CBaseController->endContent() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\SiteController.php(32): CController->render('index') +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SiteController->actionIndex() +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(287): CController->runAction(Object(CInlineAction)) +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CController->run('index') +#21 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('site/index') +#22 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#23 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#24 {main} + +Next exception 'Exception' with message 'Serialization of 'SimpleXMLElement' is not allowed' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\caching\CCache.php:147 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\caching\CCache.php(0): serialize() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\extensions\wetter\Wetter.php(9): CCache->set('extensions.Wett...', Array, 3600) +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(174): Wetter->run() +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(135): CBaseController->widget('application.ext...', Array) +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(77): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(55): CContentDecorator->decorate('
run() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(301): CBaseController->endWidget('CContentDecorat...') +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\layouts\column1.php(5): CBaseController->endContent() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\SiteController.php(32): CController->render('index') +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SiteController->actionIndex() +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(287): CController->runAction(Object(CInlineAction)) +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CController->run('index') +#21 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('site/index') +#22 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#23 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#24 {main} +REQUEST_URI=/index.php?r=site/index +HTTP_REFERER=http://localhost/index.php?r=cmsPage/view&id=1 +--- +2012/04/19 09:17:39 [error] [exception.Exception] exception 'Exception' with message 'Serialization of 'SimpleXMLElement' is not allowed' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\caching\CCache.php:147 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\caching\CCache.php(147): serialize(Array) +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\extensions\wetter\Wetter.php(13): CCache->set('extensions.Wett...', Array, 3600) +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(174): Wetter->run() +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(135): CBaseController->widget('application.ext...', Array) +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(77): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(55): CContentDecorator->decorate('
run() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(301): CBaseController->endWidget('CContentDecorat...') +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\layouts\column1.php(5): CBaseController->endContent() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\SiteController.php(32): CController->render('index') +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SiteController->actionIndex() +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(287): CController->runAction(Object(CInlineAction)) +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CController->run('index') +#21 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('site/index') +#22 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#23 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#24 {main} + +Next exception 'Exception' with message 'Serialization of 'SimpleXMLElement' is not allowed' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\caching\CCache.php:147 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\caching\CCache.php(0): serialize() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\extensions\wetter\Wetter.php(13): CCache->set('extensions.Wett...', Array, 3600) +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(174): Wetter->run() +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(135): CBaseController->widget('application.ext...', Array) +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(77): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(55): CContentDecorator->decorate('
run() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(301): CBaseController->endWidget('CContentDecorat...') +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\layouts\column1.php(5): CBaseController->endContent() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\SiteController.php(32): CController->render('index') +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SiteController->actionIndex() +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(287): CController->runAction(Object(CInlineAction)) +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CController->run('index') +#21 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('site/index') +#22 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#23 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#24 {main} +REQUEST_URI=/index.php?r=site/index +HTTP_REFERER=http://localhost/index.php?r=cmsPage/view&id=1 +--- +2012/04/19 09:19:28 [error] [php] Undefined offset: 2 (D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\extensions\wetter\views\wetter.php:18) +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CWidget.php(244): Wetter->renderFile() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\extensions\wetter\Wetter.php(17): Wetter->render() +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(174): Wetter->run() +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(135): SiteController->widget() +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require() +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): SiteController->renderInternal() +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(77): SiteController->renderFile() +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(55): CContentDecorator->decorate() +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\COutputProcessor.php(45): CContentDecorator->processOutput() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(207): CContentDecorator->run() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(301): SiteController->endWidget() +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\layouts\column1.php(5): SiteController->endContent() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require() +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): SiteController->renderInternal() +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): SiteController->renderFile() +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\SiteController.php(32): SiteController->render() +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SiteController->actionIndex() +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams() +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(287): SiteController->runAction() +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): SiteController->runActionWithFilters() +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): SiteController->run() +#21 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController() +#22 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#23 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CWebApplication->run() +REQUEST_URI=/index.php?r=site/index +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\extensions\wetter\views\wetter.php (18) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\extensions\wetter\Wetter.php (17) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php (135) +2012/04/19 09:21:31 [error] [php] Undefined offset: 2 (D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\extensions\wetter\views\wetter.php:18) +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CWidget.php(244): Wetter->renderFile() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\extensions\wetter\Wetter.php(23): Wetter->render() +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(174): Wetter->run() +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(135): SiteController->widget() +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require() +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): SiteController->renderInternal() +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(77): SiteController->renderFile() +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(55): CContentDecorator->decorate() +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\COutputProcessor.php(45): CContentDecorator->processOutput() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(207): CContentDecorator->run() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(301): SiteController->endWidget() +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\layouts\column1.php(5): SiteController->endContent() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require() +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): SiteController->renderInternal() +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): SiteController->renderFile() +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\SiteController.php(32): SiteController->render() +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SiteController->actionIndex() +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams() +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(287): SiteController->runAction() +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): SiteController->runActionWithFilters() +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): SiteController->run() +#21 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController() +#22 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#23 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CWebApplication->run() +REQUEST_URI=/index.php?r=site/index +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\extensions\wetter\views\wetter.php (18) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\extensions\wetter\Wetter.php (23) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php (135) +2012/04/19 09:21:33 [error] [php] Undefined offset: 2 (D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\extensions\wetter\views\wetter.php:18) +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CWidget.php(244): Wetter->renderFile() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\extensions\wetter\Wetter.php(23): Wetter->render() +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(174): Wetter->run() +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(135): SiteController->widget() +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require() +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): SiteController->renderInternal() +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(77): SiteController->renderFile() +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(55): CContentDecorator->decorate() +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\COutputProcessor.php(45): CContentDecorator->processOutput() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(207): CContentDecorator->run() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(301): SiteController->endWidget() +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\layouts\column1.php(5): SiteController->endContent() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require() +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): SiteController->renderInternal() +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): SiteController->renderFile() +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\SiteController.php(32): SiteController->render() +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SiteController->actionIndex() +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams() +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(287): SiteController->runAction() +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): SiteController->runActionWithFilters() +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): SiteController->run() +#21 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController() +#22 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#23 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CWebApplication->run() +REQUEST_URI=/index.php?r=site/index +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\extensions\wetter\views\wetter.php (18) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\extensions\wetter\Wetter.php (23) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php (135) +2012/04/19 09:21:33 [error] [php] Undefined offset: 2 (D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\extensions\wetter\views\wetter.php:18) +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CWidget.php(244): Wetter->renderFile() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\extensions\wetter\Wetter.php(23): Wetter->render() +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(174): Wetter->run() +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(135): SiteController->widget() +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require() +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): SiteController->renderInternal() +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(77): SiteController->renderFile() +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(55): CContentDecorator->decorate() +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\COutputProcessor.php(45): CContentDecorator->processOutput() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(207): CContentDecorator->run() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(301): SiteController->endWidget() +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\layouts\column1.php(5): SiteController->endContent() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require() +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): SiteController->renderInternal() +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): SiteController->renderFile() +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\SiteController.php(32): SiteController->render() +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SiteController->actionIndex() +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams() +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(287): SiteController->runAction() +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): SiteController->runActionWithFilters() +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): SiteController->run() +#21 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController() +#22 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#23 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CWebApplication->run() +REQUEST_URI=/index.php?r=site/index +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\extensions\wetter\views\wetter.php (18) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\extensions\wetter\Wetter.php (23) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php (135) +2012/04/19 09:21:34 [error] [php] Undefined offset: 2 (D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\extensions\wetter\views\wetter.php:18) +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CWidget.php(244): Wetter->renderFile() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\extensions\wetter\Wetter.php(23): Wetter->render() +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(174): Wetter->run() +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(135): SiteController->widget() +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require() +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): SiteController->renderInternal() +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(77): SiteController->renderFile() +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(55): CContentDecorator->decorate() +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\COutputProcessor.php(45): CContentDecorator->processOutput() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(207): CContentDecorator->run() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(301): SiteController->endWidget() +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\layouts\column1.php(5): SiteController->endContent() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require() +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): SiteController->renderInternal() +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): SiteController->renderFile() +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\SiteController.php(32): SiteController->render() +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SiteController->actionIndex() +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams() +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(287): SiteController->runAction() +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): SiteController->runActionWithFilters() +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): SiteController->run() +#21 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController() +#22 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#23 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CWebApplication->run() +REQUEST_URI=/index.php?r=site/index +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\extensions\wetter\views\wetter.php (18) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\extensions\wetter\Wetter.php (23) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php (135) +2012/04/19 09:21:47 [error] [php] Undefined index: now (D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\extensions\wetter\views\wetter.php:12) +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CWidget.php(244): Wetter->renderFile() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\extensions\wetter\Wetter.php(23): Wetter->render() +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(174): Wetter->run() +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(135): SiteController->widget() +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require() +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): SiteController->renderInternal() +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(77): SiteController->renderFile() +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(55): CContentDecorator->decorate() +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\COutputProcessor.php(45): CContentDecorator->processOutput() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(207): CContentDecorator->run() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(301): SiteController->endWidget() +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\layouts\column1.php(5): SiteController->endContent() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require() +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): SiteController->renderInternal() +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): SiteController->renderFile() +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\SiteController.php(32): SiteController->render() +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SiteController->actionIndex() +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams() +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(287): SiteController->runAction() +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): SiteController->runActionWithFilters() +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): SiteController->run() +#21 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController() +#22 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#23 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CWebApplication->run() +REQUEST_URI=/index.php?r=site/index +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\extensions\wetter\views\wetter.php (12) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\extensions\wetter\Wetter.php (23) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php (135) +2012/04/19 09:22:47 [error] [php] Undefined index: wochentag (D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\extensions\wetter\views\wetter.php:12) +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CWidget.php(244): Wetter->renderFile() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\extensions\wetter\Wetter.php(23): Wetter->render() +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(174): Wetter->run() +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(135): SiteController->widget() +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require() +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): SiteController->renderInternal() +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(77): SiteController->renderFile() +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(55): CContentDecorator->decorate() +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\COutputProcessor.php(45): CContentDecorator->processOutput() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(207): CContentDecorator->run() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(301): SiteController->endWidget() +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\layouts\column1.php(5): SiteController->endContent() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require() +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): SiteController->renderInternal() +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): SiteController->renderFile() +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\SiteController.php(32): SiteController->render() +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SiteController->actionIndex() +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams() +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(287): SiteController->runAction() +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): SiteController->runActionWithFilters() +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): SiteController->run() +#21 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController() +#22 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#23 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CWebApplication->run() +REQUEST_URI=/index.php?r=site/index +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\extensions\wetter\views\wetter.php (12) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\extensions\wetter\Wetter.php (23) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php (135) +2012/04/19 15:04:04 [error] [exception.CException] exception 'CException' with message 'Property "CActiveForm.class" is not defined.' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CComponent.php:174 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWidgetFactory.php(162): CComponent->__set('class', 'ym-form') +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(147): CWidgetFactory->createWidget(Object(SiteController), 'CActiveForm', Array) +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(190): CBaseController->createWidget('CActiveForm', Array) +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\site\contact.php(31): CBaseController->beginWidget('CActiveForm', Array) +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(870): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(783): CController->renderPartial('contact', Array, true) +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\SiteController.php(66): CController->render('contact', Array) +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SiteController->actionContact() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(287): CController->runAction(Object(CInlineAction)) +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CController->run('contact') +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('site/contact') +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#17 {main} +REQUEST_URI=/index.php?r=site/contact +HTTP_REFERER=http://localhost/index.php?r=site/contact +--- +2012/04/19 15:45:11 [error] [php] include(CHMTL.php) [function.include]: failed to open stream: No such file or directory (D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\YiiBase.php:418) +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\site\contact.php(26): spl_autoload_call() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require() +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): SiteController->renderInternal() +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(870): SiteController->renderFile() +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(783): SiteController->renderPartial() +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\SiteController.php(66): SiteController->render() +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SiteController->actionContact() +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams() +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(287): SiteController->runAction() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): SiteController->runActionWithFilters() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): SiteController->run() +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CWebApplication->run() +REQUEST_URI=/index.php?r=site/contact +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\site\contact.php (26) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\SiteController.php (66) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php (13) +2012/04/21 23:29:28 [error] [exception.CException] exception 'CException' with message 'Alias "cms.CmsModule" is invalid. Make sure it points to an existing PHP file.' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\YiiBase.php:318 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\YiiBase.php(198): YiiBase::import('cms.CmsModule', true) +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CModule.php(283): YiiBase::createComponent('cms.CmsModule', 'cms', NULL, Array) +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(331): CModule->getModule('cms') +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(270): CWebApplication->createController('cms/sitecontent...') +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('cms/sitecontent...') +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#7 {main} +REQUEST_URI=/index.php?r=cms/sitecontent/admin +--- +2012/04/21 23:30:15 [error] [exception.CException] exception 'CException' with message 'Alias "cms.CmsModule" is invalid. Make sure it points to an existing PHP file.' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\YiiBase.php:318 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\YiiBase.php(198): YiiBase::import('cms.CmsModule', true) +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CModule.php(283): YiiBase::createComponent('cms.CmsModule', 'cms', NULL, Array) +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(331): CModule->getModule('cms') +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(270): CWebApplication->createController('cms/sitecontent...') +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('cms/sitecontent...') +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#7 {main} +REQUEST_URI=/index.php?r=cms/sitecontent/admin +--- +2012/04/21 23:30:16 [error] [exception.CException] exception 'CException' with message 'Alias "cms.CmsModule" is invalid. Make sure it points to an existing PHP file.' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\YiiBase.php:318 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\YiiBase.php(198): YiiBase::import('cms.CmsModule', true) +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CModule.php(283): YiiBase::createComponent('cms.CmsModule', 'cms', NULL, Array) +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(331): CModule->getModule('cms') +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(270): CWebApplication->createController('cms/sitecontent...') +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('cms/sitecontent...') +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#7 {main} +REQUEST_URI=/index.php?r=cms/sitecontent/admin +--- +2012/04/21 23:30:17 [error] [exception.CException] exception 'CException' with message 'Alias "cms.CmsModule" is invalid. Make sure it points to an existing PHP file.' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\YiiBase.php:318 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\YiiBase.php(198): YiiBase::import('cms.CmsModule', true) +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CModule.php(283): YiiBase::createComponent('cms.CmsModule', 'cms', NULL, Array) +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(331): CModule->getModule('cms') +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(270): CWebApplication->createController('cms/sitecontent...') +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('cms/sitecontent...') +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#7 {main} +REQUEST_URI=/index.php?r=cms/sitecontent/admin +--- +2012/04/21 23:30:17 [error] [exception.CException] exception 'CException' with message 'Alias "cms.CmsModule" is invalid. Make sure it points to an existing PHP file.' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\YiiBase.php:318 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\YiiBase.php(198): YiiBase::import('cms.CmsModule', true) +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CModule.php(283): YiiBase::createComponent('cms.CmsModule', 'cms', NULL, Array) +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(331): CModule->getModule('cms') +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(270): CWebApplication->createController('cms/sitecontent...') +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('cms/sitecontent...') +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#7 {main} +REQUEST_URI=/index.php?r=cms/sitecontent/admin +--- +2012/04/21 23:31:27 [error] [exception.CException] exception 'CException' with message 'Alias "cms.CmsModule" is invalid. Make sure it points to an existing PHP file.' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\YiiBase.php:318 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\YiiBase.php(198): YiiBase::import('cms.CmsModule', true) +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CModule.php(283): YiiBase::createComponent('cms.CmsModule', 'cms', NULL, Array) +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(331): CModule->getModule('cms') +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(270): CWebApplication->createController('cms/sitecontent...') +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('cms/sitecontent...') +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#7 {main} +REQUEST_URI=/index.php?r=cms/sitecontent/admin +--- +2012/04/21 23:31:28 [error] [exception.CException] exception 'CException' with message 'Alias "cms.CmsModule" is invalid. Make sure it points to an existing PHP file.' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\YiiBase.php:318 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\YiiBase.php(198): YiiBase::import('cms.CmsModule', true) +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CModule.php(283): YiiBase::createComponent('cms.CmsModule', 'cms', NULL, Array) +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(331): CModule->getModule('cms') +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(270): CWebApplication->createController('cms/sitecontent...') +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('cms/sitecontent...') +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#7 {main} +REQUEST_URI=/index.php?r=cms/sitecontent/admin +--- +2012/04/21 23:31:28 [error] [exception.CException] exception 'CException' with message 'Alias "cms.CmsModule" is invalid. Make sure it points to an existing PHP file.' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\YiiBase.php:318 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\YiiBase.php(198): YiiBase::import('cms.CmsModule', true) +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CModule.php(283): YiiBase::createComponent('cms.CmsModule', 'cms', NULL, Array) +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(331): CModule->getModule('cms') +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(270): CWebApplication->createController('cms/sitecontent...') +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('cms/sitecontent...') +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#7 {main} +REQUEST_URI=/index.php?r=cms/sitecontent/admin +--- +2012/04/21 23:31:29 [error] [exception.CException] exception 'CException' with message 'Alias "cms.CmsModule" is invalid. Make sure it points to an existing PHP file.' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\YiiBase.php:318 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\YiiBase.php(198): YiiBase::import('cms.CmsModule', true) +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CModule.php(283): YiiBase::createComponent('cms.CmsModule', 'cms', NULL, Array) +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(331): CModule->getModule('cms') +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(270): CWebApplication->createController('cms/sitecontent...') +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('cms/sitecontent...') +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#7 {main} +REQUEST_URI=/index.php?r=cms/sitecontent/admin +--- +2012/04/21 23:34:24 [error] [php] Non-static method Cms::module() should not be called statically, assuming $this from incompatible context (D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\views\sitecontent\admin.php:49) +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(870): SitecontentController->renderFile() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(783): SitecontentController->renderPartial() +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php(122): SitecontentController->render() +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SitecontentController->actionAdmin() +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams() +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): SitecontentController->runAction() +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CAccessControlFilter->filter() +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): SitecontentController->filterAccessControl() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): SitecontentController->runActionWithFilters() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): SitecontentController->run() +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController() +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CWebApplication->run() +REQUEST_URI=/index.php?r=cms/sitecontent/admin +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\views\sitecontent\admin.php (49) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (122) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php (13) +2012/04/21 23:36:45 [error] [php] Non-static method Cms::module() should not be called statically, assuming $this from incompatible context (D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\views\sitecontent\admin.php:49) +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(870): SitecontentController->renderFile() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(783): SitecontentController->renderPartial() +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php(122): SitecontentController->render() +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SitecontentController->actionAdmin() +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams() +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): SitecontentController->runAction() +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CAccessControlFilter->filter() +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): SitecontentController->filterAccessControl() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): SitecontentController->runActionWithFilters() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): SitecontentController->run() +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController() +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CWebApplication->run() +REQUEST_URI=/index.php?r=cms/sitecontent/admin +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\views\sitecontent\admin.php (49) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (122) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php (13) +2012/04/21 23:36:46 [error] [php] Non-static method Cms::module() should not be called statically, assuming $this from incompatible context (D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\views\sitecontent\admin.php:49) +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(870): SitecontentController->renderFile() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(783): SitecontentController->renderPartial() +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php(122): SitecontentController->render() +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SitecontentController->actionAdmin() +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams() +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): SitecontentController->runAction() +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CAccessControlFilter->filter() +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): SitecontentController->filterAccessControl() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): SitecontentController->runActionWithFilters() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): SitecontentController->run() +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController() +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CWebApplication->run() +REQUEST_URI=/index.php?r=cms/sitecontent/admin +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\views\sitecontent\admin.php (49) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (122) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php (13) +2012/04/21 23:36:47 [error] [php] Non-static method Cms::module() should not be called statically, assuming $this from incompatible context (D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\views\sitecontent\admin.php:49) +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(870): SitecontentController->renderFile() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(783): SitecontentController->renderPartial() +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php(122): SitecontentController->render() +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SitecontentController->actionAdmin() +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams() +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): SitecontentController->runAction() +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CAccessControlFilter->filter() +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): SitecontentController->filterAccessControl() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): SitecontentController->runActionWithFilters() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): SitecontentController->run() +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController() +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CWebApplication->run() +REQUEST_URI=/index.php?r=cms/sitecontent/admin +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\views\sitecontent\admin.php (49) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (122) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php (13) +2012/04/21 23:36:48 [error] [php] Non-static method Cms::module() should not be called statically, assuming $this from incompatible context (D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\views\sitecontent\admin.php:49) +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(870): SitecontentController->renderFile() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(783): SitecontentController->renderPartial() +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php(122): SitecontentController->render() +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SitecontentController->actionAdmin() +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams() +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): SitecontentController->runAction() +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CAccessControlFilter->filter() +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): SitecontentController->filterAccessControl() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): SitecontentController->runActionWithFilters() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): SitecontentController->run() +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController() +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CWebApplication->run() +REQUEST_URI=/index.php?r=cms/sitecontent/admin +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\views\sitecontent\admin.php (49) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (122) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php (13) +2012/04/21 23:45:45 [error] [php] Non-static method Cms::module() should not be called statically, assuming $this from incompatible context (D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\views\sitecontent\_form.php:79) +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(870): SitecontentController->renderFile() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\views\sitecontent\create.php(21): SitecontentController->renderPartial() +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require() +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): SitecontentController->renderInternal() +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(870): SitecontentController->renderFile() +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(783): SitecontentController->renderPartial() +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php(71): SitecontentController->render() +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SitecontentController->actionCreate() +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): SitecontentController->runAction() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CAccessControlFilter->filter() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): SitecontentController->filterAccessControl() +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): SitecontentController->runActionWithFilters() +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): SitecontentController->run() +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController() +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CWebApplication->run() +REQUEST_URI=/index.php?r=cms/sitecontent/create +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\views\sitecontent\_form.php (79) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\views\sitecontent\create.php (21) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (71) +2012/04/21 23:48:26 [error] [php] Non-static method Cms::module() should not be called statically, assuming $this from incompatible context (D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\views\sitecontent\_form.php:79) +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(870): SitecontentController->renderFile() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\views\sitecontent\create.php(21): SitecontentController->renderPartial() +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require() +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): SitecontentController->renderInternal() +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(870): SitecontentController->renderFile() +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(783): SitecontentController->renderPartial() +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php(71): SitecontentController->render() +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SitecontentController->actionCreate() +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): SitecontentController->runAction() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CAccessControlFilter->filter() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): SitecontentController->filterAccessControl() +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): SitecontentController->runActionWithFilters() +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): SitecontentController->run() +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController() +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CWebApplication->run() +REQUEST_URI=/index.php?r=cms/sitecontent/create +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\views\sitecontent\_form.php (79) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\views\sitecontent\create.php (21) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (71) +2012/04/21 23:50:00 [error] [php] Non-static method Cms::module() should not be called statically, assuming $this from incompatible context (D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\models\Sitecontent.php:15) +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php(62): Sitecontent->save() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SitecontentController->actionCreate() +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams() +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): SitecontentController->runAction() +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CAccessControlFilter->filter() +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): SitecontentController->filterAccessControl() +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): SitecontentController->runActionWithFilters() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): SitecontentController->run() +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CWebApplication->run() +REQUEST_URI=/index.php?r=cms/sitecontent/create +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\models\Sitecontent.php (15) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (62) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php (13) +2012/04/21 23:54:20 [error] [exception.CDbException] exception 'CDbException' with message 'The value for the column "id" is not supplied when querying the table "sitecontent".' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\db\schema\CDbCommandBuilder.php:686 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\db\schema\CDbCommandBuilder.php(498): CDbCommandBuilder->createInCondition(Object(CMysqlTableSchema), Array, Array, '`t`.') +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\db\ar\CActiveRecord.php(1421): CDbCommandBuilder->createPkCriteria(Object(CMysqlTableSchema), 1, '', Array, '`t`.') +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\models\Cms.php(49): CActiveRecord->findByPk(1) +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(50): Cms::renderMenuPoints(1) +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php(122): CController->render('admin', Array) +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SitecontentController->actionAdmin() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CController->run('admin') +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('cms/sitecontent...') +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#21 {main} +REQUEST_URI=/index.php?r=cms/sitecontent/admin +HTTP_REFERER=http://localhost/index.php?r=cms/sitecontent/create +--- +2012/04/21 23:57:08 [error] [php] Invalid argument supplied for foreach() (D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\db\schema\CDbCommandBuilder.php:693) +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\models\Cms.php(49): Sitecontent->findByPk() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(50): renderMenuPoints() +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require() +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): SitecontentController->renderInternal() +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): SitecontentController->renderFile() +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php(122): SitecontentController->render() +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SitecontentController->actionAdmin() +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams() +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): SitecontentController->runAction() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CAccessControlFilter->filter() +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): SitecontentController->filterAccessControl() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): SitecontentController->runActionWithFilters() +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): SitecontentController->run() +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController() +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CWebApplication->run() +REQUEST_URI=/index.php?r=cms/sitecontent/admin +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\models\Cms.php (49) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php (50) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (122) +2012/04/21 23:57:31 [error] [php] Missing argument 1 for Cms::renderMenuPoints(), called in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php on line 50 and defined (D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\models\Cms.php:47) +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): SitecontentController->renderInternal() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): SitecontentController->renderFile() +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php(122): SitecontentController->render() +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SitecontentController->actionAdmin() +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams() +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): SitecontentController->runAction() +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CAccessControlFilter->filter() +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): SitecontentController->filterAccessControl() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): SitecontentController->runActionWithFilters() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): SitecontentController->run() +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController() +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CWebApplication->run() +REQUEST_URI=/index.php?r=cms/sitecontent/admin +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\models\Cms.php (47) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php (50) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (122) +2012/04/21 23:57:41 [error] [exception.CDbException] exception 'CDbException' with message 'The value for the column "id" is not supplied when querying the table "sitecontent".' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\db\schema\CDbCommandBuilder.php:686 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\db\schema\CDbCommandBuilder.php(498): CDbCommandBuilder->createInCondition(Object(CMysqlTableSchema), Array, Array, '`t`.') +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\db\ar\CActiveRecord.php(1421): CDbCommandBuilder->createPkCriteria(Object(CMysqlTableSchema), 0, '', Array, '`t`.') +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\models\Cms.php(49): CActiveRecord->findByPk(0) +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(50): Cms::renderMenuPoints(0) +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php(122): CController->render('admin', Array) +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SitecontentController->actionAdmin() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CController->run('admin') +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('cms/sitecontent...') +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#21 {main} +REQUEST_URI=/index.php?r=cms/sitecontent/admin +HTTP_REFERER=http://localhost/index.php?r=cms/sitecontent/create +--- +2012/04/21 23:57:42 [error] [exception.CDbException] exception 'CDbException' with message 'The value for the column "id" is not supplied when querying the table "sitecontent".' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\db\schema\CDbCommandBuilder.php:686 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\db\schema\CDbCommandBuilder.php(498): CDbCommandBuilder->createInCondition(Object(CMysqlTableSchema), Array, Array, '`t`.') +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\db\ar\CActiveRecord.php(1421): CDbCommandBuilder->createPkCriteria(Object(CMysqlTableSchema), 0, '', Array, '`t`.') +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\models\Cms.php(49): CActiveRecord->findByPk(0) +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(50): Cms::renderMenuPoints(0) +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php(122): CController->render('admin', Array) +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SitecontentController->actionAdmin() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CController->run('admin') +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('cms/sitecontent...') +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#21 {main} +REQUEST_URI=/index.php?r=cms/sitecontent/admin +HTTP_REFERER=http://localhost/index.php?r=cms/sitecontent/create +--- +2012/04/21 23:59:06 [error] [exception.CDbException] exception 'CDbException' with message 'The value for the column "id" is not supplied when querying the table "sitecontent".' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\db\schema\CDbCommandBuilder.php:686 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\db\schema\CDbCommandBuilder.php(498): CDbCommandBuilder->createInCondition(Object(CMysqlTableSchema), Array, Array, '`t`.') +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\db\ar\CActiveRecord.php(1421): CDbCommandBuilder->createPkCriteria(Object(CMysqlTableSchema), 1, '', Array, '`t`.') +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\models\Cms.php(49): CActiveRecord->findByPk(1) +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(50): Cms::renderMenuPoints(1, 'de') +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php(122): CController->render('admin', Array) +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SitecontentController->actionAdmin() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CController->run('admin') +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('cms/sitecontent...') +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#21 {main} +REQUEST_URI=/index.php?r=cms/sitecontent/admin +HTTP_REFERER=http://localhost/index.php?r=cms/sitecontent/create +--- +2012/04/21 23:59:08 [error] [exception.CDbException] exception 'CDbException' with message 'The value for the column "id" is not supplied when querying the table "sitecontent".' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\db\schema\CDbCommandBuilder.php:686 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\db\schema\CDbCommandBuilder.php(498): CDbCommandBuilder->createInCondition(Object(CMysqlTableSchema), Array, Array, '`t`.') +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\db\ar\CActiveRecord.php(1421): CDbCommandBuilder->createPkCriteria(Object(CMysqlTableSchema), 1, '', Array, '`t`.') +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\models\Cms.php(49): CActiveRecord->findByPk(1) +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(50): Cms::renderMenuPoints(1, 'de') +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php(122): CController->render('admin', Array) +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SitecontentController->actionAdmin() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CController->run('admin') +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('cms/sitecontent...') +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#21 {main} +REQUEST_URI=/index.php?r=cms/sitecontent/admin +HTTP_REFERER=http://localhost/index.php?r=cms/sitecontent/create +--- +2012/04/21 23:59:08 [error] [exception.CDbException] exception 'CDbException' with message 'The value for the column "id" is not supplied when querying the table "sitecontent".' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\db\schema\CDbCommandBuilder.php:686 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\db\schema\CDbCommandBuilder.php(498): CDbCommandBuilder->createInCondition(Object(CMysqlTableSchema), Array, Array, '`t`.') +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\db\ar\CActiveRecord.php(1421): CDbCommandBuilder->createPkCriteria(Object(CMysqlTableSchema), 1, '', Array, '`t`.') +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\models\Cms.php(49): CActiveRecord->findByPk(1) +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(50): Cms::renderMenuPoints(1, 'de') +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php(122): CController->render('admin', Array) +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SitecontentController->actionAdmin() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CController->run('admin') +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('cms/sitecontent...') +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#21 {main} +REQUEST_URI=/index.php?r=cms/sitecontent/admin +HTTP_REFERER=http://localhost/index.php?r=cms/sitecontent/create +--- +2012/04/21 23:59:10 [error] [exception.CDbException] exception 'CDbException' with message 'The value for the column "id" is not supplied when querying the table "sitecontent".' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\db\schema\CDbCommandBuilder.php:686 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\db\schema\CDbCommandBuilder.php(498): CDbCommandBuilder->createInCondition(Object(CMysqlTableSchema), Array, Array, '`t`.') +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\db\ar\CActiveRecord.php(1421): CDbCommandBuilder->createPkCriteria(Object(CMysqlTableSchema), 1, '', Array, '`t`.') +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\models\Cms.php(49): CActiveRecord->findByPk(1) +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(50): Cms::renderMenuPoints(1, 'de') +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php(122): CController->render('admin', Array) +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SitecontentController->actionAdmin() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CController->run('admin') +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('cms/sitecontent...') +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#21 {main} +REQUEST_URI=/index.php?r=cms/sitecontent/admin +HTTP_REFERER=http://localhost/index.php?r=cms/sitecontent/create +--- +2012/04/21 23:59:11 [error] [exception.CDbException] exception 'CDbException' with message 'The value for the column "id" is not supplied when querying the table "sitecontent".' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\db\schema\CDbCommandBuilder.php:686 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\db\schema\CDbCommandBuilder.php(498): CDbCommandBuilder->createInCondition(Object(CMysqlTableSchema), Array, Array, '`t`.') +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\db\ar\CActiveRecord.php(1421): CDbCommandBuilder->createPkCriteria(Object(CMysqlTableSchema), 1, '', Array, '`t`.') +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\models\Cms.php(49): CActiveRecord->findByPk(1) +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(50): Cms::renderMenuPoints(1, 'de') +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php(122): CController->render('admin', Array) +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SitecontentController->actionAdmin() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CController->run('admin') +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('cms/sitecontent...') +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#21 {main} +REQUEST_URI=/index.php?r=cms/sitecontent/admin +HTTP_REFERER=http://localhost/index.php?r=cms/sitecontent/create +--- +2012/04/22 00:00:21 [error] [exception.CDbException] exception 'CDbException' with message 'The value for the column "id" is not supplied when querying the table "sitecontent".' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\db\schema\CDbCommandBuilder.php:686 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\db\schema\CDbCommandBuilder.php(498): CDbCommandBuilder->createInCondition(Object(CMysqlTableSchema), Array, Array, '`t`.') +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\db\ar\CActiveRecord.php(1421): CDbCommandBuilder->createPkCriteria(Object(CMysqlTableSchema), 1, 'de', Array, '`t`.') +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\models\Cms.php(49): CActiveRecord->findByPk(1, 'de') +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(50): Cms::renderMenuPoints(1) +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php(122): CController->render('admin', Array) +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SitecontentController->actionAdmin() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CController->run('admin') +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('cms/sitecontent...') +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#21 {main} +REQUEST_URI=/index.php?r=cms/sitecontent/admin +HTTP_REFERER=http://localhost/index.php?r=cms/sitecontent/create +--- +2012/04/22 00:00:22 [error] [exception.CDbException] exception 'CDbException' with message 'The value for the column "id" is not supplied when querying the table "sitecontent".' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\db\schema\CDbCommandBuilder.php:686 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\db\schema\CDbCommandBuilder.php(498): CDbCommandBuilder->createInCondition(Object(CMysqlTableSchema), Array, Array, '`t`.') +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\db\ar\CActiveRecord.php(1421): CDbCommandBuilder->createPkCriteria(Object(CMysqlTableSchema), 1, 'de', Array, '`t`.') +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\models\Cms.php(49): CActiveRecord->findByPk(1, 'de') +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(50): Cms::renderMenuPoints(1) +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php(122): CController->render('admin', Array) +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SitecontentController->actionAdmin() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CController->run('admin') +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('cms/sitecontent...') +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#21 {main} +REQUEST_URI=/index.php?r=cms/sitecontent/admin +HTTP_REFERER=http://localhost/index.php?r=cms/sitecontent/create +--- +2012/04/22 00:00:23 [error] [exception.CDbException] exception 'CDbException' with message 'The value for the column "id" is not supplied when querying the table "sitecontent".' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\db\schema\CDbCommandBuilder.php:686 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\db\schema\CDbCommandBuilder.php(498): CDbCommandBuilder->createInCondition(Object(CMysqlTableSchema), Array, Array, '`t`.') +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\db\ar\CActiveRecord.php(1421): CDbCommandBuilder->createPkCriteria(Object(CMysqlTableSchema), 1, 'de', Array, '`t`.') +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\models\Cms.php(49): CActiveRecord->findByPk(1, 'de') +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(50): Cms::renderMenuPoints(1) +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php(122): CController->render('admin', Array) +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SitecontentController->actionAdmin() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CController->run('admin') +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('cms/sitecontent...') +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#21 {main} +REQUEST_URI=/index.php?r=cms/sitecontent/admin +HTTP_REFERER=http://localhost/index.php?r=cms/sitecontent/create +--- +2012/04/22 00:01:09 [error] [exception.CDbException] exception 'CDbException' with message 'The value for the column "id" is not supplied when querying the table "sitecontent".' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\db\schema\CDbCommandBuilder.php:686 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\db\schema\CDbCommandBuilder.php(498): CDbCommandBuilder->createInCondition(Object(CMysqlTableSchema), Array, Array, '`t`.') +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\db\ar\CActiveRecord.php(1421): CDbCommandBuilder->createPkCriteria(Object(CMysqlTableSchema), 1, '', Array, '`t`.') +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\models\Cms.php(49): CActiveRecord->findByPk(1) +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(50): Cms::renderMenuPoints(1) +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php(122): CController->render('admin', Array) +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SitecontentController->actionAdmin() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CController->run('admin') +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('cms/sitecontent...') +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#21 {main} +REQUEST_URI=/index.php?r=cms/sitecontent/admin +HTTP_REFERER=http://localhost/index.php?r=cms/sitecontent/create +--- +2012/04/22 00:01:11 [error] [exception.CDbException] exception 'CDbException' with message 'The value for the column "id" is not supplied when querying the table "sitecontent".' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\db\schema\CDbCommandBuilder.php:686 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\db\schema\CDbCommandBuilder.php(498): CDbCommandBuilder->createInCondition(Object(CMysqlTableSchema), Array, Array, '`t`.') +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\db\ar\CActiveRecord.php(1421): CDbCommandBuilder->createPkCriteria(Object(CMysqlTableSchema), 1, '', Array, '`t`.') +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\models\Cms.php(49): CActiveRecord->findByPk(1) +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(50): Cms::renderMenuPoints(1) +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php(122): CController->render('admin', Array) +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SitecontentController->actionAdmin() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CController->run('admin') +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('cms/sitecontent...') +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#21 {main} +REQUEST_URI=/index.php?r=cms/sitecontent/admin +HTTP_REFERER=http://localhost/index.php?r=cms/sitecontent/create +--- +2012/04/22 00:01:15 [error] [exception.CDbException] exception 'CDbException' with message 'The value for the column "id" is not supplied when querying the table "sitecontent".' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\db\schema\CDbCommandBuilder.php:686 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\db\schema\CDbCommandBuilder.php(498): CDbCommandBuilder->createInCondition(Object(CMysqlTableSchema), Array, Array, '`t`.') +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\db\ar\CActiveRecord.php(1421): CDbCommandBuilder->createPkCriteria(Object(CMysqlTableSchema), 1, '', Array, '`t`.') +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\models\Cms.php(49): CActiveRecord->findByPk(1) +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(50): Cms::renderMenuPoints(1) +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php(122): CController->render('admin', Array) +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SitecontentController->actionAdmin() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CController->run('admin') +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('cms/sitecontent...') +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#21 {main} +REQUEST_URI=/index.php?r=cms/sitecontent/admin +HTTP_REFERER=http://localhost/index.php?r=cms/sitecontent/create +--- +2012/04/22 00:01:23 [error] [exception.CDbException] exception 'CDbException' with message 'The value for the column "id" is not supplied when querying the table "sitecontent".' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\db\schema\CDbCommandBuilder.php:686 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\db\schema\CDbCommandBuilder.php(498): CDbCommandBuilder->createInCondition(Object(CMysqlTableSchema), Array, Array, '`t`.') +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\db\ar\CActiveRecord.php(1421): CDbCommandBuilder->createPkCriteria(Object(CMysqlTableSchema), 1, '', Array, '`t`.') +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\models\Cms.php(49): CActiveRecord->findByPk(1) +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(50): Cms::renderMenuPoints(1) +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php(122): CController->render('admin', Array) +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SitecontentController->actionAdmin() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CController->run('admin') +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('cms/sitecontent...') +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#21 {main} +REQUEST_URI=/index.php?r=cms/sitecontent/admin +HTTP_REFERER=http://localhost/index.php?r=cms/sitecontent/create +--- +2012/04/22 00:02:08 [error] [exception.CException] exception 'CException' with message 'Sitecontent and its behaviors do not have a method or closure named "findById".' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CComponent.php:266 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\db\ar\CActiveRecord.php(226): CComponent->__call('findById', Array) +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\models\Cms.php(49): CActiveRecord->__call('findById', Array) +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\models\Cms.php(49): Sitecontent->findById(1) +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(50): Cms::renderMenuPoints(1) +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php(122): CController->render('admin', Array) +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SitecontentController->actionAdmin() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CController->run('admin') +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('cms/sitecontent...') +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#21 {main} +REQUEST_URI=/index.php?r=cms/sitecontent/admin +HTTP_REFERER=http://localhost/index.php?r=cms/sitecontent/create +--- +2012/04/22 00:02:42 [error] [exception.CDbException] exception 'CDbException' with message 'The value for the column "id" is not supplied when querying the table "sitecontent".' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\db\schema\CDbCommandBuilder.php:686 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\db\schema\CDbCommandBuilder.php(498): CDbCommandBuilder->createInCondition(Object(CMysqlTableSchema), Array, Array, '`t`.') +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\db\ar\CActiveRecord.php(1421): CDbCommandBuilder->createPkCriteria(Object(CMysqlTableSchema), 1, '', Array, '`t`.') +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\models\Cms.php(49): CActiveRecord->findByPk(1) +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(50): Cms::renderMenuPoints(1) +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php(122): CController->render('admin', Array) +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SitecontentController->actionAdmin() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CController->run('admin') +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('cms/sitecontent...') +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#21 {main} +REQUEST_URI=/index.php?r=cms/sitecontent/admin +HTTP_REFERER=http://localhost/index.php?r=cms/sitecontent/create +--- +2012/04/22 00:02:43 [error] [exception.CDbException] exception 'CDbException' with message 'The value for the column "id" is not supplied when querying the table "sitecontent".' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\db\schema\CDbCommandBuilder.php:686 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\db\schema\CDbCommandBuilder.php(498): CDbCommandBuilder->createInCondition(Object(CMysqlTableSchema), Array, Array, '`t`.') +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\db\ar\CActiveRecord.php(1421): CDbCommandBuilder->createPkCriteria(Object(CMysqlTableSchema), 1, '', Array, '`t`.') +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\models\Cms.php(49): CActiveRecord->findByPk(1) +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(50): Cms::renderMenuPoints(1) +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php(122): CController->render('admin', Array) +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SitecontentController->actionAdmin() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CController->run('admin') +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('cms/sitecontent...') +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#21 {main} +REQUEST_URI=/index.php?r=cms/sitecontent/admin +HTTP_REFERER=http://localhost/index.php?r=cms/sitecontent/create +--- +2012/04/22 00:02:58 [error] [php] Invalid argument supplied for foreach() (D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\db\schema\CDbCommandBuilder.php:693) +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\models\Cms.php(49): Sitecontent->findByPk() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(50): renderMenuPoints() +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require() +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): SitecontentController->renderInternal() +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): SitecontentController->renderFile() +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php(122): SitecontentController->render() +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SitecontentController->actionAdmin() +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams() +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): SitecontentController->runAction() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CAccessControlFilter->filter() +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): SitecontentController->filterAccessControl() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): SitecontentController->runActionWithFilters() +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): SitecontentController->run() +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController() +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CWebApplication->run() +REQUEST_URI=/index.php?r=cms/sitecontent/admin +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\models\Cms.php (49) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php (50) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (122) +2012/04/22 00:02:59 [error] [php] Invalid argument supplied for foreach() (D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\db\schema\CDbCommandBuilder.php:693) +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\models\Cms.php(49): Sitecontent->findByPk() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(50): renderMenuPoints() +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require() +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): SitecontentController->renderInternal() +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): SitecontentController->renderFile() +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php(122): SitecontentController->render() +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SitecontentController->actionAdmin() +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams() +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): SitecontentController->runAction() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CAccessControlFilter->filter() +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): SitecontentController->filterAccessControl() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): SitecontentController->runActionWithFilters() +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): SitecontentController->run() +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController() +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CWebApplication->run() +REQUEST_URI=/index.php?r=cms/sitecontent/admin +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\models\Cms.php (49) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php (50) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (122) +2012/04/22 00:06:09 [error] [php] Invalid argument supplied for foreach() (D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\db\schema\CDbCommandBuilder.php:546) +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(50): renderMenuPoints() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require() +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): SitecontentController->renderInternal() +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): SitecontentController->renderFile() +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php(122): SitecontentController->render() +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SitecontentController->actionAdmin() +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams() +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): SitecontentController->runAction() +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CAccessControlFilter->filter() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): SitecontentController->filterAccessControl() +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): SitecontentController->runActionWithFilters() +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): SitecontentController->run() +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController() +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CWebApplication->run() +REQUEST_URI=/index.php?r=cms/sitecontent/admin +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\models\Cms.php (49) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php (50) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (122) +2012/04/22 00:06:47 [error] [exception.CDbException] exception 'CDbException' with message 'Table "sitecontent" does not have a column named "0".' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\db\schema\CDbCommandBuilder.php:570 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\db\ar\CActiveRecord.php(1454): CDbCommandBuilder->createColumnCriteria(Object(CMysqlTableSchema), Array, 1, Array, '`t`.') +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\models\Cms.php(49): CActiveRecord->findByAttributes(Array, 1) +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(50): Cms::renderMenuPoints(1) +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php(122): CController->render('admin', Array) +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SitecontentController->actionAdmin() +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CController->run('admin') +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('cms/sitecontent...') +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#20 {main} +REQUEST_URI=/index.php?r=cms/sitecontent/admin +HTTP_REFERER=http://localhost/index.php?r=cms/sitecontent/create +--- +2012/04/22 00:15:42 [error] [php] Invalid argument supplied for foreach() (D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\zii\widgets\CMenu.php:255) +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(148): CMenu->init() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(173): SitecontentController->createWidget() +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(50): SitecontentController->widget() +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require() +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): SitecontentController->renderInternal() +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): SitecontentController->renderFile() +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php(44): SitecontentController->render() +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SitecontentController->actionView() +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): SitecontentController->runAction() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CAccessControlFilter->filter() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): SitecontentController->filterAccessControl() +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): SitecontentController->runActionWithFilters() +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): SitecontentController->run() +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController() +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CWebApplication->run() +REQUEST_URI=/index.php?r=cms/sitecontent/view&page= +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php (50) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (44) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php (13) +2012/04/22 00:16:24 [error] [php] Invalid argument supplied for foreach() (D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\zii\widgets\CMenu.php:255) +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(148): CMenu->init() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(173): SitecontentController->createWidget() +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(50): SitecontentController->widget() +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require() +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): SitecontentController->renderInternal() +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): SitecontentController->renderFile() +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php(44): SitecontentController->render() +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SitecontentController->actionView() +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): SitecontentController->runAction() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CAccessControlFilter->filter() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): SitecontentController->filterAccessControl() +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): SitecontentController->runActionWithFilters() +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): SitecontentController->run() +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController() +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CWebApplication->run() +REQUEST_URI=/index.php?r=cms/sitecontent/view&page= +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php (50) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (44) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php (13) +2012/04/22 00:16:25 [error] [php] Invalid argument supplied for foreach() (D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\zii\widgets\CMenu.php:255) +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(148): CMenu->init() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(173): SitecontentController->createWidget() +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(50): SitecontentController->widget() +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require() +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): SitecontentController->renderInternal() +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): SitecontentController->renderFile() +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php(44): SitecontentController->render() +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SitecontentController->actionView() +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): SitecontentController->runAction() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CAccessControlFilter->filter() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): SitecontentController->filterAccessControl() +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): SitecontentController->runActionWithFilters() +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): SitecontentController->run() +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController() +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CWebApplication->run() +REQUEST_URI=/index.php?r=cms/sitecontent/view&page= +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php (50) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (44) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php (13) +2012/04/22 00:16:25 [error] [php] Invalid argument supplied for foreach() (D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\zii\widgets\CMenu.php:255) +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(148): CMenu->init() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(173): SitecontentController->createWidget() +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(50): SitecontentController->widget() +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require() +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): SitecontentController->renderInternal() +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): SitecontentController->renderFile() +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php(44): SitecontentController->render() +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SitecontentController->actionView() +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): SitecontentController->runAction() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CAccessControlFilter->filter() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): SitecontentController->filterAccessControl() +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): SitecontentController->runActionWithFilters() +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): SitecontentController->run() +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController() +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CWebApplication->run() +REQUEST_URI=/index.php?r=cms/sitecontent/view&page= +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php (50) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (44) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php (13) +2012/04/22 00:20:06 [error] [exception.CHttpException.404] exception 'CHttpException' with message 'We are sorry. The requested page does not exist.' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php:143 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php(38): SitecontentController->loadContent() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SitecontentController->actionView() +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CController->run('view') +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('cms/sitecontent...') +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#14 {main} +REQUEST_URI=/index.php?r=cms/sitecontent/view&page= +--- +2012/04/22 00:20:27 [error] [php] Invalid argument supplied for foreach() (D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\zii\widgets\CMenu.php:255) +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(148): CMenu->init() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(173): SitecontentController->createWidget() +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(51): SitecontentController->widget() +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require() +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): SitecontentController->renderInternal() +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): SitecontentController->renderFile() +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php(44): SitecontentController->render() +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SitecontentController->actionView() +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): SitecontentController->runAction() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CAccessControlFilter->filter() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): SitecontentController->filterAccessControl() +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): SitecontentController->runActionWithFilters() +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): SitecontentController->run() +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController() +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CWebApplication->run() +REQUEST_URI=/index.php?r=cms/sitecontent/view&page=pse +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php (51) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (44) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php (13) +2012/04/22 00:26:27 [error] [php] Invalid argument supplied for foreach() (D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\zii\widgets\CMenu.php:255) +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(148): CMenu->init() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(173): SitecontentController->createWidget() +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(52): SitecontentController->widget() +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require() +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): SitecontentController->renderInternal() +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): SitecontentController->renderFile() +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php(44): SitecontentController->render() +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SitecontentController->actionView() +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): SitecontentController->runAction() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CAccessControlFilter->filter() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): SitecontentController->filterAccessControl() +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): SitecontentController->runActionWithFilters() +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): SitecontentController->run() +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController() +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CWebApplication->run() +REQUEST_URI=/index.php?r=cms/sitecontent/view&page=pse +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php (52) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (44) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php (13) +2012/04/22 00:26:28 [error] [php] Invalid argument supplied for foreach() (D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\zii\widgets\CMenu.php:255) +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(148): CMenu->init() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(173): SitecontentController->createWidget() +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(52): SitecontentController->widget() +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require() +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): SitecontentController->renderInternal() +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): SitecontentController->renderFile() +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php(44): SitecontentController->render() +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SitecontentController->actionView() +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): SitecontentController->runAction() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CAccessControlFilter->filter() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): SitecontentController->filterAccessControl() +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): SitecontentController->runActionWithFilters() +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): SitecontentController->run() +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController() +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CWebApplication->run() +REQUEST_URI=/index.php?r=cms/sitecontent/view&page=pse +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php (52) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (44) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php (13) +2012/04/22 00:26:29 [error] [php] Invalid argument supplied for foreach() (D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\zii\widgets\CMenu.php:255) +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(148): CMenu->init() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(173): SitecontentController->createWidget() +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(52): SitecontentController->widget() +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require() +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): SitecontentController->renderInternal() +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): SitecontentController->renderFile() +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php(44): SitecontentController->render() +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SitecontentController->actionView() +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): SitecontentController->runAction() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CAccessControlFilter->filter() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): SitecontentController->filterAccessControl() +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): SitecontentController->runActionWithFilters() +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): SitecontentController->run() +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController() +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CWebApplication->run() +REQUEST_URI=/index.php?r=cms/sitecontent/view&page=pse +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php (52) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (44) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php (13) +2012/04/22 00:26:30 [error] [php] Invalid argument supplied for foreach() (D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\zii\widgets\CMenu.php:255) +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(148): CMenu->init() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(173): SitecontentController->createWidget() +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(52): SitecontentController->widget() +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require() +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): SitecontentController->renderInternal() +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): SitecontentController->renderFile() +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php(44): SitecontentController->render() +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SitecontentController->actionView() +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): SitecontentController->runAction() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CAccessControlFilter->filter() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): SitecontentController->filterAccessControl() +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): SitecontentController->runActionWithFilters() +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): SitecontentController->run() +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController() +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CWebApplication->run() +REQUEST_URI=/index.php?r=cms/sitecontent/view&page=pse +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php (52) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (44) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php (13) +2012/04/22 00:28:13 [error] [php] Invalid argument supplied for foreach() (D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\zii\widgets\CMenu.php:255) +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(148): CMenu->init() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(173): SitecontentController->createWidget() +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(52): SitecontentController->widget() +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require() +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): SitecontentController->renderInternal() +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): SitecontentController->renderFile() +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php(44): SitecontentController->render() +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SitecontentController->actionView() +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): SitecontentController->runAction() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CAccessControlFilter->filter() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): SitecontentController->filterAccessControl() +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): SitecontentController->runActionWithFilters() +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): SitecontentController->run() +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController() +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CWebApplication->run() +REQUEST_URI=/index.php?r=cms/sitecontent/view&page=pse +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php (52) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (44) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php (13) +2012/04/22 00:28:15 [error] [php] Invalid argument supplied for foreach() (D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\zii\widgets\CMenu.php:255) +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(148): CMenu->init() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(173): SitecontentController->createWidget() +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(52): SitecontentController->widget() +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require() +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): SitecontentController->renderInternal() +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): SitecontentController->renderFile() +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php(44): SitecontentController->render() +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SitecontentController->actionView() +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): SitecontentController->runAction() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CAccessControlFilter->filter() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): SitecontentController->filterAccessControl() +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): SitecontentController->runActionWithFilters() +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): SitecontentController->run() +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController() +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CWebApplication->run() +REQUEST_URI=/index.php?r=cms/sitecontent/view&page=pse +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php (52) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (44) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php (13) +2012/04/22 00:30:01 [error] [php] Invalid argument supplied for foreach() (D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\zii\widgets\CMenu.php:255) +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(148): CMenu->init() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(173): SitecontentController->createWidget() +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(63): SitecontentController->widget() +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require() +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): SitecontentController->renderInternal() +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): SitecontentController->renderFile() +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php(44): SitecontentController->render() +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SitecontentController->actionView() +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): SitecontentController->runAction() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CAccessControlFilter->filter() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): SitecontentController->filterAccessControl() +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): SitecontentController->runActionWithFilters() +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): SitecontentController->run() +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController() +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CWebApplication->run() +REQUEST_URI=/index.php?r=cms/sitecontent/view&page=pse +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php (63) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (44) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php (13) +2012/04/22 00:31:35 [error] [php] Invalid argument supplied for foreach() (D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\zii\widgets\CMenu.php:255) +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(148): CMenu->init() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(173): SitecontentController->createWidget() +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(65): SitecontentController->widget() +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require() +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): SitecontentController->renderInternal() +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): SitecontentController->renderFile() +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php(44): SitecontentController->render() +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SitecontentController->actionView() +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): SitecontentController->runAction() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CAccessControlFilter->filter() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): SitecontentController->filterAccessControl() +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): SitecontentController->runActionWithFilters() +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): SitecontentController->run() +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController() +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CWebApplication->run() +REQUEST_URI=/index.php?r=cms/sitecontent/view&page=pse +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php (65) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (44) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php (13) +2012/04/22 00:33:27 [error] [php] Invalid argument supplied for foreach() (D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\zii\widgets\CMenu.php:255) +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(148): CMenu->init() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(173): SitecontentController->createWidget() +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(65): SitecontentController->widget() +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require() +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): SitecontentController->renderInternal() +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): SitecontentController->renderFile() +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php(44): SitecontentController->render() +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SitecontentController->actionView() +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): SitecontentController->runAction() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CAccessControlFilter->filter() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): SitecontentController->filterAccessControl() +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): SitecontentController->runActionWithFilters() +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): SitecontentController->run() +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController() +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CWebApplication->run() +REQUEST_URI=/index.php?r=cms/sitecontent/view&page=pse +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php (65) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (44) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php (13) +2012/04/22 00:35:13 [error] [php] include(Cms.php) [function.include]: failed to open stream: No such file or directory (D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\YiiBase.php:418) +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(51): spl_autoload_call() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require() +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): SiteController->renderInternal() +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(77): SiteController->renderFile() +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(55): CContentDecorator->decorate() +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\COutputProcessor.php(45): CContentDecorator->processOutput() +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(207): CContentDecorator->run() +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(301): SiteController->endWidget() +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\layouts\column1.php(5): SiteController->endContent() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): SiteController->renderInternal() +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): SiteController->renderFile() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\SiteController.php(92): SiteController->render() +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SiteController->actionLogin() +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams() +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(287): SiteController->runAction() +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): SiteController->runActionWithFilters() +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): SiteController->run() +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController() +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CWebApplication->run() +REQUEST_URI=/index.php?r=site/login +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php (51) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\layouts\column1.php (5) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\SiteController.php (92) +2012/04/22 00:35:33 [error] [php] include(Cms.php) [function.include]: failed to open stream: No such file or directory (D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\YiiBase.php:418) +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(51): spl_autoload_call() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require() +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CmsPageController->renderInternal() +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(77): CmsPageController->renderFile() +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(55): CContentDecorator->decorate() +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\COutputProcessor.php(45): CContentDecorator->processOutput() +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(207): CContentDecorator->run() +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(301): CmsPageController->endWidget() +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\layouts\column2.php(21): CmsPageController->endContent() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CmsPageController->renderInternal() +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): CmsPageController->renderFile() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\CmsPageController.php(55): CmsPageController->render() +#13 unknown(0): CmsPageController->actionView() +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CAction.php(107): ReflectionMethod->invokeArgs() +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(48): CInlineAction->runWithParamsInternal() +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams() +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): CmsPageController->runAction() +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CAccessControlFilter->filter() +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): CmsPageController->filterAccessControl() +#21 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() +#22 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#23 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CmsPageController->runActionWithFilters() +#24 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CmsPageController->run() +#25 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController() +#26 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#27 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CWebApplication->run() +REQUEST_URI=/index.php?r=cmsPage/view&id=1 +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php (51) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\layouts\column2.php (21) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\CmsPageController.php (55) +2012/04/22 00:35:44 [error] [php] include(Cms.php) [function.include]: failed to open stream: No such file or directory (D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\YiiBase.php:418) +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(51): spl_autoload_call() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require() +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CmsPageController->renderInternal() +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(77): CmsPageController->renderFile() +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(55): CContentDecorator->decorate() +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\COutputProcessor.php(45): CContentDecorator->processOutput() +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(207): CContentDecorator->run() +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(301): CmsPageController->endWidget() +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\layouts\column2.php(21): CmsPageController->endContent() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CmsPageController->renderInternal() +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): CmsPageController->renderFile() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\CmsPageController.php(55): CmsPageController->render() +#13 unknown(0): CmsPageController->actionView() +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CAction.php(107): ReflectionMethod->invokeArgs() +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(48): CInlineAction->runWithParamsInternal() +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams() +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): CmsPageController->runAction() +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CAccessControlFilter->filter() +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): CmsPageController->filterAccessControl() +#21 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() +#22 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#23 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CmsPageController->runActionWithFilters() +#24 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CmsPageController->run() +#25 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController() +#26 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#27 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CWebApplication->run() +REQUEST_URI=/index.php?r=cmsPage/view&id=1 +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php (51) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\layouts\column2.php (21) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\CmsPageController.php (55) +2012/04/22 00:35:58 [error] [php] include(Cms.php) [function.include]: failed to open stream: No such file or directory (D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\YiiBase.php:418) +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(51): spl_autoload_call() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require() +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): SiteController->renderInternal() +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(77): SiteController->renderFile() +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(55): CContentDecorator->decorate() +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\COutputProcessor.php(45): CContentDecorator->processOutput() +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(207): CContentDecorator->run() +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(301): SiteController->endWidget() +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\layouts\column1.php(5): SiteController->endContent() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): SiteController->renderInternal() +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): SiteController->renderFile() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\SiteController.php(66): SiteController->render() +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SiteController->actionContact() +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams() +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(287): SiteController->runAction() +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): SiteController->runActionWithFilters() +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): SiteController->run() +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController() +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CWebApplication->run() +REQUEST_URI=/index.php?r=site/contact +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php (51) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\layouts\column1.php (5) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\SiteController.php (66) +2012/04/22 00:37:02 [error] [php] include(Cms.php) [function.include]: failed to open stream: No such file or directory (D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\YiiBase.php:418) +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(51): spl_autoload_call() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require() +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): SiteController->renderInternal() +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(77): SiteController->renderFile() +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(55): CContentDecorator->decorate() +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\COutputProcessor.php(45): CContentDecorator->processOutput() +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(207): CContentDecorator->run() +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(301): SiteController->endWidget() +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\layouts\column1.php(5): SiteController->endContent() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): SiteController->renderInternal() +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): SiteController->renderFile() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\SiteController.php(66): SiteController->render() +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SiteController->actionContact() +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams() +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(287): SiteController->runAction() +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): SiteController->runActionWithFilters() +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): SiteController->run() +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController() +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CWebApplication->run() +REQUEST_URI=/index.php?r=site/contact +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php (51) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\layouts\column1.php (5) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\SiteController.php (66) +2012/04/22 00:37:03 [error] [php] include(Cms.php) [function.include]: failed to open stream: No such file or directory (D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\YiiBase.php:418) +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(51): spl_autoload_call() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require() +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): SiteController->renderInternal() +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(77): SiteController->renderFile() +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(55): CContentDecorator->decorate() +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\COutputProcessor.php(45): CContentDecorator->processOutput() +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(207): CContentDecorator->run() +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(301): SiteController->endWidget() +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\layouts\column1.php(5): SiteController->endContent() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): SiteController->renderInternal() +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): SiteController->renderFile() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\SiteController.php(66): SiteController->render() +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SiteController->actionContact() +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams() +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(287): SiteController->runAction() +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): SiteController->runActionWithFilters() +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): SiteController->run() +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController() +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CWebApplication->run() +REQUEST_URI=/index.php?r=site/contact +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php (51) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\layouts\column1.php (5) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\SiteController.php (66) +2012/04/22 00:37:04 [error] [php] include(Cms.php) [function.include]: failed to open stream: No such file or directory (D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\YiiBase.php:418) +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(51): spl_autoload_call() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require() +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): SiteController->renderInternal() +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(77): SiteController->renderFile() +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(55): CContentDecorator->decorate() +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\COutputProcessor.php(45): CContentDecorator->processOutput() +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(207): CContentDecorator->run() +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(301): SiteController->endWidget() +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\layouts\column1.php(5): SiteController->endContent() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): SiteController->renderInternal() +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): SiteController->renderFile() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\SiteController.php(66): SiteController->render() +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SiteController->actionContact() +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams() +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(287): SiteController->runAction() +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): SiteController->runActionWithFilters() +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): SiteController->run() +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController() +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CWebApplication->run() +REQUEST_URI=/index.php?r=site/contact +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php (51) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\layouts\column1.php (5) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\SiteController.php (66) +2012/04/22 00:37:21 [error] [php] include(Cms.php) [function.include]: failed to open stream: No such file or directory (D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\YiiBase.php:418) +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(51): spl_autoload_call() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require() +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): SiteController->renderInternal() +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(77): SiteController->renderFile() +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(55): CContentDecorator->decorate() +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\COutputProcessor.php(45): CContentDecorator->processOutput() +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(207): CContentDecorator->run() +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(301): SiteController->endWidget() +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\layouts\column1.php(5): SiteController->endContent() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): SiteController->renderInternal() +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): SiteController->renderFile() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\SiteController.php(32): SiteController->render() +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SiteController->actionIndex() +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams() +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(287): SiteController->runAction() +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): SiteController->runActionWithFilters() +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): SiteController->run() +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController() +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CWebApplication->run() +REQUEST_URI=/index.php?r=site/index +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php (51) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\layouts\column1.php (5) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\SiteController.php (32) +2012/04/22 10:49:14 [error] [php] Trying to get property of non-object (D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\models\Cms.php:63) +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): SitecontentController->renderInternal() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): SitecontentController->renderFile() +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php(44): SitecontentController->render() +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SitecontentController->actionView() +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams() +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): SitecontentController->runAction() +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CAccessControlFilter->filter() +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): SitecontentController->filterAccessControl() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): SitecontentController->runActionWithFilters() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): SitecontentController->run() +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController() +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CWebApplication->run() +REQUEST_URI=/index.php?r=cms/sitecontent/view&page=pse +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\models\Cms.php (63) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php (51) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (44) +2012/04/24 09:03:10 [error] [php] Undefined variable: tmp (D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\models\Cms.php:67) +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): SitecontentController->renderInternal() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): SitecontentController->renderFile() +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php(122): SitecontentController->render() +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SitecontentController->actionAdmin() +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams() +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): SitecontentController->runAction() +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CAccessControlFilter->filter() +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): SitecontentController->filterAccessControl() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): SitecontentController->runActionWithFilters() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): SitecontentController->run() +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController() +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CWebApplication->run() +REQUEST_URI=/index.php?r=cms/sitecontent/admin +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\models\Cms.php (67) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php (51) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (122) +2012/04/30 10:49:00 [error] [php] Undefined index: hoech sttemperatur (D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\extensions\wetter\views\wetter.php:12) +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CWidget.php(244): Wetter->renderFile() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\extensions\wetter\Wetter.php(25): Wetter->render() +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(174): Wetter->run() +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(141): SiteController->widget() +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require() +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): SiteController->renderInternal() +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(77): SiteController->renderFile() +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(55): CContentDecorator->decorate() +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\COutputProcessor.php(45): CContentDecorator->processOutput() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(207): CContentDecorator->run() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(301): SiteController->endWidget() +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\layouts\column1.php(5): SiteController->endContent() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require() +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): SiteController->renderInternal() +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): SiteController->renderFile() +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\SiteController.php(32): SiteController->render() +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SiteController->actionIndex() +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams() +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(287): SiteController->runAction() +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): SiteController->runActionWithFilters() +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): SiteController->run() +#21 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController() +#22 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#23 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CWebApplication->run() +REQUEST_URI=/www.astaf.de/ +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\extensions\wetter\views\wetter.php (12) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\extensions\wetter\Wetter.php (25) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php (141) +2012/04/30 10:52:24 [error] [exception.CHttpException.404] exception 'CHttpException' with message 'Unable to resolve the request "myverein".' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php:280 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('myverein') +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#3 {main} +REQUEST_URI=/www.astaf.de/index.php?r=myverein +--- +2012/04/30 11:16:22 [error] [exception.CHttpException.404] exception 'CHttpException' with message 'Unable to resolve the request "cms/admin".' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php:280 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('cms/admin') +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#3 {main} +REQUEST_URI=/www.astaf.de/index.php?r=cms/admin +--- +2012/04/30 11:36:57 [error] [exception.CHttpException.404] exception 'CHttpException' with message 'Unable to resolve the request "cms/admin".' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php:280 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('cms/admin') +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#3 {main} +REQUEST_URI=/www.astaf.de/index.php?r=cms/admin +--- +2012/04/30 11:39:00 [error] [php] Undefined variable: language (D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\extensions\extckeditor\ExtCKEditor.php:90) +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(147): CWidgetFactory->createWidget() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(173): SitecontentController->createWidget() +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\views\sitecontent\_form.php(91): SitecontentController->widget() +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require() +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): SitecontentController->renderInternal() +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(870): SitecontentController->renderFile() +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\views\sitecontent\update.php(18): SitecontentController->renderPartial() +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require() +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): SitecontentController->renderInternal() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(870): SitecontentController->renderFile() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(783): SitecontentController->renderPartial() +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php(90): SitecontentController->render() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SitecontentController->actionUpdate() +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams() +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): SitecontentController->runAction() +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CAccessControlFilter->filter() +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): SitecontentController->filterAccessControl() +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): SitecontentController->runActionWithFilters() +#21 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): SitecontentController->run() +#22 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController() +#23 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#24 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CWebApplication->run() +REQUEST_URI=/www.astaf.de/index.php?r=cms/sitecontent/update&id%5Bid%5D=1&id%5Blanguage%5D=0 +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\extensions\extckeditor\ExtCKEditor.php (90) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\extensions\extckeditor\ExtCKEditor.php (78) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\views\sitecontent\_form.php (91) +2012/04/30 11:39:13 [error] [php] Undefined variable: language (D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\extensions\extckeditor\ExtCKEditor.php:90) +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(147): CWidgetFactory->createWidget() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(173): SitecontentController->createWidget() +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\views\sitecontent\_form.php(91): SitecontentController->widget() +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require() +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): SitecontentController->renderInternal() +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(870): SitecontentController->renderFile() +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\views\sitecontent\update.php(18): SitecontentController->renderPartial() +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require() +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): SitecontentController->renderInternal() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(870): SitecontentController->renderFile() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(783): SitecontentController->renderPartial() +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php(90): SitecontentController->render() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SitecontentController->actionUpdate() +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams() +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): SitecontentController->runAction() +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CAccessControlFilter->filter() +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): SitecontentController->filterAccessControl() +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): SitecontentController->runActionWithFilters() +#21 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): SitecontentController->run() +#22 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController() +#23 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#24 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CWebApplication->run() +REQUEST_URI=/www.astaf.de/index.php?r=cms/sitecontent/update&id%5Bid%5D=1&id%5Blanguage%5D=0 +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\extensions\extckeditor\ExtCKEditor.php (90) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\extensions\extckeditor\ExtCKEditor.php (78) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\views\sitecontent\_form.php (91) +2012/04/30 13:48:32 [warning] [application] Ungesichertes Attribut "id" konnte nicht gesetzt werden. +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (152) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (51) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php (13) +2012/04/30 13:48:58 [warning] [application] Ungesichertes Attribut "id" konnte nicht gesetzt werden. +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (152) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (51) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php (13) +2012/04/30 13:49:00 [warning] [application] Ungesichertes Attribut "id" konnte nicht gesetzt werden. +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (152) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (51) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php (13) +2012/04/30 13:49:02 [warning] [application] Ungesichertes Attribut "id" konnte nicht gesetzt werden. +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (152) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (51) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php (13) +2012/04/30 13:49:04 [warning] [application] Ungesichertes Attribut "id" konnte nicht gesetzt werden. +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (152) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (51) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php (13) +2012/04/30 13:49:07 [warning] [application] Ungesichertes Attribut "id" konnte nicht gesetzt werden. +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (152) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (51) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php (13) +2012/04/30 13:49:27 [warning] [application] Ungesichertes Attribut "id" konnte nicht gesetzt werden. +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (55) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php (13) +2012/04/30 14:13:56 [warning] [application] Ungesichertes Attribut "id" konnte nicht gesetzt werden. +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (82) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php (13) +2012/04/30 16:24:02 [error] [exception.CException] exception 'CException' with message 'Alias "cms.widgets.search" ist ungültig. Stellen Sie sicher, dass er auf eine existierende PHP-Datei verweist.' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\YiiBase.php:318 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWidgetFactory.php(147): YiiBase::import('cms.widgets.sea...', true) +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(147): CWidgetFactory->createWidget(Object(SiteController), 'cms.widgets.sea...', Array) +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(173): CBaseController->createWidget('cms.widgets.sea...', Array) +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(57): CBaseController->widget('cms.widgets.sea...', Array) +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(77): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(55): CContentDecorator->decorate('
run() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(301): CBaseController->endWidget('CContentDecorat...') +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\layouts\column1.php(5): CBaseController->endContent() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\SiteController.php(32): CController->render('index') +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SiteController->actionIndex() +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(287): CController->runAction(Object(CInlineAction)) +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CController->run('') +#21 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('') +#22 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#23 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#24 {main} +REQUEST_URI=/www.astaf.de/index.php +HTTP_REFERER=http://localhost/www.astaf.de/index.php?r=site/index +--- +2012/04/30 16:24:50 [error] [exception.CException] exception 'CException' with message 'Alias "cms.widgets.searchWidget" ist ungültig. Stellen Sie sicher, dass er auf eine existierende PHP-Datei verweist.' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\YiiBase.php:318 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWidgetFactory.php(147): YiiBase::import('cms.widgets.sea...', true) +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(147): CWidgetFactory->createWidget(Object(SiteController), 'cms.widgets.sea...', Array) +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(173): CBaseController->createWidget('cms.widgets.sea...', Array) +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(57): CBaseController->widget('cms.widgets.sea...', Array) +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(77): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(55): CContentDecorator->decorate('
run() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(301): CBaseController->endWidget('CContentDecorat...') +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\layouts\column1.php(5): CBaseController->endContent() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\SiteController.php(32): CController->render('index') +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SiteController->actionIndex() +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(287): CController->runAction(Object(CInlineAction)) +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CController->run('') +#21 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('') +#22 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#23 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#24 {main} +REQUEST_URI=/www.astaf.de/index.php +HTTP_REFERER=http://localhost/www.astaf.de/index.php?r=site/index +--- +2012/04/30 16:25:12 [error] [exception.CException] exception 'CException' with message 'Der Alias "modules.cms.components.searchWidget" ist ungültig. Stellen Sie sicher, dass er auf ein existierendes Verzeichnis oder eine existierende Datei verweist.' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\YiiBase.php:343 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWidgetFactory.php(147): YiiBase::import('modules.cms.com...', true) +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(147): CWidgetFactory->createWidget(Object(SiteController), 'modules.cms.com...', Array) +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(173): CBaseController->createWidget('modules.cms.com...', Array) +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(57): CBaseController->widget('modules.cms.com...', Array) +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(77): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(55): CContentDecorator->decorate('
run() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(301): CBaseController->endWidget('CContentDecorat...') +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\layouts\column1.php(5): CBaseController->endContent() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\SiteController.php(32): CController->render('index') +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SiteController->actionIndex() +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(287): CController->runAction(Object(CInlineAction)) +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CController->run('') +#21 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('') +#22 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#23 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#24 {main} +REQUEST_URI=/www.astaf.de/index.php +HTTP_REFERER=http://localhost/www.astaf.de/index.php?r=site/index +--- +2012/04/30 16:25:21 [error] [exception.CException] exception 'CException' with message 'Eigenschaft "SearchWidget.links ist nicht definiert.' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CComponent.php:174 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWidgetFactory.php(162): CComponent->__set('links', Array) +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(147): CWidgetFactory->createWidget(Object(SiteController), 'cms.components....', Array) +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(173): CBaseController->createWidget('cms.components....', Array) +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(57): CBaseController->widget('cms.components....', Array) +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(77): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(55): CContentDecorator->decorate('
run() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(301): CBaseController->endWidget('CContentDecorat...') +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\layouts\column1.php(5): CBaseController->endContent() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\SiteController.php(32): CController->render('index') +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SiteController->actionIndex() +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(287): CController->runAction(Object(CInlineAction)) +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CController->run('') +#21 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('') +#22 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#23 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#24 {main} +REQUEST_URI=/www.astaf.de/index.php +HTTP_REFERER=http://localhost/www.astaf.de/index.php?r=site/index +--- +2012/04/30 16:25:29 [error] [php] include(SearchWidget.php) [function.include]: failed to open stream: No such file or directory (D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\YiiBase.php:418) +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWidgetFactory.php(147): import() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(147): CWidgetFactory->createWidget() +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(173): SiteController->createWidget() +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(57): SiteController->widget() +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require() +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): SiteController->renderInternal() +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(77): SiteController->renderFile() +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(55): CContentDecorator->decorate() +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\COutputProcessor.php(45): CContentDecorator->processOutput() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(207): CContentDecorator->run() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(301): SiteController->endWidget() +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\layouts\column1.php(5): SiteController->endContent() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require() +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): SiteController->renderInternal() +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): SiteController->renderFile() +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\SiteController.php(32): SiteController->render() +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SiteController->actionIndex() +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams() +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(287): SiteController->runAction() +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): SiteController->runActionWithFilters() +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): SiteController->run() +#21 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController() +#22 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#23 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CWebApplication->run() +REQUEST_URI=/www.astaf.de/index.php +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php (57) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\layouts\column1.php (5) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\SiteController.php (32) +2012/04/30 16:27:57 [error] [exception.CException] exception 'CException' with message 'Eigenschaft "SearchWidget.links ist nicht definiert.' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CComponent.php:174 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWidgetFactory.php(162): CComponent->__set('links', Array) +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(147): CWidgetFactory->createWidget(Object(SiteController), 'cms.components....', Array) +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(173): CBaseController->createWidget('cms.components....', Array) +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(57): CBaseController->widget('cms.components....', Array) +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(77): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(55): CContentDecorator->decorate('
run() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(301): CBaseController->endWidget('CContentDecorat...') +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\layouts\column1.php(5): CBaseController->endContent() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\SiteController.php(32): CController->render('index') +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SiteController->actionIndex() +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(287): CController->runAction(Object(CInlineAction)) +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CController->run('') +#21 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('') +#22 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#23 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#24 {main} +REQUEST_URI=/www.astaf.de/index.php +HTTP_REFERER=http://localhost/www.astaf.de/index.php?r=site/index +--- +2012/04/30 16:35:06 [error] [php] htmlspecialchars() expects parameter 1 to be string, array given (D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\helpers\CHtml.php:85) +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\helpers\CHtml.php(140): renderAttributes() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\helpers\CHtml.php(312): tag() +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(55): beginForm() +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require() +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): SitecontentController->renderInternal() +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): SitecontentController->renderFile() +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php(44): SitecontentController->render() +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SitecontentController->actionView() +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): SitecontentController->runAction() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CAccessControlFilter->filter() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): SitecontentController->filterAccessControl() +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): SitecontentController->runActionWithFilters() +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): SitecontentController->run() +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController() +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CWebApplication->run() +REQUEST_URI=/www.astaf.de/index.php?r=cms/sitecontent/view&id=2&highlight=Unterelement +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php (55) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (44) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php (13) +2012/04/30 16:35:13 [error] [php] htmlspecialchars() expects parameter 1 to be string, array given (D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\helpers\CHtml.php:85) +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\helpers\CHtml.php(140): renderAttributes() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\helpers\CHtml.php(312): tag() +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(55): beginForm() +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require() +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): SitecontentController->renderInternal() +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): SitecontentController->renderFile() +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php(44): SitecontentController->render() +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SitecontentController->actionView() +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): SitecontentController->runAction() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CAccessControlFilter->filter() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): SitecontentController->filterAccessControl() +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): SitecontentController->runActionWithFilters() +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): SitecontentController->run() +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController() +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CWebApplication->run() +REQUEST_URI=/www.astaf.de/index.php?r=cms/sitecontent/view&id=2&highlight=Unterelement +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php (55) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (44) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php (13) +2012/04/30 16:38:39 [error] [exception.CHttpException.404] exception 'CHttpException' with message 'Konnte den Request "cms/cms/sitecontent/search" nicht auflösen.' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php:280 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('cms/cms/sitecon...') +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#3 {main} +REQUEST_URI=/www.astaf.de/index.php?r=cms/cms/sitecontent/search +HTTP_REFERER=http://localhost/www.astaf.de/index.php?r=cms/sitecontent/admin +--- +2012/04/30 16:38:51 [error] [exception.CHttpException.404] exception 'CHttpException' with message 'Konnte den Request "cms/cms/sitecontent/search" nicht auflösen.' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php:280 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('cms/cms/sitecon...') +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#3 {main} +REQUEST_URI=/www.astaf.de/index.php?r=cms/cms/sitecontent/search +HTTP_REFERER=http://localhost/www.astaf.de/index.php?r=cms/sitecontent/admin +--- +2012/04/30 16:38:57 [error] [exception.CHttpException.404] exception 'CHttpException' with message 'Konnte den Request "sitecontent/search" nicht auflösen.' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php:280 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('sitecontent/sea...') +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#3 {main} +REQUEST_URI=/www.astaf.de/index.php?r=sitecontent/search +HTTP_REFERER=http://localhost/www.astaf.de/index.php?r=site/index +--- +2012/04/30 16:39:06 [error] [php] Undefined index: search (D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php:18) +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): SitecontentController->runAction() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CAccessControlFilter->filter() +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): SitecontentController->filterAccessControl() +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): SitecontentController->runActionWithFilters() +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): SitecontentController->run() +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CWebApplication->run() +REQUEST_URI=/www.astaf.de/index.php?r=cms/sitecontent/search +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (18) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php (13) +2012/04/30 16:40:32 [error] [php] Undefined variable: Yii (D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php:55) +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(77): SiteController->renderFile() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\CContentDecorator.php(55): CContentDecorator->decorate() +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\widgets\COutputProcessor.php(45): CContentDecorator->processOutput() +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(207): CContentDecorator->run() +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(301): SiteController->endWidget() +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\layouts\column1.php(5): SiteController->endContent() +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require() +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): SiteController->renderInternal() +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): SiteController->renderFile() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\SiteController.php(32): SiteController->render() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SiteController->actionIndex() +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(287): SiteController->runAction() +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): SiteController->runActionWithFilters() +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): SiteController->run() +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController() +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CWebApplication->run() +REQUEST_URI=/www.astaf.de/index.php?r=site/index +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php (55) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\layouts\column1.php (5) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\SiteController.php (32) +2012/04/30 16:43:36 [error] [php] Undefined index: search (D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php:18) +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): SitecontentController->runAction() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CAccessControlFilter->filter() +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): SitecontentController->filterAccessControl() +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): SitecontentController->runActionWithFilters() +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): SitecontentController->run() +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CWebApplication->run() +REQUEST_URI=/www.astaf.de/index.php?r=cms/sitecontent/search +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (18) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php (13) +2012/04/30 16:45:51 [error] [php] Undefined index: search (D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php:18) +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): SitecontentController->runAction() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CAccessControlFilter->filter() +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): SitecontentController->filterAccessControl() +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): SitecontentController->runActionWithFilters() +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): SitecontentController->run() +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CWebApplication->run() +REQUEST_URI=/www.astaf.de/index.php?r=cms/sitecontent/search +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (18) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php (13) +2012/04/30 16:55:44 [error] [php] Undefined index: search (D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php:18) +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): SitecontentController->runAction() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CAccessControlFilter->filter() +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): SitecontentController->filterAccessControl() +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): SitecontentController->runActionWithFilters() +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): SitecontentController->run() +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CWebApplication->run() +REQUEST_URI=/www.astaf.de/index.php?r=cms/sitecontent/search +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (18) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php (13) +2012/05/03 10:31:12 [error] [php] Non-static method Cms::module() should not be called statically (D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\models\Cms.php:38) +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): SitecontentController->renderInternal() +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): SitecontentController->renderFile() +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php(45): SitecontentController->render() +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SitecontentController->actionView() +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams() +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): SitecontentController->runAction() +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CAccessControlFilter->filter() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): SitecontentController->filterAccessControl() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): SitecontentController->runActionWithFilters() +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): SitecontentController->run() +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController() +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CWebApplication->run() +REQUEST_URI=/www.astaf.de/index.php?r=cms/sitecontent/view&page=Url-Title +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\models\Cms.php (38) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\models\Cms.php (38) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php (145) +2012/05/03 10:32:36 [error] [php] Trying to get property of non-object (D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\models\Cms.php:43) +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): SitecontentController->renderInternal() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): SitecontentController->renderFile() +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php(45): SitecontentController->render() +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SitecontentController->actionView() +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams() +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): SitecontentController->runAction() +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CAccessControlFilter->filter() +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): SitecontentController->filterAccessControl() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): SitecontentController->runActionWithFilters() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): SitecontentController->run() +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController() +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CWebApplication->run() +REQUEST_URI=/www.astaf.de/index.php?r=cms/sitecontent/view&page=Url-Title +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\models\Cms.php (43) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php (145) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (45) +2012/05/03 10:33:41 [error] [php] Creating default object from empty value (D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\models\Cms.php:41) +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): SitecontentController->renderInternal() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): SitecontentController->renderFile() +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php(45): SitecontentController->render() +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SitecontentController->actionView() +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams() +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): SitecontentController->runAction() +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CAccessControlFilter->filter() +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): SitecontentController->filterAccessControl() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): SitecontentController->runActionWithFilters() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): SitecontentController->run() +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController() +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CWebApplication->run() +REQUEST_URI=/www.astaf.de/index.php?r=cms/sitecontent/view&page=Url-Title +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\models\Cms.php (41) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php (145) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (45) +2012/05/03 10:34:50 [warning] [application] Ungesichertes Attribut "id" konnte nicht gesetzt werden. +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (153) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (52) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php (13) +2012/05/03 10:34:51 [warning] [application] Ungesichertes Attribut "id" konnte nicht gesetzt werden. +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (153) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (52) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php (13) +2012/05/03 10:34:52 [warning] [application] Ungesichertes Attribut "id" konnte nicht gesetzt werden. +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (153) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (52) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php (13) +2012/05/03 10:35:03 [warning] [application] Ungesichertes Attribut "id" konnte nicht gesetzt werden. +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (153) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (52) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php (13) +2012/05/03 10:35:06 [warning] [application] Ungesichertes Attribut "id" konnte nicht gesetzt werden. +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (153) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (52) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php (13) +2012/05/03 10:35:15 [warning] [application] Ungesichertes Attribut "id" konnte nicht gesetzt werden. +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (56) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php (13) +2012/05/03 10:36:45 [warning] [application] Ungesichertes Attribut "id" konnte nicht gesetzt werden. +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (83) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php (13) +2012/05/03 10:37:48 [warning] [application] Ungesichertes Attribut "id" konnte nicht gesetzt werden. +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (83) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php (13) +2012/05/03 10:40:13 [warning] [application] Ungesichertes Attribut "id" konnte nicht gesetzt werden. +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (83) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php (13) +2012/05/03 10:41:12 [error] [exception.CHttpException.404] exception 'CHttpException' with message 'Konnte den Request "cmsPage/view" nicht auflösen.' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php:280 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('cmsPage/view') +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#3 {main} +REQUEST_URI=/www.astaf.de/index.php?r=cmsPage/view&id=1 +HTTP_REFERER=http://localhost/www.astaf.de/index.php?r=site/index +--- +2012/05/03 10:41:20 [error] [exception.CHttpException.404] exception 'CHttpException' with message 'Konnte den Request "cmsPage/view" nicht auflösen.' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php:280 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('cmsPage/view') +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#3 {main} +REQUEST_URI=/www.astaf.de/index.php?r=cmsPage/view&id=1 +HTTP_REFERER=http://localhost/www.astaf.de/index.php?r=site/contact +--- +2012/05/03 10:43:03 [error] [exception.CHttpException.404] exception 'CHttpException' with message 'Konnte den Request "cmsPage/view" nicht auflösen.' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php:280 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('cmsPage/view') +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#3 {main} +REQUEST_URI=/www.astaf.de/index.php?r=cmsPage/view&id=1 +HTTP_REFERER=http://localhost/www.astaf.de/index.php?r=site/contact +--- +2012/05/03 10:44:25 [warning] [application] Ungesichertes Attribut "id" konnte nicht gesetzt werden. +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (83) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php (13) +2012/05/03 10:45:54 [warning] [application] Ungesichertes Attribut "id" konnte nicht gesetzt werden. +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (153) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (52) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php (13) +2012/05/03 10:46:14 [warning] [application] Ungesichertes Attribut "id" konnte nicht gesetzt werden. +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (153) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (52) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php (13) +2012/05/03 10:46:17 [warning] [application] Ungesichertes Attribut "id" konnte nicht gesetzt werden. +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (153) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (52) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php (13) +2012/05/03 10:46:17 [warning] [application] Ungesichertes Attribut "id" konnte nicht gesetzt werden. +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (153) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (52) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php (13) +2012/05/03 10:46:21 [warning] [application] Ungesichertes Attribut "id" konnte nicht gesetzt werden. +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (153) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (52) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php (13) +2012/05/03 10:46:22 [warning] [application] Ungesichertes Attribut "id" konnte nicht gesetzt werden. +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (153) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (52) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php (13) +2012/05/03 10:46:27 [warning] [application] Ungesichertes Attribut "id" konnte nicht gesetzt werden. +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (56) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php (13) +2012/05/03 10:46:41 [warning] [application] Ungesichertes Attribut "id" konnte nicht gesetzt werden. +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (153) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (79) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php (13) +2012/05/03 10:46:42 [warning] [application] Ungesichertes Attribut "id" konnte nicht gesetzt werden. +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (83) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php (13) +2012/05/03 10:46:52 [warning] [application] Ungesichertes Attribut "id" konnte nicht gesetzt werden. +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (153) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (52) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php (13) +2012/05/03 10:47:09 [warning] [application] Ungesichertes Attribut "id" konnte nicht gesetzt werden. +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (153) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (52) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php (13) +2012/05/03 10:47:11 [warning] [application] Ungesichertes Attribut "id" konnte nicht gesetzt werden. +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (153) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (52) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php (13) +2012/05/03 10:47:12 [warning] [application] Ungesichertes Attribut "id" konnte nicht gesetzt werden. +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (153) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (52) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php (13) +2012/05/03 10:47:36 [warning] [application] Ungesichertes Attribut "id" konnte nicht gesetzt werden. +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (153) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (52) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php (13) +2012/05/03 10:47:41 [warning] [application] Ungesichertes Attribut "id" konnte nicht gesetzt werden. +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (153) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (52) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php (13) +2012/05/03 10:47:42 [warning] [application] Ungesichertes Attribut "id" konnte nicht gesetzt werden. +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (153) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (52) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php (13) +2012/05/03 10:48:23 [warning] [application] Ungesichertes Attribut "id" konnte nicht gesetzt werden. +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (56) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php (13) +2012/05/03 10:50:25 [warning] [application] Ungesichertes Attribut "id" konnte nicht gesetzt werden. +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (83) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php (13) +2012/05/03 10:51:08 [warning] [application] Ungesichertes Attribut "id" konnte nicht gesetzt werden. +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (153) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (79) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php (13) +2012/05/03 10:51:15 [warning] [application] Ungesichertes Attribut "id" konnte nicht gesetzt werden. +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (153) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (79) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php (13) +2012/05/03 10:51:24 [warning] [application] Ungesichertes Attribut "id" konnte nicht gesetzt werden. +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (153) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (79) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php (13) +2012/05/03 10:51:38 [warning] [application] Ungesichertes Attribut "id" konnte nicht gesetzt werden. +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (153) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (79) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php (13) +2012/05/03 10:51:44 [warning] [application] Ungesichertes Attribut "id" konnte nicht gesetzt werden. +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (153) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (79) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php (13) +2012/05/03 10:52:10 [warning] [application] Ungesichertes Attribut "id" konnte nicht gesetzt werden. +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (83) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php (13) +2012/05/03 10:53:46 [error] [exception.CHttpException.404] exception 'CHttpException' with message 'Konnte den Request "cmsPage/view" nicht auflösen.' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php:280 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('cmsPage/view') +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#3 {main} +REQUEST_URI=/www.astaf.de/index.php?r=cmsPage/view&id=1 +HTTP_REFERER=http://localhost/www.astaf.de/index.php?r=cms/sitecontent/view&page=home +--- +2012/05/03 10:54:45 [error] [exception.CHttpException.404] exception 'CHttpException' with message 'Konnte den Request "cmsPage/view" nicht auflösen.' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php:280 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('cmsPage/view') +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#3 {main} +REQUEST_URI=/www.astaf.de/index.php?r=cmsPage/view&id=1 +HTTP_REFERER=http://localhost/www.astaf.de/index.php?r=cms/sitecontent/view&page=home +--- +2012/05/03 11:10:37 [error] [exception.CException] exception 'CException' with message 'Eigenschaft "Wetter.ort ist nicht definiert.' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CComponent.php:174 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWidgetFactory.php(162): CComponent->__set('ort', 'Waiblingen') +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(147): CWidgetFactory->createWidget(Object(SitecontentController), 'application.ext...', Array) +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(173): CBaseController->createWidget('application.ext...', Array) +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(143): CBaseController->widget('application.ext...', Array) +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php(45): CController->render('view', Array) +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SitecontentController->actionView() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CController->run('view') +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('cms/sitecontent...') +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#21 {main} +REQUEST_URI=/www.astaf.de/index.php?r=cms/sitecontent/view&page=pse +HTTP_REFERER=http://localhost/www.astaf.de/index.php?r=site/login +--- +2012/05/03 11:11:37 [error] [exception.CException] exception 'CException' with message 'Eigenschaft "Wetter.ort ist nicht definiert.' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CComponent.php:174 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWidgetFactory.php(162): CComponent->__set('ort', 'Waiblingen') +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(147): CWidgetFactory->createWidget(Object(SitecontentController), 'application.ext...', Array) +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(173): CBaseController->createWidget('application.ext...', Array) +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(143): CBaseController->widget('application.ext...', Array) +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php(45): CController->render('view', Array) +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SitecontentController->actionView() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CController->run('view') +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('cms/sitecontent...') +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#21 {main} +REQUEST_URI=/www.astaf.de/index.php?r=cms/sitecontent/view&page=pse +HTTP_REFERER=http://localhost/www.astaf.de/index.php?r=site/login +--- +2012/05/03 11:11:39 [error] [exception.CException] exception 'CException' with message 'Eigenschaft "Wetter.ort ist nicht definiert.' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CComponent.php:174 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWidgetFactory.php(162): CComponent->__set('ort', 'Waiblingen') +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(147): CWidgetFactory->createWidget(Object(SitecontentController), 'application.ext...', Array) +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(173): CBaseController->createWidget('application.ext...', Array) +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(143): CBaseController->widget('application.ext...', Array) +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php(45): CController->render('view', Array) +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SitecontentController->actionView() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CController->run('view') +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('cms/sitecontent...') +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#21 {main} +REQUEST_URI=/www.astaf.de/index.php?r=cms/sitecontent/view&page=pse +HTTP_REFERER=http://localhost/www.astaf.de/index.php?r=site/login +--- +2012/05/03 11:11:45 [error] [exception.CException] exception 'CException' with message 'Eigenschaft "Wetter.ort ist nicht definiert.' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CComponent.php:174 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWidgetFactory.php(162): CComponent->__set('ort', 'Waiblingen') +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(147): CWidgetFactory->createWidget(Object(SitecontentController), 'application.ext...', Array) +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(173): CBaseController->createWidget('application.ext...', Array) +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(143): CBaseController->widget('application.ext...', Array) +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php(45): CController->render('view', Array) +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SitecontentController->actionView() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CController->run('view') +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('cms/sitecontent...') +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#21 {main} +REQUEST_URI=/www.astaf.de/index.php?r=cms/sitecontent/view&page=pse +HTTP_REFERER=http://localhost/www.astaf.de/index.php?r=site/login +--- +2012/05/03 11:11:47 [error] [exception.CException] exception 'CException' with message 'Eigenschaft "Wetter.ort ist nicht definiert.' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CComponent.php:174 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWidgetFactory.php(162): CComponent->__set('ort', 'Waiblingen') +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(147): CWidgetFactory->createWidget(Object(SitecontentController), 'application.ext...', Array) +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(173): CBaseController->createWidget('application.ext...', Array) +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(143): CBaseController->widget('application.ext...', Array) +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php(45): CController->render('view', Array) +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SitecontentController->actionView() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CController->run('view') +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('cms/sitecontent...') +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#21 {main} +REQUEST_URI=/www.astaf.de/index.php?r=cms/sitecontent/view&page=pse +HTTP_REFERER=http://localhost/www.astaf.de/index.php?r=site/login +--- +2012/05/03 11:12:07 [error] [exception.CException] exception 'CException' with message 'Eigenschaft "Wetter.ort ist nicht definiert.' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CComponent.php:174 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWidgetFactory.php(162): CComponent->__set('ort', 'Waiblingen') +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(147): CWidgetFactory->createWidget(Object(SitecontentController), 'application.ext...', Array) +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(173): CBaseController->createWidget('application.ext...', Array) +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(143): CBaseController->widget('application.ext...', Array) +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php(45): CController->render('view', Array) +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SitecontentController->actionView() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CController->run('view') +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('cms/sitecontent...') +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#21 {main} +REQUEST_URI=/www.astaf.de/index.php?r=cms/sitecontent/view&page=pse +HTTP_REFERER=http://localhost/www.astaf.de/index.php?r=site/login +--- +2012/05/03 11:12:08 [error] [exception.CException] exception 'CException' with message 'Eigenschaft "Wetter.ort ist nicht definiert.' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CComponent.php:174 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWidgetFactory.php(162): CComponent->__set('ort', 'Waiblingen') +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(147): CWidgetFactory->createWidget(Object(SitecontentController), 'application.ext...', Array) +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(173): CBaseController->createWidget('application.ext...', Array) +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(143): CBaseController->widget('application.ext...', Array) +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php(45): CController->render('view', Array) +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SitecontentController->actionView() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CController->run('view') +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('cms/sitecontent...') +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#21 {main} +REQUEST_URI=/www.astaf.de/index.php?r=cms/sitecontent/view&page=pse +HTTP_REFERER=http://localhost/www.astaf.de/index.php?r=site/login +--- +2012/05/03 11:12:09 [error] [exception.CException] exception 'CException' with message 'Eigenschaft "Wetter.ort ist nicht definiert.' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CComponent.php:174 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWidgetFactory.php(162): CComponent->__set('ort', 'Waiblingen') +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(147): CWidgetFactory->createWidget(Object(SitecontentController), 'application.ext...', Array) +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(173): CBaseController->createWidget('application.ext...', Array) +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php(143): CBaseController->widget('application.ext...', Array) +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php(45): CController->render('view', Array) +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SitecontentController->actionView() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CController->run('view') +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('cms/sitecontent...') +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#21 {main} +REQUEST_URI=/www.astaf.de/index.php?r=cms/sitecontent/view&page=pse +HTTP_REFERER=http://localhost/www.astaf.de/index.php?r=site/login +--- +2012/05/03 11:16:47 [error] [php] Trying to get property of non-object (D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\models\Cms.php:67) +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): SitecontentController->renderInternal() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): SitecontentController->renderFile() +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php(45): SitecontentController->render() +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SitecontentController->actionView() +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams() +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): SitecontentController->runAction() +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CAccessControlFilter->filter() +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): SitecontentController->filterAccessControl() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): SitecontentController->runActionWithFilters() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): SitecontentController->run() +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController() +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CWebApplication->run() +REQUEST_URI=/www.astaf.de/index.php?r=cms/sitecontent/view&page=pse +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\models\Cms.php (67) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php (151) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (45) +2012/05/03 11:16:59 [error] [php] Undefined variable: tmp (D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\models\Cms.php:75) +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): SitecontentController->renderInternal() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): SitecontentController->renderFile() +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php(45): SitecontentController->render() +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SitecontentController->actionView() +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams() +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): SitecontentController->runAction() +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CAccessControlFilter->filter() +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): SitecontentController->filterAccessControl() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): SitecontentController->runActionWithFilters() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): SitecontentController->run() +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController() +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CWebApplication->run() +REQUEST_URI=/www.astaf.de/index.php?r=cms/sitecontent/view&page=pse +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\models\Cms.php (75) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php (151) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (45) +2012/05/03 11:17:47 [error] [php] array_merge() [function.array-merge]: Argument #2 is not an array (D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php:156) +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): SitecontentController->renderInternal() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(785): SitecontentController->renderFile() +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php(45): SitecontentController->render() +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SitecontentController->actionView() +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams() +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): SitecontentController->runAction() +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CAccessControlFilter->filter() +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): SitecontentController->filterAccessControl() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): SitecontentController->runActionWithFilters() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): SitecontentController->run() +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController() +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CWebApplication->run() +REQUEST_URI=/www.astaf.de/index.php?r=cms/sitecontent/view&page=pse +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\themes\astaf\views\layouts\main.php (156) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php (45) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php (13) +2012/05/03 11:18:30 [error] [exception.CHttpException.404] exception 'CHttpException' with message 'We are sorry. The requested page does not exist.' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php:144 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php(39): SitecontentController->loadContent() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SitecontentController->actionView() +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CController->run('view') +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('cms/sitecontent...') +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#14 {main} +REQUEST_URI=/www.astaf.de/index.php?r=cms/sitecontent/view&page=impressum +HTTP_REFERER=http://localhost/www.astaf.de/index.php?r=cms/sitecontent/view&page=pse +--- +2012/05/03 11:18:34 [error] [exception.CHttpException.404] exception 'CHttpException' with message 'We are sorry. The requested page does not exist.' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php:144 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php(39): SitecontentController->loadContent() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SitecontentController->actionView() +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CController->run('view') +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('cms/sitecontent...') +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#14 {main} +REQUEST_URI=/www.astaf.de/index.php?r=cms/sitecontent/view&page=impressum +HTTP_REFERER=http://localhost/www.astaf.de/index.php?r=site/login +--- +2012/05/03 11:18:36 [error] [exception.CHttpException.404] exception 'CHttpException' with message 'We are sorry. The requested page does not exist.' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php:144 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php(39): SitecontentController->loadContent() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SitecontentController->actionView() +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CController->run('view') +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('cms/sitecontent...') +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#14 {main} +REQUEST_URI=/www.astaf.de/index.php?r=cms/sitecontent/view&page=impressum +HTTP_REFERER=http://localhost/www.astaf.de/index.php?r=cms/sitecontent/view&page=impressum +--- +2012/05/03 11:18:40 [error] [exception.CHttpException.404] exception 'CHttpException' with message 'We are sorry. The requested page does not exist.' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php:144 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php(39): SitecontentController->loadContent() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SitecontentController->actionView() +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CController->run('view') +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('cms/sitecontent...') +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#14 {main} +REQUEST_URI=/www.astaf.de/index.php?r=cms/sitecontent/view&page=impressum +HTTP_REFERER=http://localhost/www.astaf.de/index.php?r=site/login +--- +2012/05/05 15:33:53 [error] [exception.CHttpException.404] exception 'CHttpException' with message 'We are sorry. The requested page does not exist.' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php:144 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\modules\cms\controllers\SitecontentController.php(39): SitecontentController->loadContent() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): SitecontentController->actionView() +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CController->run('view') +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('cms/sitecontent...') +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#14 {main} +REQUEST_URI=/www.astaf.de/index.php?r=cms/sitecontent/view&page=impressum +HTTP_REFERER=http://localhost/www.astaf.de/index.php?r=site/login +--- +2012/05/05 16:39:23 [error] [exception.CException] exception 'CException' with message 'Alias "application.modules.auditTrail.behaviors.LoggableBehavior" ist ungültig. Stellen Sie sicher, dass er auf eine existierende PHP-Datei verweist.' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\YiiBase.php:318 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\YiiBase.php(198): YiiBase::import('application.mod...', true) +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CComponent.php(327): YiiBase::createComponent('application.mod...') +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CComponent.php(298): CComponent->attachBehavior('LoggableBehavio...', 'application.mod...') +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\db\ar\CActiveRecord.php(380): CComponent->attachBehaviors(Array) +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\db\ar\CActiveRecord.php(394): CActiveRecord::model('Verein') +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\db\ar\CActiveRecord.php(78): CActiveRecord->getMetaData() +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\VereinController.php(129): CActiveRecord->__construct('search') +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): VereinController->actionIndex() +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CController->run('') +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('verein') +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#20 {main} +REQUEST_URI=/www.astaf.de/index.php?r=verein +--- +2012/05/05 16:55:08 [error] [exception.CException] exception 'CException' with message 'VereinController kann den angeforderten View "index" nicht finden.' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php:879 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(783): CController->renderPartial('index', Array, true) +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\VereinController.php(136): CController->render('index', Array) +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): VereinController->actionIndex() +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CController->run('') +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('verein') +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#15 {main} +REQUEST_URI=/www.astaf.de/index.php?r=verein +--- +2012/05/05 16:56:31 [error] [exception.CException] exception 'CException' with message 'VereinController kann den angeforderten View "/common/_comparison_text" nicht finden.' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php:879 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\verein\index.php(13): CController->renderPartial('/common/_compar...') +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(870): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(783): CController->renderPartial('index', Array, true) +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\VereinController.php(136): CController->render('index', Array) +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): VereinController->actionIndex() +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CController->run('') +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('verein') +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#19 {main} +REQUEST_URI=/www.astaf.de/index.php?r=verein +--- +2012/05/05 16:57:28 [error] [exception.CException] exception 'CException' with message 'Alias "application.modules.auditTrail.behaviors.LoggableBehavior" ist ungültig. Stellen Sie sicher, dass er auf eine existierende PHP-Datei verweist.' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\YiiBase.php:318 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\YiiBase.php(198): YiiBase::import('application.mod...', true) +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CComponent.php(327): YiiBase::createComponent('application.mod...') +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CComponent.php(298): CComponent->attachBehavior('LoggableBehavio...', 'application.mod...') +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\db\ar\CActiveRecord.php(380): CComponent->attachBehaviors(Array) +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\db\ar\CActiveFinder.php(219): CActiveRecord::model('Standort') +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\db\ar\CActiveFinder.php(49): CActiveFinder->buildJoinTree(Object(CJoinElement), 'standort') +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\db\ar\CActiveRecord.php(268): CActiveFinder->__construct(Object(Verein), 'standort') +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\db\ar\CActiveRecord.php(142): CActiveRecord->getRelated('standort') +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\verein\view.php(27): CActiveRecord->__get('standort') +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(870): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(783): CController->renderPartial('view', Array, true) +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\VereinController.php(48): CController->render('view', Array) +#14 [internal function]: VereinController->actionView('1') +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CAction.php(107): ReflectionMethod->invokeArgs(Object(VereinController), Array) +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(48): CAction->runWithParamsInternal(Object(VereinController), Object(ReflectionMethod), Array) +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) +#21 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) +#22 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) +#23 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#24 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#25 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CController->run('view') +#26 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('verein/view') +#27 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#28 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#29 {main} +REQUEST_URI=/www.astaf.de/index.php?r=verein/view&id=1 +HTTP_REFERER=http://localhost/www.astaf.de/index.php?r=verein +--- +2012/05/05 17:10:37 [error] [exception.CException] exception 'CException' with message 'Eigenschaft "Verein.search ist nicht definiert.' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CComponent.php:131 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\db\ar\CActiveRecord.php(144): CComponent->__get('search') +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\verein\index.php(22): CActiveRecord->__get('search') +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(870): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(783): CController->renderPartial('index', Array, true) +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\VereinController.php(136): CController->render('index', Array) +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): VereinController->actionIndex() +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CController->run('') +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('verein') +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#20 {main} +REQUEST_URI=/www.astaf.de/index.php?r=verein +--- +2012/05/05 17:10:40 [error] [exception.CException] exception 'CException' with message 'Eigenschaft "Verein.search ist nicht definiert.' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CComponent.php:131 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\db\ar\CActiveRecord.php(144): CComponent->__get('search') +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\verein\index.php(22): CActiveRecord->__get('search') +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(870): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(783): CController->renderPartial('index', Array, true) +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\VereinController.php(136): CController->render('index', Array) +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): VereinController->actionIndex() +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CController->run('') +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('verein') +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#20 {main} +REQUEST_URI=/www.astaf.de/index.php?r=verein +--- +2012/05/05 17:10:59 [error] [exception.CException] exception 'CException' with message 'VereinController kann den angeforderten View "_post" nicht finden.' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php:879 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\zii\widgets\CListView.php(242): CController->renderPartial('_post', Array) +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\zii\widgets\CBaseListView.php(158): CListView->renderItems() +#2 [internal function]: CBaseListView->renderSection(Array) +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\zii\widgets\CBaseListView.php(141): preg_replace_callback('/{(\w+)}/', Array, '{summary}?{sort...') +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\zii\widgets\CBaseListView.php(126): CBaseListView->renderContent() +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(174): CBaseListView->run() +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\verein\index.php(28): CBaseController->widget('zii.widgets.CLi...', Array) +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(870): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(783): CController->renderPartial('index', Array, true) +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\VereinController.php(136): CController->render('index', Array) +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): VereinController->actionIndex() +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#21 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CController->run('') +#22 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('verein') +#23 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#24 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#25 {main} +REQUEST_URI=/www.astaf.de/index.php?r=verein +--- +2012/05/05 17:11:00 [error] [exception.CException] exception 'CException' with message 'VereinController kann den angeforderten View "_post" nicht finden.' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php:879 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\zii\widgets\CListView.php(242): CController->renderPartial('_post', Array) +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\zii\widgets\CBaseListView.php(158): CListView->renderItems() +#2 [internal function]: CBaseListView->renderSection(Array) +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\zii\widgets\CBaseListView.php(141): preg_replace_callback('/{(\w+)}/', Array, '{summary}?{sort...') +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\zii\widgets\CBaseListView.php(126): CBaseListView->renderContent() +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(174): CBaseListView->run() +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\verein\index.php(28): CBaseController->widget('zii.widgets.CLi...', Array) +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(870): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(783): CController->renderPartial('index', Array, true) +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\VereinController.php(136): CController->render('index', Array) +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): VereinController->actionIndex() +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#21 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CController->run('') +#22 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('verein') +#23 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#24 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#25 {main} +REQUEST_URI=/www.astaf.de/index.php?r=verein +--- +2012/05/05 17:11:24 [error] [php] Undefined variable: model (D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\verein\view.php:4) +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(870): VereinController->renderFile() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\zii\widgets\CListView.php(242): VereinController->renderPartial() +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\zii\widgets\CBaseListView.php(158): CListView->renderItems() +#3 unknown(0): CListView->renderSection() +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\zii\widgets\CBaseListView.php(141): preg_replace_callback() +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\zii\widgets\CBaseListView.php(126): CListView->renderContent() +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(174): CListView->run() +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\verein\index.php(28): VereinController->widget() +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): VereinController->renderInternal() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(870): VereinController->renderFile() +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(783): VereinController->renderPartial() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\VereinController.php(136): VereinController->render() +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): VereinController->actionIndex() +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams() +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): VereinController->runAction() +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CAccessControlFilter->filter() +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): VereinController->filterAccessControl() +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#21 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): VereinController->runActionWithFilters() +#22 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): VereinController->run() +#23 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController() +#24 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#25 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CWebApplication->run() +REQUEST_URI=/www.astaf.de/index.php?r=verein +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\verein\view.php (4) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\verein\index.php (28) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\VereinController.php (136) +2012/05/05 17:15:23 [error] [exception.CException] exception 'CException' with message 'Eigenschaft "CListView.filter ist nicht definiert.' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CComponent.php:174 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWidgetFactory.php(162): CComponent->__set('filter', Object(Verein)) +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(147): CWidgetFactory->createWidget(Object(VereinController), 'zii.widgets.CLi...', Array) +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(173): CBaseController->createWidget('zii.widgets.CLi...', Array) +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\verein\index.php(29): CBaseController->widget('zii.widgets.CLi...', Array) +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(870): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(783): CController->renderPartial('index', Array, true) +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\VereinController.php(136): CController->render('index', Array) +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): VereinController->actionIndex() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CController->run('') +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('verein') +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#21 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#22 {main} +REQUEST_URI=/www.astaf.de/index.php?r=verein +--- +2012/05/05 17:15:53 [error] [exception.CException] exception 'CException' with message 'Eigenschaft "CListView.data ist nicht definiert.' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CComponent.php:174 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWidgetFactory.php(162): CComponent->__set('data', Object(Verein)) +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(147): CWidgetFactory->createWidget(Object(VereinController), 'zii.widgets.CLi...', Array) +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(173): CBaseController->createWidget('zii.widgets.CLi...', Array) +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\verein\index.php(28): CBaseController->widget('zii.widgets.CLi...', Array) +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(870): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(783): CController->renderPartial('index', Array, true) +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\VereinController.php(136): CController->render('index', Array) +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): VereinController->actionIndex() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CController->run('') +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('verein') +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#21 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#22 {main} +REQUEST_URI=/www.astaf.de/index.php?r=verein +--- +2012/05/05 17:15:55 [error] [exception.CException] exception 'CException' with message 'Eigenschaft "CListView.data ist nicht definiert.' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CComponent.php:174 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWidgetFactory.php(162): CComponent->__set('data', Object(Verein)) +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(147): CWidgetFactory->createWidget(Object(VereinController), 'zii.widgets.CLi...', Array) +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(173): CBaseController->createWidget('zii.widgets.CLi...', Array) +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\verein\index.php(28): CBaseController->widget('zii.widgets.CLi...', Array) +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(870): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(783): CController->renderPartial('index', Array, true) +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\VereinController.php(136): CController->render('index', Array) +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): VereinController->actionIndex() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CController->run('') +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('verein') +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#21 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#22 {main} +REQUEST_URI=/www.astaf.de/index.php?r=verein +--- +2012/05/05 17:17:06 [error] [exception.CException] exception 'CException' with message 'Weder Verein noch zugehörige Behavior haben einen Scope "getData".' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CComponent.php:266 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\db\ar\CActiveRecord.php(226): CComponent->__call('getData', Array) +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\zii\widgets\CBaseListView.php(105): CActiveRecord->__call('getData', Array) +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\zii\widgets\CBaseListView.php(105): Verein->getData() +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\zii\widgets\CListView.php(173): CBaseListView->init() +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(148): CListView->init() +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(173): CBaseController->createWidget('zii.widgets.CLi...', Array) +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\verein\index.php(28): CBaseController->widget('zii.widgets.CLi...', Array) +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(870): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(783): CController->renderPartial('index', Array, true) +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\VereinController.php(136): CController->render('index', Array) +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): VereinController->actionIndex() +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#21 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CController->run('') +#22 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('verein') +#23 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#24 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#25 {main} +REQUEST_URI=/www.astaf.de/index.php?r=verein +--- +2012/05/05 17:17:27 [error] [php] Undefined variable: model (D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\verein\view.php:4) +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(870): VereinController->renderFile() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\zii\widgets\CListView.php(242): VereinController->renderPartial() +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\zii\widgets\CBaseListView.php(158): CListView->renderItems() +#3 unknown(0): CListView->renderSection() +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\zii\widgets\CBaseListView.php(141): preg_replace_callback() +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\zii\widgets\CBaseListView.php(126): CListView->renderContent() +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(174): CListView->run() +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\verein\index.php(28): VereinController->widget() +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): VereinController->renderInternal() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(870): VereinController->renderFile() +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(783): VereinController->renderPartial() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\VereinController.php(136): VereinController->render() +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): VereinController->actionIndex() +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams() +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): VereinController->runAction() +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CAccessControlFilter->filter() +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): VereinController->filterAccessControl() +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#21 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): VereinController->runActionWithFilters() +#22 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): VereinController->run() +#23 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController() +#24 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#25 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CWebApplication->run() +REQUEST_URI=/www.astaf.de/index.php?r=verein +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\verein\view.php (4) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\verein\index.php (28) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\VereinController.php (136) +2012/05/05 17:25:21 [error] [exception.CException] exception 'CException' with message 'Alias "application.modules.auditTrail.behaviors.LoggableBehavior" ist ungültig. Stellen Sie sicher, dass er auf eine existierende PHP-Datei verweist.' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\YiiBase.php:318 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\YiiBase.php(198): YiiBase::import('application.mod...', true) +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CComponent.php(327): YiiBase::createComponent('application.mod...') +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CComponent.php(298): CComponent->attachBehavior('LoggableBehavio...', 'application.mod...') +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\db\ar\CActiveRecord.php(380): CComponent->attachBehaviors(Array) +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\db\ar\CActiveFinder.php(219): CActiveRecord::model('Standort') +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\db\ar\CActiveFinder.php(49): CActiveFinder->buildJoinTree(Object(CJoinElement), 'standort') +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\db\ar\CActiveRecord.php(268): CActiveFinder->__construct(Object(Verein), 'standort') +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\db\ar\CActiveRecord.php(142): CActiveRecord->getRelated('standort') +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\verein\view.php(27): CActiveRecord->__get('standort') +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(870): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(783): CController->renderPartial('view', Array, true) +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\VereinController.php(48): CController->render('view', Array) +#14 [internal function]: VereinController->actionView('1') +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CAction.php(107): ReflectionMethod->invokeArgs(Object(VereinController), Array) +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(48): CAction->runWithParamsInternal(Object(VereinController), Object(ReflectionMethod), Array) +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) +#21 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) +#22 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) +#23 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#24 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#25 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CController->run('view') +#26 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('verein/view') +#27 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#28 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#29 {main} +REQUEST_URI=/www.astaf.de/index.php?r=verein/view&id=1 +HTTP_REFERER=http://localhost/www.astaf.de/index.php?r=verein +--- +2012/05/05 17:27:21 [error] [exception.CException] exception 'CException' with message 'Eigenschaft "Verein.description ist nicht definiert.' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CComponent.php:131 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\db\ar\CActiveRecord.php(144): CComponent->__get('description') +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\verein\_short.php(2): CActiveRecord->__get('description') +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(870): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\zii\widgets\CListView.php(242): CController->renderPartial('_short', Array) +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\zii\widgets\CBaseListView.php(158): CListView->renderItems() +#7 [internal function]: CBaseListView->renderSection(Array) +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\zii\widgets\CBaseListView.php(141): preg_replace_callback('/{(\w+)}/', Array, '{summary}?{sort...') +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\zii\widgets\CBaseListView.php(126): CBaseListView->renderContent() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(174): CBaseListView->run() +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\verein\index.php(26): CBaseController->widget('zii.widgets.CLi...', Array) +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(870): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(783): CController->renderPartial('index', Array, true) +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\VereinController.php(136): CController->render('index', Array) +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): VereinController->actionIndex() +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#21 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) +#22 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) +#23 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) +#24 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#25 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#26 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CController->run('') +#27 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('verein') +#28 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#29 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#30 {main} +REQUEST_URI=/www.astaf.de/index.php?r=verein +--- +2012/05/05 17:32:06 [error] [exception.CException] exception 'CException' with message 'Alias "application.modules.auditTrail.behaviors.LoggableBehavior" ist ungültig. Stellen Sie sicher, dass er auf eine existierende PHP-Datei verweist.' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\YiiBase.php:318 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\YiiBase.php(198): YiiBase::import('application.mod...', true) +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CComponent.php(327): YiiBase::createComponent('application.mod...') +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CComponent.php(298): CComponent->attachBehavior('LoggableBehavio...', 'application.mod...') +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\db\ar\CActiveRecord.php(380): CComponent->attachBehaviors(Array) +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\db\ar\CActiveFinder.php(219): CActiveRecord::model('Standort') +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\db\ar\CActiveFinder.php(49): CActiveFinder->buildJoinTree(Object(CJoinElement), 'standort') +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\db\ar\CActiveRecord.php(268): CActiveFinder->__construct(Object(Verein), 'standort') +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\db\ar\CActiveRecord.php(142): CActiveRecord->getRelated('standort') +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\verein\view.php(27): CActiveRecord->__get('standort') +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(870): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(783): CController->renderPartial('view', Array, true) +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\VereinController.php(48): CController->render('view', Array) +#14 [internal function]: VereinController->actionView('1') +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CAction.php(107): ReflectionMethod->invokeArgs(Object(VereinController), Array) +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(48): CAction->runWithParamsInternal(Object(VereinController), Object(ReflectionMethod), Array) +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) +#21 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) +#22 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) +#23 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#24 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#25 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CController->run('view') +#26 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('verein/view') +#27 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#28 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#29 {main} +REQUEST_URI=/www.astaf.de/index.php?r=verein/view&id=1 +HTTP_REFERER=http://localhost/www.astaf.de/index.php?r=verein +--- +2012/05/05 17:37:51 [error] [php] Use of undefined constant myBeschreibung - assumed 'myBeschreibung' (D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\verein\_short.php:9) +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(870): VereinController->renderFile() +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\zii\widgets\CListView.php(242): VereinController->renderPartial() +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\zii\widgets\CBaseListView.php(158): CListView->renderItems() +#3 unknown(0): CListView->renderSection() +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\zii\widgets\CBaseListView.php(141): preg_replace_callback() +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\zii\widgets\CBaseListView.php(126): CListView->renderContent() +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(174): CListView->run() +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\verein\index.php(26): VereinController->widget() +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require() +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): VereinController->renderInternal() +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(870): VereinController->renderFile() +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(783): VereinController->renderPartial() +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\VereinController.php(136): VereinController->render() +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(50): VereinController->actionIndex() +#14 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams() +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): VereinController->runAction() +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CAccessControlFilter->filter() +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): VereinController->filterAccessControl() +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter() +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#21 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): VereinController->runActionWithFilters() +#22 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): VereinController->run() +#23 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController() +#24 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#25 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CWebApplication->run() +REQUEST_URI=/www.astaf.de/index.php?r=verein +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\verein\_short.php (9) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\verein\index.php (26) +in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\VereinController.php (136) +2012/05/05 17:44:20 [error] [exception.CException] exception 'CException' with message 'Alias "application.modules.auditTrail.behaviors.LoggableBehavior" ist ungültig. Stellen Sie sicher, dass er auf eine existierende PHP-Datei verweist.' in D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\YiiBase.php:318 +Stack trace: +#0 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\YiiBase.php(198): YiiBase::import('application.mod...', true) +#1 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CComponent.php(327): YiiBase::createComponent('application.mod...') +#2 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CComponent.php(298): CComponent->attachBehavior('LoggableBehavio...', 'application.mod...') +#3 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\db\ar\CActiveRecord.php(380): CComponent->attachBehaviors(Array) +#4 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\db\ar\CActiveFinder.php(219): CActiveRecord::model('Standort') +#5 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\db\ar\CActiveFinder.php(49): CActiveFinder->buildJoinTree(Object(CJoinElement), 'standort') +#6 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\db\ar\CActiveRecord.php(268): CActiveFinder->__construct(Object(Verein), 'standort') +#7 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\db\ar\CActiveRecord.php(142): CActiveRecord->getRelated('standort') +#8 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\views\verein\view.php(27): CActiveRecord->__get('standort') +#9 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(127): require('D:\Priv\CCWN\As...') +#10 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CBaseController.php(96): CBaseController->renderInternal('D:\Priv\CCWN\As...', Array, true) +#11 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(870): CBaseController->renderFile('D:\Priv\CCWN\As...', Array, true) +#12 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(783): CController->renderPartial('view', Array, true) +#13 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\protected\controllers\VereinController.php(48): CController->render('view', Array) +#14 [internal function]: VereinController->actionView('1') +#15 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CAction.php(107): ReflectionMethod->invokeArgs(Object(VereinController), Array) +#16 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\actions\CInlineAction.php(48): CAction->runWithParamsInternal(Object(VereinController), Object(ReflectionMethod), Array) +#17 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(309): CInlineAction->runWithParams(Array) +#18 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(134): CController->runAction(Object(CInlineAction)) +#19 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilter.php(41): CFilterChain->run() +#20 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(1146): CFilter->filter(Object(CFilterChain)) +#21 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CInlineFilter.php(59): CController->filterAccessControl(Object(CFilterChain)) +#22 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\filters\CFilterChain.php(131): CInlineFilter->filter(Object(CFilterChain)) +#23 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(292): CFilterChain->run() +#24 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CController.php(266): CController->runActionWithFilters(Object(CInlineAction), Array) +#25 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(276): CController->run('view') +#26 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\web\CWebApplication.php(135): CWebApplication->runController('verein/view') +#27 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\yii-framework\framework\base\CApplication.php(162): CWebApplication->processRequest() +#28 D:\Priv\CCWN\Astaf_2012\DevEnv\workspace\www.astaf.de\index.php(13): CApplication->run() +#29 {main} +REQUEST_URI=/www.astaf.de/index.php?r=verein/view&id=1 +HTTP_REFERER=http://localhost/www.astaf.de/index.php?r=verein +--- diff --git a/protected/runtime/cache/57bda9da3bcf4917957d5102f46386f0.bin b/protected/runtime/cache/57bda9da3bcf4917957d5102f46386f0.bin index a35243c..4d14c10 100644 --- a/protected/runtime/cache/57bda9da3bcf4917957d5102f46386f0.bin +++ b/protected/runtime/cache/57bda9da3bcf4917957d5102f46386f0.bin @@ -1 +1 @@ -a:2:{i:0;a:1:{s:3:"now";a:4:{s:3:"tag";s:7:"Aktuell";s:10:"temperatur";s:1:"7";s:7:"zustand";s:4:"Klar";s:4:"icon";s:10:"/sunny.gif";}}i:1;N;} \ No newline at end of file +a:2:{i:0;a:3:{s:3:"Ort";s:10:"Waiblingen";s:5:"jetzt";a:6:{s:3:"tag";s:7:"Aktuell";s:10:"temperatur";s:2:"15";s:7:"zustand";s:17:"Meistens bewölkt";s:4:"icon";s:18:"/mostly_cloudy.gif";s:17:"hoechsttemperatur";s:2:"19";s:16:"tiefsttemperatur";s:1:"7";}s:6:"morgen";a:5:{s:3:"tag";s:3:"So.";s:17:"hoechsttemperatur";s:2:"20";s:16:"tiefsttemperatur";s:1:"6";s:7:"zustand";s:21:"Vereinzelt stürmisch";s:4:"icon";s:20:"/chance_of_storm.gif";}}i:1;N;} \ No newline at end of file diff --git a/protected/runtime/cache/c14ee5a4fa047c25488b05abf0f92fff.bin b/protected/runtime/cache/c14ee5a4fa047c25488b05abf0f92fff.bin deleted file mode 100644 index 8f3e5a8..0000000 --- a/protected/runtime/cache/c14ee5a4fa047c25488b05abf0f92fff.bin +++ /dev/null @@ -1 +0,0 @@ -a:2:{i:0;a:2:{s:5:"jetzt";a:4:{s:3:"tag";s:7:"Aktuell";s:10:"temperatur";s:2:"16";s:7:"zustand";s:4:"Klar";s:4:"icon";s:10:"/sunny.gif";}s:6:"morgen";a:5:{s:3:"tag";s:3:"Di.";s:17:"hoechsttemperatur";s:2:"24";s:16:"tiefsttemperatur";s:2:"11";s:7:"zustand";s:16:"Vereinzelt Regen";s:4:"icon";s:19:"/chance_of_rain.gif";}}i:1;N;} \ No newline at end of file diff --git a/protected/views/cmsPage/_form.php b/protected/views/cmsPage/_form.php deleted file mode 100644 index 4b29cd3..0000000 --- a/protected/views/cmsPage/_form.php +++ /dev/null @@ -1,50 +0,0 @@ -
- -beginWidget('CActiveForm', array( - 'id'=>'cms-page-form', - 'enableAjaxValidation'=>false, -)); ?> - -

Fields with * are required.

- - errorSummary($model); ?> - -
- - labelEx($model,'content'); ?> - widget( - 'application.extensions.ddeditor.DDEditor', - array( - 'model'=>$model, - 'attribute'=>'content', - 'htmlOptions'=>array('rows'=>10, 'cols'=>70), - 'previewRequest'=>'cmsPage/preview')); ?> - error($model,'content'); ?> -
- -
- labelEx($model,'title'); ?> - textField($model,'title',array('size'=>60,'maxlength'=>255)); ?> - error($model,'title'); ?> -
- - -
- labelEx($model,'status'); ?> - textField($model,'status'); ?> - error($model,'status'); ?> -
- -
- labelEx($model,'slug'); ?> - textField($model,'slug',array('size'=>60,'maxlength'=>255)); ?> - error($model,'slug'); ?> -
- -
- isNewRecord ? 'Create' : 'Save'); ?> -
- -endWidget(); ?> - -
\ No newline at end of file diff --git a/protected/views/cmsPage/_search.php b/protected/views/cmsPage/_search.php deleted file mode 100644 index abab43c..0000000 --- a/protected/views/cmsPage/_search.php +++ /dev/null @@ -1,49 +0,0 @@ -
- -beginWidget('CActiveForm', array( - 'action'=>Yii::app()->createUrl($this->route), - 'method'=>'get', -)); ?> - -
- label($model,'id'); ?> - textField($model,'id'); ?> -
- -
- label($model,'content'); ?> - textArea($model,'content',array('rows'=>6, 'cols'=>50)); ?> -
- -
- label($model,'title'); ?> - textField($model,'title',array('size'=>60,'maxlength'=>255)); ?> -
- -
- label($model,'create_time'); ?> - textField($model,'create_time'); ?> -
- -
- label($model,'update_time'); ?> - textField($model,'update_time'); ?> -
- -
- label($model,'status'); ?> - textField($model,'status'); ?> -
- -
- label($model,'slug'); ?> - textField($model,'slug',array('size'=>60,'maxlength'=>255)); ?> -
- -
- -
- -endWidget(); ?> - -
\ No newline at end of file diff --git a/protected/views/cmsPage/_view.php b/protected/views/cmsPage/_view.php deleted file mode 100644 index fd490a3..0000000 --- a/protected/views/cmsPage/_view.php +++ /dev/null @@ -1,32 +0,0 @@ -
- - getAttributeLabel('id')); ?>: - id), array('view', 'id'=>$data->id)); ?> -
- - getAttributeLabel('content')); ?>: - content); ?> -
- - getAttributeLabel('title')); ?>: - title); ?> -
- - getAttributeLabel('create_time')); ?>: - create_time); ?> -
- - getAttributeLabel('update_time')); ?>: - update_time); ?> -
- - getAttributeLabel('status')); ?>: - status); ?> -
- - getAttributeLabel('slug')); ?>: - slug); ?> -
- - -
\ No newline at end of file diff --git a/protected/views/cmsPage/admin.php b/protected/views/cmsPage/admin.php deleted file mode 100644 index 88ede5c..0000000 --- a/protected/views/cmsPage/admin.php +++ /dev/null @@ -1,58 +0,0 @@ -breadcrumbs=array( - 'Cms Pages'=>array('index'), - 'Manage', -); - -$this->menu=array( - array('label'=>'List CmsPage', 'url'=>array('index')), - array('label'=>'Create CmsPage', 'url'=>array('create')), -); - -Yii::app()->clientScript->registerScript('search', " -$('.search-button').click(function(){ - $('.search-form').toggle(); - return false; -}); -$('.search-form form').submit(function(){ - $.fn.yiiGridView.update('cms-page-grid', { - data: $(this).serialize() - }); - return false; -}); -"); -?> - -

Manage Cms Pages

- -

-You may optionally enter a comparison operator (<, <=, >, >=, <> -or =) at the beginning of each of your search values to specify how the comparison should be done. -

- -'search-button')); ?> - - -widget('zii.widgets.grid.CGridView', array( - 'id'=>'cms-page-grid', - 'dataProvider'=>$model->search(), - 'filter'=>$model, - 'columns'=>array( - 'id', - 'content', - 'title', - 'create_time', - 'update_time', - 'status', - /* - 'slug', - */ - array( - 'class'=>'CButtonColumn', - ), - ), -)); ?> diff --git a/protected/views/cmsPage/create.php b/protected/views/cmsPage/create.php deleted file mode 100644 index a193bdc..0000000 --- a/protected/views/cmsPage/create.php +++ /dev/null @@ -1,15 +0,0 @@ -breadcrumbs=array( - 'Cms Pages'=>array('index'), - 'Create', -); - -$this->menu=array( - array('label'=>'List CmsPage', 'url'=>array('index')), - array('label'=>'Manage CmsPage', 'url'=>array('admin')), -); -?> - -

Create CmsPage

- -renderPartial('_form', array('model'=>$model)); ?> \ No newline at end of file diff --git a/protected/views/cmsPage/index.php b/protected/views/cmsPage/index.php deleted file mode 100644 index 2b9d12d..0000000 --- a/protected/views/cmsPage/index.php +++ /dev/null @@ -1,17 +0,0 @@ -breadcrumbs=array( - 'Cms Pages', -); - -$this->menu=array( - array('label'=>'Create CmsPage', 'url'=>array('create')), - array('label'=>'Manage CmsPage', 'url'=>array('admin')), -); -?> - -

Cms Pages

- -widget('zii.widgets.CListView', array( - 'dataProvider'=>$dataProvider, - 'itemView'=>'_view', -)); ?> diff --git a/protected/views/cmsPage/update.php b/protected/views/cmsPage/update.php deleted file mode 100644 index e4aa403..0000000 --- a/protected/views/cmsPage/update.php +++ /dev/null @@ -1,18 +0,0 @@ -breadcrumbs=array( - 'Cms Pages'=>array('index'), - $model->title=>array('view','id'=>$model->id), - 'Update', -); - -$this->menu=array( - array('label'=>'List CmsPage', 'url'=>array('index')), - array('label'=>'Create CmsPage', 'url'=>array('create')), - array('label'=>'View CmsPage', 'url'=>array('view', 'id'=>$model->id)), - array('label'=>'Manage CmsPage', 'url'=>array('admin')), -); -?> - -

Update CmsPage id; ?>

- -renderPartial('_form', array('model'=>$model)); ?> \ No newline at end of file diff --git a/protected/views/cmsPage/view.php b/protected/views/cmsPage/view.php deleted file mode 100644 index b05fd2e..0000000 --- a/protected/views/cmsPage/view.php +++ /dev/null @@ -1,39 +0,0 @@ -breadcrumbs=array( - 'Cms Pages'=>array('index'), - $model->title, -); - -$this->menu=array( - array('label'=>'List CmsPage', 'url'=>array('index')), - array('label'=>'Create CmsPage', 'url'=>array('create')), - array('label'=>'Update CmsPage', 'url'=>array('update', 'id'=>$model->id)), - array('label'=>'Delete CmsPage', 'url'=>'#', 'linkOptions'=>array('submit'=>array('delete','id'=>$model->id),'confirm'=>'Are you sure you want to delete this item?')), - array('label'=>'Manage CmsPage', 'url'=>array('admin')), -); -?> - -

title; ?>

- -
-safeTransform($model->content); - -?> -
- -widget('zii.widgets.CDetailView', array( - 'data'=>$model, - 'attributes'=>array( - 'id', - 'content', - 'title', - 'create_time', - 'update_time', - 'status', - 'slug', - ), -)); ?> - -
Diese Seite wurde am update_time ?> zuletzt aktualisiert.
\ No newline at end of file diff --git a/protected/views/common/_advanced_search.php b/protected/views/common/_advanced_search.php new file mode 100644 index 0000000..78d3837 --- /dev/null +++ b/protected/views/common/_advanced_search.php @@ -0,0 +1,20 @@ +clientScript->registerScript('search', " +$('.search-button').click(function(){ + $('.search-form').toggle(); + return false; +}); +$('.search-form form').submit(function(){ + $.fn.yiiGridView.update('angebot-grid', { + data: $(this).serialize() + }); + return false; +}); +"); +?> +'search-button')); ?> + \ No newline at end of file diff --git a/protected/views/common/_comparison_text.php b/protected/views/common/_comparison_text.php new file mode 100644 index 0000000..f2a0b2c --- /dev/null +++ b/protected/views/common/_comparison_text.php @@ -0,0 +1,4 @@ +

+Die optionale Eingabe von Vergleichsoperatoren (<, <=, >, >=, <> +or =) zu Beginn eines Suchwertes dient der Spezifikation, wie der Vergleich erfolgen soll. +

\ No newline at end of file diff --git a/protected/views/common/_required_fields_text.php b/protected/views/common/_required_fields_text.php new file mode 100644 index 0000000..8b2ca71 --- /dev/null +++ b/protected/views/common/_required_fields_text.php @@ -0,0 +1 @@ +

Mit * gekennzeichnete Felder sind Pflichtfelder.

\ No newline at end of file diff --git a/protected/views/verein/_form.php b/protected/views/verein/_form.php new file mode 100644 index 0000000..dbda2db --- /dev/null +++ b/protected/views/verein/_form.php @@ -0,0 +1,114 @@ +
+ +beginWidget('CActiveForm', array( + 'id'=>'verein-form', + 'enableAjaxValidation'=>false, + "htmlOptions"=>array('enctype'=>'multipart/form-data'), +)); ?> + + renderPartial('/common/_required_fields_text'); ?> + + errorSummary($model); ?> + +
+ labelEx($model,'slug'); ?> + user->isAdmin) { + echo $form->dropDownList($model, "slug", CHtml::listData($slugs, "username", "username"), array('empty' => '-- Bitte Benutzer wählen --')); + } else { + echo CHtml::encode($model->slug); + } + ?> + error($model,'slug'); ?> +
+ +
+ labelEx($model,'name'); ?> + textField($model,'name',array('size'=>60,'maxlength'=>255)); ?> + error($model,'name'); ?> +
+ +
+ labelEx($model,'url'); ?> + textField($model,'url',array('size'=>60,'maxlength'=>255)); ?> + error($model,'url'); ?> +
+ +
+ labelEx($model,'bild'); ?> + bild); ?>
+ fileField($model,'uploadedImage', array('size'=>60)); ?> + error($model,'bild'); ?> +
+ +
+ labelEx($model,'email'); ?> + textField($model,'email',array('size'=>60,'maxlength'=>100)); ?> + error($model,'email'); ?> +
+ +
+ labelEx($model,'kontaktdaten'); ?> + widget('application.extensions.tinymce.ETinyMce', + array( + 'name'=>'kontaktdaten', + "value"=>$model->kontaktdaten, + 'useSwitch' => false, + 'editorTemplate'=>'simple', + "language"=>"de", + "height"=>"150px", + ) + ); + ?> + textArea($model,'kontaktdaten',array('rows'=>6, 'cols'=>50)); */?> + error($model,'kontaktdaten'); ?> +
+ +
+ labelEx($model,'beschreibung'); ?> + widget('application.extensions.tinymce.ETinyMce', + array( + 'name'=>'beschreibung', + "value"=>$model->beschreibung, + 'useSwitch' => false, + 'editorTemplate'=>'simple', + "language"=>"de", + "height"=>"200px", + ) + ); + ?> + textArea($model,'beschreibung',array('rows'=>6, 'cols'=>50)); */?> + error($model,'beschreibung'); ?> +
+ +
+ labelEx($model,'standort'); ?> + user->isAdmin) { + echo $form->dropDownList($model, "standort_id", CHtml::listData($standorte, "id", "name"), array('empty' => '-- Bitte Standort wählen --')); + } else { + echo CHtml::encode($model->standort->name); + } + ?> + error($model,'standort_id'); ?> +
+ +
+ labelEx($model,'published'); ?> + user->isAdmin) { + echo $form->checkbox($model,'published'); + } else { + echo CHtml::image($model->published ? "images/ok.png" : "images/nok.png", $model->published ? "ok.png" : "nok.png"); + } + ?> + error($model,'published'); ?> +
+ +
+ +
+ +endWidget(); ?> + +
\ No newline at end of file diff --git a/protected/views/verein/_search.php b/protected/views/verein/_search.php new file mode 100644 index 0000000..d06dd24 --- /dev/null +++ b/protected/views/verein/_search.php @@ -0,0 +1,64 @@ +
+ +beginWidget('CActiveForm', array( + 'action'=>Yii::app()->createUrl($this->route), + 'method'=>'get', +)); ?> + +
+ label($model,'id'); ?> + textField($model,'id'); ?> +
+ +
+ label($model,'name'); ?> + textField($model,'name',array('size'=>60,'maxlength'=>255)); ?> +
+ +
+ label($model,'url'); ?> + textField($model,'url',array('size'=>60,'maxlength'=>255)); ?> +
+ +
+ label($model,'bild'); ?> + textField($model,'bild',array('size'=>60,'maxlength'=>100)); ?> +
+ +
+ label($model,'email'); ?> + textField($model,'email',array('size'=>60,'maxlength'=>100)); ?> +
+ +
+ label($model,'slug'); ?> + textField($model,'slug',array('size'=>60,'maxlength'=>100)); ?> +
+ +
+ label($model,'kontaktdaten'); ?> + textArea($model,'kontaktdaten',array('rows'=>6, 'cols'=>50)); ?> +
+ +
+ label($model,'beschreibung'); ?> + textArea($model,'beschreibung',array('rows'=>6, 'cols'=>50)); ?> +
+ +
+ label($model,'standort_id'); ?> + textField($model,'standort_id'); ?> +
+ +
+ label($model,'published'); ?> + textField($model,'published'); ?> +
+ +
+ +
+ +endWidget(); ?> + +
\ No newline at end of file diff --git a/protected/views/verein/_short.php b/protected/views/verein/_short.php new file mode 100644 index 0000000..e31ed34 --- /dev/null +++ b/protected/views/verein/_short.php @@ -0,0 +1,11 @@ +
name,array("verein/view","id"=>$data->id)); ?>
+beschreibung))>300) { + $tmp = str_split(strip_tags($data->beschreibung),297); + $myBeschreibung = $tmp[0]."..."; +} else { + $myBeschreibung = strip_tags($data->beschreibung); +}?> +

$data->id)); ?>

+ +".$data->name."

".$myBeschreibung."

" ,array("verein/view","id"=>$data->id)); ?> \ No newline at end of file diff --git a/protected/views/verein/create.php b/protected/views/verein/create.php new file mode 100644 index 0000000..46f088e --- /dev/null +++ b/protected/views/verein/create.php @@ -0,0 +1,14 @@ +breadcrumbs=array( + 'Vereine'=>array('index'), + 'Verein erstellen', +); + +$this->menu=array( + array('label'=>'Vereine verwalten', 'url'=>array('index')) +); +?> + +

Verein erstellen

+ +renderPartial('_form', array('model'=>$model, 'standorte'=>$standorte,'slugs'=>$slugs)); ?> \ No newline at end of file diff --git a/protected/views/verein/index.php b/protected/views/verein/index.php new file mode 100644 index 0000000..cfdd6e0 --- /dev/null +++ b/protected/views/verein/index.php @@ -0,0 +1,19 @@ +breadcrumbs=array( + 'Vereine', +); + +$this->menu=array( + array('label'=>'Verein erstellen', 'url'=>array('create'),'visible'=>!Yii::app()->user->isGuest), +); +?> + +

Vereine

+widget('zii.widgets.CListView', array( + 'dataProvider'=>$model->search(), + 'itemView'=>'_short', // refers to the partial view named '_post' + 'sortableAttributes'=>array( + 'name', + /*'create_time'=>'Post Time',*/ + ), + ));?> diff --git a/protected/views/verein/update.php b/protected/views/verein/update.php new file mode 100644 index 0000000..5230605 --- /dev/null +++ b/protected/views/verein/update.php @@ -0,0 +1,16 @@ +breadcrumbs=array( + 'Vereine'=>array('index'), + '"'.$model->name.'" bearbeiten', +); + +$this->menu=array( + array('label'=>'Vereine verwalten', 'url'=>array('admin')), + array('label'=>'Verein erstellen', 'url'=>array('create')), + array('label'=>'Verein anzeigen', 'url'=>array('view', 'id'=>$model->id)) +); +?> + +

Verein 'name; ?>' bearbeiten

+ +renderPartial('_form', array('model'=>$model, 'standorte'=>$standorte,'slugs'=>$slugs)); ?> \ No newline at end of file diff --git a/protected/views/verein/view.php b/protected/views/verein/view.php new file mode 100644 index 0000000..6efb9e7 --- /dev/null +++ b/protected/views/verein/view.php @@ -0,0 +1,30 @@ +breadcrumbs=array( + 'Vereine'=>array('index'), + $model->name, +); + +$this->menu=array( + array('label'=>'Vereine verwalten', 'url'=>array('index')), + array('label'=>'Verein erstellen', 'url'=>array('create')), + array('label'=>'Verein bearbeiten', 'url'=>array('update', 'id'=>$model->id)), + array('label'=>'Verein löschen', 'url'=>'#', 'linkOptions'=>array('submit'=>array('delete','id'=>$model->id),'confirm'=>'Are you sure you want to delete this item?')), +); +?> + +

name; ?>

+ +widget('zii.widgets.CDetailView', array( + 'data'=>$model, + 'attributes'=>array( + 'slug', + /*'name',*/ + array('label'=>'Bild', 'value'=>CHtml::image($model->bild), 'type'=>'raw'), + array('label'=>'Homepage', 'value'=>CHtml::link($model->url, $model->url, array("target"=>"_blank")), 'type'=>'raw'), + 'email', + 'kontaktdaten:html', + 'beschreibung:html', + array('label'=>'Standort', 'value'=>($model->standort) ? $model->standort->name : "-"), + array('label'=>'Öffentlich', 'value'=>CHtml::image($model->published ? "images/ok.png" : "images/nok.png", $model->published ? "ok.png" : "nok.png"), 'type'=>'raw'), + ), +)); ?> diff --git a/themes/astaf/views/layouts/column1.php b/themes/astaf/views/layouts/column1.php new file mode 100644 index 0000000..00f4009 --- /dev/null +++ b/themes/astaf/views/layouts/column1.php @@ -0,0 +1,3 @@ +beginContent('//layouts/main'); ?> + +endContent(); ?> \ No newline at end of file diff --git a/themes/astaf/views/layouts/column2.php b/themes/astaf/views/layouts/column2.php new file mode 100644 index 0000000..4139e9f --- /dev/null +++ b/themes/astaf/views/layouts/column2.php @@ -0,0 +1,5 @@ +beginContent('//layouts/main'); ?> + + + +endContent(); ?> \ No newline at end of file diff --git a/themes/astaf/views/layouts/main.php b/themes/astaf/views/layouts/main.php index 4152c44..3707925 100644 --- a/themes/astaf/views/layouts/main.php +++ b/themes/astaf/views/layouts/main.php @@ -26,7 +26,7 @@ -
+

name);?>

@@ -42,13 +42,16 @@ $this->widget('zii.widgets.CMenu',array( 'items'=>array_merge(array( array('activeCssClass' => 'active'), - array('label'=>'Home', 'url'=>array('/site/index')), - array('label'=>'About', 'url'=>array('/cmsPage/view', 'id'=>'1')), - array('label'=>'Contact', 'url'=>array('/site/contact')), + //array('label'=>'Home', 'url'=>array('/site/index')), + array('label'=>'Home', 'url'=>array('/cms/sitecontent/view', 'page'=>'home')), + ), + Cms::getMenuPoints(1), + array( + //array('label'=>'About', 'url'=>array('/cmsPage/view', 'id'=>'1')), + //array('label'=>'Contact', 'url'=>array('/site/contact')), array('label'=>'Login', 'url'=>array('/site/login'), 'visible'=>Yii::app()->user->isGuest), array('label'=>'Logout ('.Yii::app()->user->name.')', 'url'=>array('/site/logout'), 'visible'=>!Yii::app()->user->isGuest), - ), - Cms::getMenuPoints(1) + ) ) )); ?> @@ -101,7 +104,7 @@
- + + +
-- cgit v1.0-28-g1787