Large occasional delays with index.php file routing

Permalink
I'm seeing some huge delays on certain files being routed through index.php. I ran apache server-status and it's apparent that httpd is hanging on sending back some files such as reset.css and other seemingly innocuous files.

Any thoughts of how / where that could be happening?

Additionally I do have xdebug running on the server in case anyone would have a suggestion for a break point here as I'm running into a blank as to where to start hunting for this issue.

ylluminate
 
jordanlev replied on at Permalink Reply
jordanlev
If this is happening specifically to CSS files, it's possibly because you're using $this->getStyleSheet('reset.css') calls in your theme headers, which runs through some C5 processing to support stylesheet customizations via the dashboard. If you don't have or need these customizations, then you should use $this->getThemePath().'/reset.css' to reference the stylesheets in your header instead.

Otherwise you might have some luck with one of the minifier addons that are floating around the forums (MISER and Tinifier I think they're called).
ylluminate replied on at Permalink Reply
ylluminate
Thanks Jordan. Unfortunately that's not the solution. Indeed there are other things that have exceptionally long load times likewise. For example, index.php is taking some clients forever (20-30 seconds) to load, while it flies for others. On Mac OS X I have seen no problems whatsoever on Firefox, Safari nor Chrome. Yet on Windows XP I've seen all of the same clients exhibit the same failing behavior.

Further, these clients are all on the same network and subnet as the server itself. It is as though there is no explanation at all for this. IRC is silent. No one seems to be able to chime in on any advice. Nothing is pointing towards the server itself having any issues at all as other php web apps are running without any issue whatsoever at the moment.