This is my first topic, and I'm fairly new to Umbraco.
I have developed a site which has a strange error.
After 24 hours some of the content on the site disappears. It still exists in Umbraco Back Office and if I republish the site it reappears. But 24 hours later it's gone again.
And if I add any new content, it disappears again after 24 hours. Still not in Back Office - only Front End.
Have anyone encountered something similar? Please advice.
@Martin, this sounds like caching issues and/or load balancing. You should be able to pull up the non-cached version of your page if you append a URL parameter such as:
?test=1
You to view the non-cached page you would then increment it such as:
?test=2
?test-3
Every time you publish.
You could also plug into the ContentService.Published event and make sure that the cache is invalidated.
Front End content disappearing Umbraco 7.2.8
Hi guys!
This is my first topic, and I'm fairly new to Umbraco.
I have developed a site which has a strange error.
After 24 hours some of the content on the site disappears. It still exists in Umbraco Back Office and if I republish the site it reappears. But 24 hours later it's gone again.
And if I add any new content, it disappears again after 24 hours. Still not in Back Office - only Front End.
Have anyone encountered something similar? Please advice.
I'm using Umbraco 7.2.8 with sql server 2008.
Anyone?
@Martin, this sounds like caching issues and/or load balancing. You should be able to pull up the non-cached version of your page if you append a URL parameter such as:
You to view the non-cached page you would then increment it such as:
Every time you publish.
You could also plug into the ContentService.Published event and make sure that the cache is invalidated.
is working on a reply...