CException

https://surewindows.com/blog/replacement-windows-albany-how-to-choose does not seem to be a valid URL

/var/www/vhosts/surewindows.com/httpdocs/protected/modules/blog/controllers/DefaultController.php(105)

093 
094         $feed->addChannelTag('language', 'en-us');
095         $feed->addChannelTag('pubDate', date(DATE_RSS, time()));
096         $feed->addChannelTag('link', $domain . '/feed');
097         // * self reference
098         //$feed->addChannelTag('atom:link', $domain . '/feed/');
099 
100         $models = BlogArticle::model()->findAll(array('condition' => 'published=1', 'order' => 'published_date DESC'));
101         foreach ($models as $model) {
102             $item = $feed->createNewItem();
103 
104             $item->title = $model->title;
105             $item->link = Yii::app()->createAbsoluteUrl('/blog/default/view', array('url' => $model->url));
106             $item->date = strtotime($model->published_date);
107 
108             $description = '';
109             if ($blogConfig->fullPost) {
110                 $description = $model->text;
111             } else {
112                 $description = LigStringHelper::limitWords(strip_tags($model->text), 100, '');
113             }
114             
115             $link = '<br>';
116             if(!$model->is_link_hidden) {
117                 if($model->text_near_link) {

Stack Trace

#1
+
 /var/www/vhosts/surewindows.com/httpdocs/protected/modules/blog/controllers/DefaultController.php(105): CComponent->__set()
100         $models = BlogArticle::model()->findAll(array('condition' => 'published=1', 'order' => 'published_date DESC'));
101         foreach ($models as $model) {
102             $item = $feed->createNewItem();
103 
104             $item->title = $model->title;
105             $item->link = Yii::app()->createAbsoluteUrl('/blog/default/view', array('url' => $model->url));
106             $item->date = strtotime($model->published_date);
107 
108             $description = '';
109             if ($blogConfig->fullPost) {
110                 $description = $model->text;
#9
+
 /var/www/vhosts/surewindows.com/httpdocs/index.php(25): CApplication->run()
20 
21 
22 
23 require_once($yii);
24 
25 Yii::createWebApplication($config)->run();
26 
2024-03-28 19:11:14 Apache Yii Framework/1.1.15