Site loads, works for a few seconds, then freezes (crashes)

Permalink
Hi all,

I'm looking for some words of wisdom as a site I have recently developed loads, works for a few seconds, then freezes -http://www.diglandscapes.com

Interestingly, when the site goes down, so does cPanel. I have to wait for a couple of hours before I can get back on, but the whole process happens again. I've cleared the cache but still no joy.

Note that I've tried the site on another host and it works perfectly.

Any ideas? Help appreciated.

laweffect
 
aryeh replied on at Permalink Reply
its a server issue not concrete5.
if its not your servers and you are not a server admin, i recommend you move to another host.

if you go for the super cheap hosting packages that's kinda what you will get.
laweffect replied on at Permalink Reply
laweffect
Been in touch with the host

"I have found the problem in that your IP address is being blocked by our server as it detects going to your main webpage as an attack on the server because of some code running on that page. In order to resolve this issue I will be passing this issue onto our second line support who will be able to add an exception to the rule for your account to get it working."

So looks like a hosting issue (kinda). Hopefully it will be fixed by tomorrow.
Steevb replied on at Permalink Reply
Steevb
Also, you might want to look at your code.

You could use head html with:
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]-->
<!--[if IE 7]>    <html class="no-js lt-ie9 lt-ie8" lang="en"> <![endif]-->
<!--[if IE 8]>    <html class="no-js lt-ie9" lang="en"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
<head>


Not:
<!DOCTYPE html>
<html lang="en">
<!--[if lt IE 7]>      <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]>         <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]>         <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head>


You also have a closing div outside of your closing html.
laweffect replied on at Permalink Reply
laweffect
Thanks for spotting the code issues Steve. Will fix in the morning.