I created a custom traffic logger for OpenCart, and I noticed that I get a lot url requests like
http://store.com/categoryXXX/[b]catalog ... ault/image...[/b]
http://store.com/productXXX/[b]catalog/ ... pt/jquery/...[/b]
Of course, those are invalid URLs, and that's why they were logged.
Furhter investigation showed that some browsers (I cannot tell exactly which) don't recognize the base tag, and treat relative URLs like 'catalog/view/javascript/jquery/...' relative to the current page istead of relative to the base tag and produce such invalid requests.
This resolves in calling the index.php for every invalid file, which generates a lot of server load, as it executes all SQLs, etc.
I've already solved the problem on my store http://bglotos.com/, so I'm not asking for support, just wanted to mention this for the sake of improving OC
