Forum search & shortcuts

The New Forum
 

[Sticky] The New Forum

Posts: 6
Free Member
 

👍….. 


 
Posted : 10/05/2026 11:08 pm
Posts: 6
Free Member
 

Just another post so I can message sellers in the classifieds 


 
Posted : 10/05/2026 11:13 pm
Posts: 6
Free Member
 

And another. Just another post so I can message sellers in the classifieds 


 
Posted : 10/05/2026 11:13 pm
Posts: 78879
Full Member
 

Posted by: Mark

type text <hit return>
add image <hit return>
type text

post

Regular ol' Paste works well enough.  Ctrl-V with an image in the clipboard.


 
Posted : 11/05/2026 1:32 am
Posts: 11671
Full Member
 

Is Stan only using this site for learning? If so, despite the amount of knowledge on this forum, there is also a huge amount of nonsense. How will Stan know what to ignore (or not use as fact)?

This is going to result in Stan being like Grok for Elon and it ends up regurgitating all the incorrect stuff and helping to feed the misinformation. A bit like Elon now getting fed all the absolute mince from X and then sharing it and giving it more validity in some way.


 
Posted : 11/05/2026 6:44 am
Posts: 5877
Full Member
 

Images.  If I click on an image, that I or someone else has placed within a post, it hyperlinks to a completely different image.


 
Posted : 11/05/2026 10:27 am
Posts: 78879
Full Member
 

Is there any intention to bring back the 'delete post' button?


 
Posted : 11/05/2026 11:23 am
Posts: 31474
Full Member
 

This talk to Stan thing... I get dark text on a dark backgound in the text input... looks like nothing is happening when you type in it.


 
Posted : 11/05/2026 12:19 pm
 P20
Posts: 4307
Full Member
 

The security check is becoming tedious. Shame when the forum seems to run well otherwise 


 
Posted : 11/05/2026 1:03 pm
 Mark
Posts: 4514
Topic starter
 

We have a ticket open with Kinsta suppory now about the Cloudflare issue


 
Posted : 11/05/2026 3:28 pm
Posts: 18710
Free Member
 

Today's expereince.

1/ open STW from browser and start navigating the forum but realise the most recent post is 08/05/2026

