Need help... website/database loads really slow. Hosted on GoDaddy

Discussion in 'Programming' started by gatoradeparade, Mar 29, 2011.

  1. #1
    Everyone.

    I have a simple website and database that loads extremely slowly. It is hosted on GoDaddy. If anyone has a minute, could you PM me and try and help identify the problem? I can pay Paypal for your troubles.

    Thank you very much!
     
    gatoradeparade, Mar 29, 2011 IP
  2. finna

    finna Peon

    Messages:
    12
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #2
    you have 2 issues to look for..

    1. Too many queries made just to load a page.
    2. Your scripts generate errors that you don't see. If it's PHP, put this at the top of your page/script:
    
    ini_set('display_errors','on');
    error_reporting(E_ALL ^ E_NOTIFY);
    
    PHP:
    You can check your server's logs for the errors.
     
    finna, Mar 29, 2011 IP