can someone help me out on the error on my index page

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • DirtyDanza
    Confirmed User
    • Aug 2002
    • 8375

    #1

    can someone help me out on the error on my index page

    I can;t seem to figure it out and what it needs to be but I guess I have an error on the first page of http://www.dirtysdicksuckers.com and http://www.dirtysdicksuckers.com/jt/ I am guessing that some users won;t click past the go anyways when it ways it does not come correct
    Danza Bucks is back!!!
  • DirtyDanza
    Confirmed User
    • Aug 2002
    • 8375

    #2
    bump anybody?
    Danza Bucks is back!!!

    Comment

    • jennym
      Confirmed User
      • May 2003
      • 1622

      #3
      Hey Dirty,
      Did you get this fixed? It came up with an error the first time, but not the second time I looked.

      Comment

      • Dugan
        Confirmed User
        • Nov 2003
        • 856

        #4
        check your script open tag on line 27....
        your import seems to be calling from a local machine
        file:///C:/Documents%20and%20Settings/Chris/Application%20Data/Adobe/Adobe%20GoLive/Settings/JScripts/GlobalScripts/CSScriptLib.js
        unless thats where you actually want to call that script from.

        Comment

        • GapingWound
          Registered User
          • Oct 2002
          • 96

          #5
          actually, the following 2 lines:
          PHP Code:
          over_ent1 = newImage(/*URL*/'images/ent2.jpg');
          over_ext1 = newImage(/*URL*/'images/ext2.jpg'); 
          
          need to be changed to:
          PHP Code:
          over_ent1 = new Image('images/ent2.jpg');
          over_ext1 = new Image('images/ext2.jpg'); 
          
          notice the space between 'new' and 'Image' and also that the /*URL*/ has been removed.
          icq: 119 4580

          Comment

          • GapingWound
            Registered User
            • Oct 2002
            • 96

            #6
            ok, is it just me browser, or do the php tags appear REALLY REALLY small?!?
            icq: 119 4580

            Comment

            • Gemini
              Confirmed User
              • Jan 2001
              • 7183

              #7
              It's the board Gap. It's always done that for whatever reason. lol Just buy a magnifying glass like we all did.
              <center><a target="_blank" href="http://dev.datedollars.com/index.php?s=signup&amp;aid=535&amp;cfg=aac"><img border="0" src="http://216.130.172.224/gfy/gsig.gif" width="490" height="100"></a><br><a href="http://dev.datedollars.com/index.php?s=signup&amp;aid=535&amp;cfg=aac" target="_blank"><b><font face="Arial"><font color="#FF99FF"> Buy me away from Slavedriver Smokey!<br>It's May Sig Sweeps!<font></b></center>

              Comment

              • GapingWound
                Registered User
                • Oct 2002
                • 96

                #8
                it's fucking annoying, having to copy and paste code into a text editor just to read it, lol.
                icq: 119 4580

                Comment

                • DirtyDanza
                  Confirmed User
                  • Aug 2002
                  • 8375

                  #9
                  Originally posted by GapingWound
                  actually, the following 2 lines:
                  PHP Code:
                  over_ent1 = newImage(/*URL*/'images/ent2.jpg');
                  over_ext1 = newImage(/*URL*/'images/ext2.jpg'); 
                  
                  need to be changed to:
                  PHP Code:
                  over_ent1 = new Image('images/ent2.jpg');
                  over_ext1 = new Image('images/ext2.jpg'); 
                  
                  notice the space between 'new' and 'Image' and also that the /*URL*/ has been removed.
                  I tired that check it and it still did not work? what else could it be
                  Danza Bucks is back!!!

                  Comment

                  • GapingWound
                    Registered User
                    • Oct 2002
                    • 96

                    #10
                    Works fine from here. Perhaps you have it cached? Hold [SHIFT] and hit the reload button...

                    [edit] and you didn't change it on your second URL [/EDIT]
                    Last edited by GapingWound; 12-03-2003, 10:16 PM.
                    icq: 119 4580

                    Comment

                    • DirtyDanza
                      Confirmed User
                      • Aug 2002
                      • 8375

                      #11
                      I held shift and hit reload and still says error on page? for dirtysdicksuckers.com and I did not change it for the /jt tour yet till it works on the first one.. any other ideas?
                      Danza Bucks is back!!!

                      Comment

                      • GapingWound
                        Registered User
                        • Oct 2002
                        • 96

                        #12
                        What browser are you using?
                        icq: 119 4580

                        Comment

                        • DirtyDanza
                          Confirmed User
                          • Aug 2002
                          • 8375

                          #13
                          IE...
                          Danza Bucks is back!!!

                          Comment

                          • GapingWound
                            Registered User
                            • Oct 2002
                            • 96

                            #14
                            Is there any reason you are using the Adobe Golive js include? That is where the problem seems to be.
                            If you don't need it, try getting rid of the following lines:
                            PHP Code:
                                    <csscriptdict import>
                                        hahahahahahahaha type="text/hahahahahahahahahaha" src="http://dirtysdicksuckers.com/CSScriptLib.js"></hahahahahahahaha
                                    </csscriptdict>
                                    <csactiondict> 
                            
                            If you do need it, try replacing the following lines in CSScriptlib.js:
                            PHP Code:
                                var id1=s.hahahahahahaha(myID);
                                if (id1hahahaha-1) return ""; 
                            
                            with:

                            PHP Code:
                                if ((s.hahahahahahaha(myID))hahahaha-1) return ""; 
                            
                            NOTE this friggin board is filtering index-Of so replace the "hahahaha" with index-Of (remove the minus sign)

                            It may work, it may not. I know a lot of JS, but tend to stay away from WYSIWYG generated code.
                            icq: 119 4580

                            Comment

                            • GapingWound
                              Registered User
                              • Oct 2002
                              • 96

                              #15
                              ok, nevermind my previous 2 posts, I've been drinking

                              replace these lines:
                              PHP Code:
                                  over_ent1 = new Image('images/ent2.jpg'); 
                                              over_ext1 = new Image('images/ext2.jpg'); 
                              
                              with these:

                              PHP Code:
                                      over_ent1 = new Image;
                                      over_ent1.src = 'images/ent2.jpg';
                                      over_ext1 = new Image;
                                      over_ext1.src = 'images/ext2.jpg'; 
                              
                              You can leave the CSScriptlib.js in there. My bad
                              icq: 119 4580

                              Comment

                              • DirtyDanza
                                Confirmed User
                                • Aug 2002
                                • 8375

                                #16
                                thanks man I think it's fixed now... I owe you
                                Danza Bucks is back!!!

                                Comment

                                Working...