that is a good find... and something i'll be looking at as soon as i get some white space... the little new icon is of my own design and not part of the engine at the time i installed the engine... new versions of this engine use it... which gives me a good place to look to seed how they did it as opposed to how i did it. i have a feeling it it tied into sessions a little clumsy... or maybe something i did where it only checks it once- i was very conscious of resources when i launched this place, but have figured out how to use dynamic caches since to lessen the weight on processor use and by leveraging RAM...
when i learned how to do that- something new and shiny- i did what everyone (so i tell myself) does when they learn a new trick... i used it everywhere i could... but... truth is it doesn't need to be used everywhere- it only needs to be used where it really does the majority of it's work- which is holding scripts in suspension and re-using them instead of running them fresh every time they're called... my guess is the sessions is jumping ahead of itself and running the same script that was already ran instead of running it fresh- and for YOU- as it should in that condition/case.