What does this mean?

Discussion in 'HTML & Website Design' started by sunny1980, Jun 14, 2008.

  1. #1
    Hello, I was wondering if you can help me.

    I have some errors on my website and I was wondering if you can fix them ASAP at a resonable price.

    At the bottom of my website it says on every page that there is a error. e.g. Done, but with errors on page.

    What does this mean?

    website: www.ocdtodayuk.org

    thanks
     
    sunny1980, Jun 14, 2008 IP
  2. blktallos

    blktallos Active Member

    Messages:
    314
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    60
    #2
    It seems to me you have a preloading error of sometype. I would be willing to help you Out If you could please Pm me.
     
    blktallos, Jun 14, 2008 IP
  3. itcn

    itcn Well-Known Member

    Messages:
    795
    Likes Received:
    31
    Best Answers:
    0
    Trophy Points:
    118
    #3
    You've got at least one problem with the javascript and google code you have on that page:

    <script type="text/javascript">
    var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
    document.write("\
    <script src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'>
    \<\/script>" );</script>
    <script type="text/javascript">
    var pageTracker = _gat._getTracker("UA-1321824-1");
    pageTracker._initData();
    pageTracker._trackPageview();</script>

    It's throwing an error because of the newline you start on line 4. Cut and paste the latest code again exactly from Google analytics and you can remove at least that error. It should look more like this:

    <script type="text/javascript">
    var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
    document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
    </script>
    <script type="text/javascript">
    var pageTracker = _gat._getTracker("UA-1321824-1");
    pageTracker._initData();
    pageTracker._trackPageview();
    </script>
     
    itcn, Jun 14, 2008 IP
  4. samirkumardas

    samirkumardas Banned

    Messages:
    123
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #4
    Problem in google code
     
    samirkumardas, Jun 14, 2008 IP
  5. jBud

    jBud Peon

    Messages:
    387
    Likes Received:
    8
    Best Answers:
    0
    Trophy Points:
    0
    #5
    the other one, (other than google code) is the iepngfix.htc it's being denied access if you're using IE mostlikely it's because of an incorrect include path...
    anyways check your PM ;)
     
    jBud, Jun 14, 2008 IP
  6. collegec

    collegec Peon

    Messages:
    75
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #6
    google code looks wrong.
     
    collegec, Jun 14, 2008 IP