@{ /* RSS FEED */ } @using System.Linq @using System.Xml.Linq @using umbraco.MacroEngines @using uBlogsy.Common.Extensions @using uBlogsy.Common.Helpers @using uBlogsy.BusinessLogic @{ // get all posts // get tag, category, or author from query string var tag = Request.QueryString["tag"]; var category = Request.QueryString["category"]; var author = Request.QueryString["author"]; var searchTerm = Request.QueryString["search"]; var commenter = Request.QueryString["commenter"];
uBlogsyRSS : category rss
hello..
Using ublogsy we can create Rss feed for category with following url
http://test.mydomain.org.gall.arvixe.com/blog/rss?category=Website+Updates
This works fine. but when we click on post title in feed, it doesnot show page. Actually link url become as follows and so not showing page.
http://test.mydomain.org.gall.arvixe.com/blog/rss/blog/2012/march/e-cards-on-website/ .
It should be http://test.mydomain.org.gall.arvixe.com/blog/2012/march/e-cards-on-website/ ;
here is uBlogsyRSS.cstml ...
So, what is wrong in this?
Strange
I cant replicate this. Try deleting your /app_data/umbraco.config then republish.
Although I did notice a related issue...
replace
With
var qs = Request.QueryString.ToString().Replace("+", "%20");
hello...
everything was proper.. it was just that I was using rss instead of rss/ in url
is working on a reply...