Guys, I don't know whether you have techs looking into this.
The problem is that the forum/site obviously doesn't return the correct HTML reader for refreshing content.
I am looking at threads where posts are posted but I don't see them. Only by pressing refresh in the browser I see the new posts! This is something in your code, you can specify
In your forum code headers you need
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="-1" />
<meta http-equiv="Cache-Control" content="no-cache" />
Otherwise browsers cache the pages and we don't see new content. Obviously, a forum should never cache pages.
The problem is that the forum/site obviously doesn't return the correct HTML reader for refreshing content.
I am looking at threads where posts are posted but I don't see them. Only by pressing refresh in the browser I see the new posts! This is something in your code, you can specify
In your forum code headers you need
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="-1" />
<meta http-equiv="Cache-Control" content="no-cache" />
Otherwise browsers cache the pages and we don't see new content. Obviously, a forum should never cache pages.