CException

https://dotart.info/ru/opps/order/5162 does not seem to be a valid URL

/var/www/dotart.info/data/www/dotart.info/protected/components/Rss.php(47)

35         $item->description = $art->meta_description;
36         $item->date = strtotime($art->create_time);
37         $item->addTag('author', $art->user->username);
38         //$item->addTag('guid', 'http://www.ramirezcobos.com/',array('isPermaLink'=>'true'));
39         $feed->addItem($item);
40         //$feed->RSS1ChannelAbout = 'http://www.ramirezcobos.com/about';
41 }    
42 
43 foreach($orders as $order){
44         $item = $feed->createNewItem();
45         
46         $item->title = $order->title;
47         $item->link = $host.'/'.Yii::app()->language.'/opps/order/'.$order->id;
48         $item->description = $order->description;
49         $item->date = strtotime($order->time_create);
50         $item->addTag('author', $order->user->username);
51         //$item->addTag('guid', 'http://www.ramirezcobos.com/',array('isPermaLink'=>'true'));
52         $feed->addItem($item);
53         //$feed->RSS1ChannelAbout = 'http://www.ramirezcobos.com/about';
54 }
55 
56 foreach($shows as $show){
57         $item = $feed->createNewItem();
58         
59         $item->title = $show->title;

Stack Trace

#1
+
 /var/www/dotart.info/data/www/dotart.info/protected/components/Rss.php(47): CComponent->__set("link", "https://dotart.info/ru/opps/order/5162")
42 
43 foreach($orders as $order){
44         $item = $feed->createNewItem();
45         
46         $item->title = $order->title;
47         $item->link = $host.'/'.Yii::app()->language.'/opps/order/'.$order->id;
48         $item->description = $order->description;
49         $item->date = strtotime($order->time_create);
50         $item->addTag('author', $order->user->username);
51         //$item->addTag('guid', 'http://www.ramirezcobos.com/',array('isPermaLink'=>'true'));
52         $feed->addItem($item);
#2
+
 /var/www/dotart.info/data/www/dotart.info/protected/controllers/SiteController.php(1399): Rss->get_rss()
1394     
1395     public function actionRss()
1396     {
1397         
1398         $rss = new Rss();
1399         $rss->get_rss();
1400         
1401     }
1402     
1403         
1404 }
#10
+
 /var/www/dotart.info/data/www/dotart.info/index.php(28): CApplication->run()
23 // change the following paths if necessary
24 $config=dirname(__FILE__).'/protected/config/main.php';
25 
26 // Register loader classes of Composer
27 require(__DIR__ . '/protected/extensions/quare/vendor/autoload.php');
28 $app = Yii::createWebApplication($config)->run();
29 ?>
2024-03-19 10:36:22 Apache/2.2.15 (CentOS) Yii Framework/1.1.15