Can all registered uses please login, even just for a few minutes..
It helps build a picture where our "good traffic" is coming from..
Thanks :)
It helps build a picture where our "good traffic" is coming from..
Thanks :)
Is anyone else get a line of text randomly when trying to access the forum ?
Re: Is anyone else get a line of text randomly when trying to access the forum ?
I've been seeing it quite regularly over the last few weeks but since a refresh in the browser sorted it, didn't bother worrying about it.
I'll let you know if I see it again from now on....
I'll let you know if I see it again from now on....
Re: Is anyone else get a line of text randomly when trying to access the forum ?
The phrase was only found in the nginx cache (other than logs and the SQL database) So let me know if anyone sees it again...
It also begs the question why Nginx has a outdated cache, and why its even using it in the first place!
It also begs the question why Nginx has a outdated cache, and why its even using it in the first place!
- mrbombermillzy
- Moderator

- Posts: 2365
- Joined: Sun Jun 03, 2018 7:37 pm
Re: Is anyone else get a line of text randomly when trying to access the forum ?
Yes. Its been happening to me for the last 2 days or so.
Last time I saw it was earlier today after the page 'times out'.(?)
I just refresh the page and can return to the sites landing page, so its not been a big problem for me.
Last time I saw it was earlier today after the page 'times out'.(?)
I just refresh the page and can return to the sites landing page, so its not been a big problem for me.
-
elterwater
- Posts: 55
- Joined: Fri Jan 14, 2022 2:43 pm
Re: Is anyone else get a line of text randomly when trying to access the forum ?
Yeah I just assumed you were buggering about with something again 
- mrbombermillzy
- Moderator

- Posts: 2365
- Joined: Sun Jun 03, 2018 7:37 pm
Re: Is anyone else get a line of text randomly when trying to access the forum ?
Its now stopped happening, so all good I guess? 
- viking272
- Site sponsor

- Posts: 293
- Joined: Mon Aug 10, 2020 11:32 am
- Location: Reading, Berkshire, UK
Re: Is anyone else get a line of text randomly when trying to access the forum ?
Had you customised some of the status pages or error handling on say 503 errors? Eg
usr/local/nginx/html/error503.html
Edit: or any resource limits set? Like max_conns
usr/local/nginx/html/error503.html
Edit: or any resource limits set? Like max_conns
Re: Is anyone else get a line of text randomly when trying to access the forum ?
I would give it a fe days as it random happens to me..
Re: Is anyone else get a line of text randomly when trying to access the forum ?
404 is custom...viking272 wrote: Fri Jun 13, 2025 7:47 am Had you customised some of the status pages or error handling on say 503 errors? Eg
usr/local/nginx/html/error503.html
Edit: or any resource limits set? Like max_conns
There's likely limits but they are generally "high". Possible nginx could serve a cached page, but it shouldn't have stored outdated pages for weeks in the firstplace.. Maybe it's some bug...
Re: Is anyone else get a line of text randomly when trying to access the forum ?
https://docs.nginx.com/nginx/admin-guid ... t-caching/.NGINX makes it possible to remove outdated cached files from the cache. This is necessary for removing outdated cached content to prevent serving old and new versions of web pages at the same time
So you have to do this manually?!
- viking272
- Site sponsor

- Posts: 293
- Joined: Mon Aug 10, 2020 11:32 am
- Location: Reading, Berkshire, UK
Re: Is anyone else get a line of text randomly when trying to access the forum ?
Maybe use grep for the word broken?exxos wrote: Fri Jun 13, 2025 9:01 am404 is custom...viking272 wrote: Fri Jun 13, 2025 7:47 am Had you customised some of the status pages or error handling on say 503 errors? Eg
usr/local/nginx/html/error503.html
Edit: or any resource limits set? Like max_conns
There's likely limits but they are generally "high". Possible nginx could serve a cached page, but it shouldn't have stored outdated pages for weeks in the firstplace.. Maybe it's some bug...
grep -Hrn 'broken' /
This searches from top level for the word broken and recurses directories, printing the path of files and lines the word or phrase is found