2/ clear cache and history on Firefox browser (which is irritating as it logs me out of every other site I'm using). Still 08/05/2026

3/ OK I'll try to log in. Eventually succeed after multiple hurdles having learned that you ignore the first red warning about the cache even if you've just cleared the cache and here I am. 

4/ If I want to see my own replies and any reactions to them I know I'm going to have to go through the same procedure again.

I must be really keen to know what Timba is posting on Ukraine. 🙂


 
Posted : 11/05/2026 4:51 pm
 Drac
Posts: 50697
 

Posted by: Edukator

2/ clear cache and history on Firefox browser (which is irritating as it logs me out of every other site I'm using). Still 08/05/2026

You can clear just the STW cookie. https://support.mozilla.org/en-US/kb/clear-cookies-and-site-data-firefox

Also, the database for Free Members is sometimes behind. Mark can give a more detailed description. 


 
Posted : 11/05/2026 5:09 pm
Posts: 18710
Free Member
 

Edit: found it, thaks for that, Drac


 
Posted : 11/05/2026 5:24 pm
Drac reacted
 Mark
Posts: 4514
Topic starter
 

That caching error at login should be fixed now.
The forum is cached for logged in users, regardless of paid or free. Both should get the latest updated pages. It's only when logged out that the page may be an old version.

 


 
Posted : 11/05/2026 6:01 pm
Drac reacted
Posts: 78879
Full Member
 

Isn't that the opposite of what you said before?  You said cached pages = older data, unless I'm hallucinating.  Which is wholly possible, I didn't get a great deal of sleep.

I'll be honest, I don't understand this configuration whichever way around it is.  Maybe that's on me, I'm not a webdev and obviously I have no visibility of anything.  But surely all requests should be going to the cache in the first instance for performance reasons?  A cache miss should then presumably have to make a direct database query which is slower.

Is there a TTL on cached data?  Is that why cached pages can be out of date, the cache doesn't know it's out of date until it has cause to go check?  (I'm thinking like DNS here...)


 
Posted : 12/05/2026 11:07 am
Posts: 78879
Full Member
 

💡 Oh hang on, is it a communal write cache we're talking about?  Logged-out users aren't seeing changes because they haven't been fully committed to the database yet?


 
Posted : 12/05/2026 11:09 am
 Mark
Posts: 4514
Topic starter
 

No. You are right. I meant the exact opposite of what I wrote 🙂

Logged in users DO NOT get cached pages. Only Logged out users get cached (old) pages. Free or Full members are treated the same though for the purposes of caching. We try to make sure that if you are logged in, no matter your sub level, you get the most up-to-date version of a page.


 
Posted : 12/05/2026 11:17 am
Drac and Cougar reacted
Posts: 78879
Full Member
 

Soooooooooooo "caching" in this context is for server load rather than (direct) user performance?

Ie, the Great Unwashed being served cached pages means it's faster for people with an account?


 
Posted : 12/05/2026 12:17 pm
 Mark
Posts: 4514
Topic starter
 

Yes, there's a performance benefit but that's not the principle reason. An uptodate cached page is literally an oxymoron. If it's cached at all, even for a really short period of a few seconds, the page is not uptodate. Where a user is posting a reply, you expect to see that reply appear in seconds. Any delay can result in the user hitting post/reply again and we get a double post. To engage with the forum in any way other than simply reading something you MUST get the very latest version of that page for the forum to operate well. So, for forums, the universal way is to not cache the page for logged in users. Logged out users vastly outnumber the logged in users on our site. If we offered logged out users the same uncached, bang up to date pages then we'd have some serious server performance issues. So... that's why our setup is uncached for logged in. Cached for logged out.

It IS possible to run a forum uncached for all users but the cost to having every page extracted from the database for everyone is a huge load on any server. With multiple servers or a server farm, say like Facebook or a big social media platform or Reddit, you can give all your visitors, logged in or not, the live page right out of the database. For the likes of us with our large forum but small budget, we make do with a single dedicated server, multiple cores and lots of RAM But with a powerful (Redis) object cache and we prioritise who gets the best experience based on their user levels. In the case of the forum that's logged in or not.

That said, WPForo (The software creators of our forum) have their own specific forum cache built in to the forum software. It's not caching the entire page including the actual content (which is kind of how normal page caching works), but what it does do is cache parts of the page that don't change, like the stylesheets and small images/icons etc. So it's a special kind of limited cache for forums.

For more try the following as a Google search 'How to cache a forum'.


 
Posted : 12/05/2026 12:51 pm
Posts: 78879
Full Member
 

Posted by: Mark

For more try the following as a Google search 'How to cache a forum'.

Subtle. 😁

I did look at this very superficially a little while ago.  Consensus seemed to be "enable WPforo's cache and disable everything else because it conflicts" but of course that's Bottom Half Of The Internet advice so who knows, and I'm not the one at STW's coal face.

I appreciate the explanation, though.  I find it all quite fascinating and I like learning things.


 
Posted : 12/05/2026 1:44 pm
Posts: 837
Free Member
 

@mark Can you not call the cloudflare (or whoever you're using) API to clear page caches as new posts are made? Old pages can then be served from the cache while logged out users still get up-to-date versions of the forum front page and newly changed posts?


 
Posted : 13/05/2026 8:23 am
 Mark
Posts: 4514
Topic starter
 

One of the problems is that the forum gets so many replies that if we were clearing/updating the logged out user cache on every update it would essentially be serving live database pages to every visitor. By caching for logged out users and setting the cache expiry to a fixed period we maintain the higher performsnce of the forum for logged in users. There’s possibly some fine tuning to the expiry time in the cache we can play with but it’s very much a case of improve it here and it affects performance there sort of thing. The important thing when we made the current cache changes was that we got the forum working effectively and rapidly for logged in users. We are constantly tweaking. 

To your point about cache clearing, we have two cache systems. The site wide Redis object cache and the built in WPForo forum cache. What we have learned (the hard way) is that trying to use the site cache to manage forums is problematic to say the least. This is why good forum software tries to deal with caching in a very specific way separately to the rest of the site or they conflict with each other and things break. 

 


 
Posted : 13/05/2026 8:49 am
kelvin reacted
Posts: 1124
Full Member
 

How frustrating. It’s my first visit in weeks. Im

a paid subscriber. I see this IMG_3796.png 


 
Posted : 14/05/2026 6:45 pm
 Drac
Posts: 50697
 

@mark will sort that out for you.  


 
Posted : 14/05/2026 6:50 pm
Posts: 14213
Full Member
 

@Mark

Snails pace this morning and loads of 502 errors.


 
Posted : 15/05/2026 9:59 am
 Mark
Posts: 4514
Topic starter
 

Yup. Sorting things with hosts Kinsta. 
hopefully not long to be fixed. 


 
Posted : 15/05/2026 11:44 am
 Mark
Posts: 4514
Topic starter
 

Heads up I'm about to go on holiday for 2 weeks. Heading to Whistler for Whismas (The transition from snow to bike in the park). It's a self funded holiday ie. it's NOT work. Been looking forward to this for a LOOOOng time - it's my 55th birthday treat since I was fully locked down for my 50th. Anyhoo. that's not as important as the fact my responses on here will be fewer until the end of the month. I'll be checking in and I'll be picking up emails. Any subscribers with issues you can still email me but I'd suggest you also CC'd subs@singletrackworld.com. Heather picks those up as well as I do. But bear in mind Heather is 3days/week.


 
Posted : 15/05/2026 12:27 pm
nickingsley, blokeuptheroad, toby and 6 people reacted
Posts: 1691
Free Member
 

If you want to keep subscribers, try not making it so hard to subscribe 


 
Posted : 16/05/2026 7:56 pm
Posts: 78879
Full Member
 

Posted by: jimmy748

If you want to keep subscribers, try not making it so hard to subscribe 

Did you notice the post directly above yours?  That tells you what you need to do.


 
Posted : 18/05/2026 11:16 am
Posts: 1095
Free Member
 

What's this crap all about......

"

Error establishing a Redis connection

To disable Redis, delete the object-cache.php file in the /wp-content/ directory."


 
Posted : 18/05/2026 3:19 pm
 Drac
Posts: 50697
 

Can you provide some context please?


 
Posted : 18/05/2026 3:41 pm
Posts: 1095
Free Member
 

Posted by: Drac

Can you provide some context please?

I clicked to enter then got that message and it just sat there and hung.  I tried again and it let me in. Had it happen a couple of times.

 

Edited to add:   I had clicked on Singletrack World Magazine Forum – Singletrack World Magazine

 


 
Posted : 18/05/2026 4:42 pm
 Drac
Posts: 50697
 

Cheers. I will pass it on the IT bods. 


 
Posted : 18/05/2026 4:51 pm
masterdabber reacted
Posts: 1095
Free Member
 

Thanks @Drac


 
Posted : 18/05/2026 4:56 pm
Posts: 1691
Free Member
 

Posted by: Cougar

Posted by: jimmy748

If you want to keep subscribers, try not making it so hard to subscribe 

Did you notice the post directly above yours?  That tells you what you need to do.

 

I wasn’t asking a question. But thanks for the condescension.

 


 
Posted : 18/05/2026 8:58 pm
Houns and notmyrealname reacted
Posts: 78879
Full Member
 

Sigh.


 
Posted : 18/05/2026 11:14 pm
Posts: 18311
Full Member
 

Just an observation but now, when you look at a thread, finish reading to the bottom, then press your back button, it goes back to where you were on Overview, and then back to the top of the page. 

The back button doesn't refresh the overview page as far as I know, and so you work your way down the forum topics, read one, read the next, you're maybe two thirds down the topics that interest you. Then you press back (in the absence of the very handy overview button that has been long since removed from the bottom of threads) and you hope to go back to where your were. This is literally what back means.

Instead you go back to where your were, then suddenly you get windowshaded back to the very top again, and then have to scroll down the page again every single time to find where you'd got up to before. 

Quite annoying. 

If you want to get a refreshed overview page now, you go to the bottom, tap the top of the page arrow, get whizzed back to the top, find the overview button that's now not called overview and you get taken back to a refreshed overview. 

If you don't want a refreshed overview, then the back button sending you back to the top of an unrefreshed page seems a bit pointless. To me anyway. 

Let back be back. Let overview be overview. 

😊👍

 


 
Posted : 19/05/2026 1:17 pm
Posts: 8004
Free Member
 

Open in new tab 


 
Posted : 19/05/2026 4:54 pm
roger_mellie and Cougar reacted
Posts: 16223
Free Member
 

I’m using STW less and less as invariably it’s the only website in the world that I try to use quite routinely just does not load on my iPhone and it appears to be more and more frequent 

 

Is it a cunning ploy to keep new people and non subscribers away?


 
Posted : 20/05/2026 8:08 pm
Houns, suspendedanimation, oceanskipper and 1 people reacted
Posts: 3511
Free Member
 

Slow and shit again. Occasionally I think of re subscribing as it starts to work OK for a few days and then it goes all shite again and I’m pleased I didn’t. 


 
Posted : 24/05/2026 7:16 pm
Houns and superstu reacted
Posts: 2324
Full Member
 

So the forum is ridiculously slow again, no idea why. 

Also, I’m not getting notifications on the site when I receive PMs. I seem to get email notifications spuriously, sometimes not at all and in the case of the last received PM I got the email notification 10h after the time of the PM along with another notification for an earlier PM some 18h previous. 


 
Posted : 26/05/2026 8:33 am
Posts: 11389
Free Member
 

How on Earth can this forum be getting even sh*ttererer?!


 
Posted : 26/05/2026 2:40 pm
oceanskipper reacted
Posts: 3511
Free Member
 

Missing posts now as well. I definitely posted in a thread and when I went back to it my post was gone. 


 
Posted : 26/05/2026 7:54 pm
Posts: 11797
Full Member
 

Forum has decent and stable but had a “redis” page appear when browsing, a refresh will sort it though 


 
Posted : 27/05/2026 6:39 pm
Posts: 16223
Free Member
 

5 minutes of browsing the forum this morning 😂

Just a sea of nothing . I know as a customer I’m supposed to fix it myself and then let STW know via email what I’ve done to fix it. 


 
Posted : 29/05/2026 7:10 am
Houns and oceanskipper reacted
Page 80 / 81