CException

https://binothaimeen.net/content/feed/6626 does not seem to be a valid URL

/home/cvb255/apps/binoth/protected/views/content/feeds.php(17)

05 
06 // specify feed type
07 $feed = new EFeed(EFeed::RSS1);
08 $feed->title = 'Testing the RSS 1 EFeed class';
09 $feed->link = 'http://www.ramirezcobos.com';
10 $feed->description = 'This is test of creating a RSS 1.0 feed by Universal Feed Writer';
11 $feed->RSS1ChannelAbout = 'http://www.ramirezcobos.com/about';
12 // create our item  
13 if ($data) {
14     foreach ($data as $k => $v) {
15         $item = $feed->createNewItem();
16         $item->title = $v->title;
17         $item->link = Yii::app()->getBaseUrl(TRUE) . '/content/feed/' . $v->nid;
18         $date = date('d/m/Y', $v->create_date);
19         $item->date = $date;
20         $item->description = $op->utf_substrword($v->body, 400);
21         $item->addTag('dc:subject', 'Subject Testing');
22 
23         $feed->addItem($item);
24     }
25 }
26 
27 
28 $feed->generateFeed();
29 exit;

Stack Trace

#1
+
 /home/cvb255/apps/binoth/protected/views/content/feeds.php(17): CComponent->__set("link", "https://binothaimeen.net/content/feed/6626")
12 // create our item  
13 if ($data) {
14     foreach ($data as $k => $v) {
15         $item = $feed->createNewItem();
16         $item->title = $v->title;
17         $item->link = Yii::app()->getBaseUrl(TRUE) . '/content/feed/' . $v->nid;
18         $date = date('d/m/Y', $v->create_date);
19         $item->date = $date;
20         $item->description = $op->utf_substrword($v->body, 400);
21         $item->addTag('dc:subject', 'Subject Testing');
22 
#6
+
 /home/cvb255/apps/binoth/protected/controllers/ContentController.php(1597): CController->render("feeds", array("data" => array(content, content, content)))
1592     public function actionFeeds($id) {
1593 
1594         $nids = Term::model()->get_nid_by_term(null, $id);
1595         $conection = 'nid In(' . implode(',', $nids) . ') and status=1';
1596         $data = content::model()->findAll($conection);
1597         $this->render('feeds', array('data' => $data));
1598     }
1599 
1600     public function actionRepirBook() {
1601         $files = Files::model()->findAll();
1602         $i = 0;
#21
+
 /home/cvb255/apps/binoth/index.php(20): CApplication->run()
15 defined('YII_DEBUG') or define('YII_DEBUG',false);
16 // specify how many levels of call stack should be shown in each log message
17 defined('YII_TRACE_LEVEL') or define('YII_TRACE_LEVEL',3);
18 
19 require_once($yii);
20 Yii::createWebApplication($config)->run();
21 
22 
23 //Yii::app()->assetManager->forceCopy = true; //to force relode assets files 
24 
2024-03-28 15:47:42 nginx/1.18.0 Yii Framework/1.1.12