I'm trying to update my blogdown site to have an 'r' rss feed and show the entire posts. The index.xml file does get updated correctly but it does not show in the deployed version on netlify.
The xml updates and can be seen in github here but won't show up at the rss feed site here
Since I updated code I expected the website's rss feed to change accordingly but it does not. What am I doing wrong?
Related
We have some medium website (> pages) and would like to prerender the entire site. Upon content changes in some external system, we would like to update only the specific page which contains the updated content and deploy the updated version of the page as static html page to some publishing service (webserver, CDN, Netlify, etc.).
I have seen that SvelteKit supports this SSG rendering approach through the adapter-static but as far as I've seen it always builds all the pages/routes for every build. This is currently a blocker because if an editor updates some content it takes more than 15 minutes (rough estimate if you have around 1500 pages) to see this update online.
Is there already some possibility to simply build some specific page or route?
Looks like that this is still an open feature request and to be discussed there: https://github.com/sveltejs/kit/issues/2369
I want to update/change my existing published static web page on Github. I work on Reactjs.
How do I do this?
I already pushed the code on Github. but when I open the published link it shows the old version of it.
Github pages might take around 10 minutes to be updated.If you have edited the exact page file, then it should be updated within the time. And it might take lesser time.And after all you can track your Github Pages building, and when are ticked, it means they are ready at the their location, weather "abc.github.io/index.html" or "abc.github.io/index" or both.
Note:Try adding a ".html" extension in the address bar, if you do not see any changes, and vice-versa. But after a while, both the pages will be ready.
I am editing this Gatsby starter to make a personal website: https://www.gatsbyjs.org/starters/rolwin100/rolwinreevan_gatsby_blog/
Note that the problem I'm having with my site also happens when I develop the starter (with no changes made).
My desired outcome is pretty simple, I just want to be able to click on a blog post at site-name.com/blog/post-name that works. So, I set the path in my markdown files to be blog/post-name, replicating the starter exactly. However, when I run gatsby develop and click on the posts, the weirdest thing happens, For ex, from running the starter I get: There's not a page yet at /blog/blog/code-splitting-in-react (pictured fully below). But the page /blog/code-splitting-in-react does exist and when you adjust the url to that it brings up the page perfectly.
So the question is-- where is that extra 'blog' coming from in the path and how do I get rid of it??
error messages when I click on a blog post
You said that you are setting the url to blog/post-name. That is a relative path. It is going to start from whatever url you currently are. For example if you are in http://example.com/bla/foo you'll end in http://example.com/bla/foo/blog/post-name. You need to add a slash at the beginning: /blog/post-name.
I'm using the blog app and I created a new Pipeline to give me all posts so that I could create a view that would show the archive of posts. I have it working as expected.
On my DNN page, i put another App module on the page and set the view to show the archives list and it works well on the main list view of the Blog App. When I click on a year, say 2016 to see all the posts for that year, the list view shows the correct list of posts based on the PublicationMoment attribute. The problem I'm running into is that It also changes the View on the App module that I had set to show the archives and I think it's because the Blog App as a whole is setup to change the views based on the query string parameters and both of the Blog Apps are changed to show the list of posts. Is there anyway to prevent this from happening?
I was able to figure out a solution. I created another app and set that app to pull the data from the main blog app so that the view that was displaying the Archive lost was independent of the main blog app and subsequently the view for that app didn't change with the query string parameters.
Not sure if I am correct or not but i found that my site nerdeky.com which is using a view to show latest nodes on front page is crashing because of the views process of loading all nodes at once.
I have a content type called "Nerdeky Info" which contains more than 500 posts. To show latest 12 posts on frontpage i created a view and applied pager for rest of the posts. It was working good untill i had 100 or 200 posts but now it is slow in loading and sometimes crashes. I have New Relic integrated with my server and i can see that whenever site crashes it reports that the view took most of the time to process php and database.
After some searching on forum i found that my view is currently loading all posts at once and showing nerdeky latest posts afterwards.
Please suggest how to make it light so that only latest posts load first.
Thanks
Bharat sharma