Slow site
Permalinkthe site is
http://www.measurit.co.uk/
can anyone help?
Site5.com never had a problem with them before. They seem to think everything is fine. Thing is i was asked to look at another site that was doing this by someone else. It was doing the exact same thing.
Rony
Rony
<html lang="en" class=" js flexbox canvas canvastext webgl no-touch geolocation postmessage websqldatabase indexeddb hashchange history draganddrop websockets rgba hsla multiplebgs backgroundsize borderimage borderradius boxshadow textshadow opacity cssanimations csscolumns cssgradients cssreflections csstransforms csstransforms3d csstransitions fontface generatedcontent video audio localstorage sessionstorage webworkers applicationcache svg inlinesvg smil svgclippaths"><head>
why is there a class on the HTML tag?
http://modernizr.com/ is part of html5 boilerplate. Maybe your theme was built using that framework?
It appears like your sites are hitting the internal limitations on a shared environment for multiple running processes at one time and exceeding the 70 seconds of return data:
[Thu Jun 20 12:26:41 2013] [warn] [client 5.14.38.214] mod_fcgid: can't apply process slot for /usr/local/cpanel/cgi-sys/php53
[Thu Jun 20 12:26:42 2013] [warn] [client 5.14.38.214] mod_fcgid: read data timeout in 70 seconds, referer:http://www.measurit.co.uk/
[Thu Jun 20 12:26:42 2013] [error] [client 5.14.38.214] Premature end of script headers: index.php, referer:http://www.measurit.co.uk/
This can usually happen with poorly programmed scripts/plugins or even themes. When scripts are using recursive calls, this opens multiple processes and hits this limit easily. This is usually done using something like file_get_contents() which actually opens another separate connection from the web server to itself to call the script.
I would strongly advise you review your scripts carefully and disable any unnecessary plugins. It would be best to start from scratch, disable everything and revert to default theme, then enable one by one.
Rony