mico2
inherit
-248223
0
Nov 23, 2024 11:32:26 GMT -8
mico2
0
January 1970
GUEST
|
Post by mico2 on Sept 26, 2005 15:23:45 GMT -8
Forum URL: foboards.proboards49.comyou have a "Done, but with errors on page" at the bottom, you might want to look into it... While Enchant was rating my board she said that. But I don't see any errors or "Done, but with errors" at the bottom of my page. Can someone please help me. By the way, I'm using FireFox, does it have something to do with that? P.S. Don't know if I should have put this thread in Support or Code Support, if it's in the wrong spot, can a mod move it please.
|
|
inherit
Within Moriarty's Web
7801
0
Sept 26, 2020 6:36:42 GMT -8
Storm
25,378
February 2003
storm914
|
Post by Storm on Sept 26, 2005 15:32:24 GMT -8
Forum URL: foboards.proboards49.comyou have a "Done, but with errors on page" at the bottom, you might want to look into it... While Enchant was rating my board she said that. But I don't see any errors or "Done, but with errors" at the bottom of my page. Can someone please help me. By the way, I'm using FireFox, does it have something to do with that? P.S. Don't know if I should have put this thread in Support or Code Support, if it's in the wrong spot, can a mod move it please. If you can access IE you will be able to see the error that is in the bottom left corner. Double left click it and it will give you a line number. I have tracked down the possible code it starts like this: <script type="text/javascript"> <!-- /* % of total posts in profile by elindir, do not edit or redistribute */ (Did not post the full code due to the copyright.) Find that code and temporarily remove it and see if the yellow triangle turns back to the normal blue one.
|
|
mico2
inherit
-248225
0
Nov 23, 2024 11:32:26 GMT -8
mico2
0
January 1970
GUEST
|
Post by mico2 on Sept 26, 2005 16:14:21 GMT -8
I took away the code but it still has an error. I switched to IE and it says this: "'tt[...].cellPadding' is null or not an object" I have no clue where that is from, but I'm probably one of my codes.
|
|
inherit
Within Moriarty's Web
7801
0
Sept 26, 2020 6:36:42 GMT -8
Storm
25,378
February 2003
storm914
|
Post by Storm on Sept 26, 2005 16:26:35 GMT -8
I took away the code but it still has an error. I switched to IE and it says this: "'tt[...].cellPadding' is null or not an object" I have no clue where that is from, but I'm probably one of my codes. ok in this code: <script type="text/javascript"> <!-- // Legend in info center. // Created by Peter var iLegend = [ ["Administrator", "red"], ["Elite Moderator", "lime"], ["Moderator", "blue"], ["Member", "0099FF"] ]; var iDiv = document.createElement("div"); var iTable = document.getElementsByTagName("table"); for(t = 0; t < iTable.length; t ++){ if(iTable.item(t).width == "98%" && iTable.item(t).cellPadding == "3"){ if(iTable.item(t).rows.item(0).innerHTML.match(/Most users online/)){ var nCell = iTable.item(t).insertRow(iTable.item(t).rows.length).insertCell(0); for(l = 0; l < iLegend.length; l ++){ var nSpan = document.createElement("span"); nSpan.align = "center" nSpan.style.color = iLegend[l][1]; nSpan.style.fontSize = 9; nSpan.appendChild(document.createTextNode(iLegend[l][0])); iDiv.appendChild(nSpan); if(l != (iLegend.length - 1)){ iDiv.appendChild(document.createTextNode(" - ")); } } iDiv.align = "center"; nCell.appendChild(iDiv); } } } //--> </script> Where you have the color names written out, you always want to use hex numbers. Try removing that code and see if it clears up. If it does, then locate hex numbers for the name colors you have written for your mods.
|
|
mico2
inherit
-248227
0
Nov 23, 2024 11:32:26 GMT -8
mico2
0
January 1970
GUEST
|
Post by mico2 on Sept 26, 2005 16:51:08 GMT -8
Okay, I took away the code and then changed the hex and the error still hasn't gone away...
|
|
inherit
Within Moriarty's Web
7801
0
Sept 26, 2020 6:36:42 GMT -8
Storm
25,378
February 2003
storm914
|
Post by Storm on Sept 26, 2005 17:03:06 GMT -8
errgg.. *kills the error bug* ok try removing this one : <script type="text/javascript"> <!-- /* limit who can edit karma by elindir 101support.proboards43.com */ var allowed = /user=(admin);/i; var ka=document.getElementsByTagName("td") for (e=0;e<ka.length;e++) { if(location.href.match(/action=modifyprofile/gi) && !document.cookie.match(allowed) && ka[e].innerHTML.match(/Karma/) && ka[e].width.match(/160/) && ka[e].vAlign.match(/top/)){ ka[e].style.display="none"; ka[e+1].style.display="none"; ka[e+2].style.display="none"; }} // --> </script> It will eventually be found but that is where the count is coming back too.
|
|
mico2
inherit
-248229
0
Nov 23, 2024 11:32:26 GMT -8
mico2
0
January 1970
GUEST
|
Post by mico2 on Sept 26, 2005 17:10:25 GMT -8
Okay...that didn't work either...
|
|
inherit
Within Moriarty's Web
7801
0
Sept 26, 2020 6:36:42 GMT -8
Storm
25,378
February 2003
storm914
|
Post by Storm on Sept 26, 2005 17:23:37 GMT -8
gahh.. ok let's do this. I know it is either in your main footer or global footer codes. Take out all of the codes in your main footer and put them in one note pad and then do the same for your global footer. Then slowly add one by one back until you get the error message again. I t will take a bit of time but it's worth it.
|
|
mico2
inherit
-248231
0
Nov 23, 2024 11:32:26 GMT -8
mico2
0
January 1970
GUEST
|
Post by mico2 on Sept 26, 2005 17:54:22 GMT -8
Okay I finally found out the problem, it was the last code I added and it was the one Ross got for me, or someone else got it, I don't remember. Anyways, this was the code: (^ Had no copyright on it just in case someone is wondering.)
But what I want to know is why it made an error. And if someone could possibly make a code that is almost the same but not have any errors.
|
|
inherit
Within Moriarty's Web
7801
0
Sept 26, 2020 6:36:42 GMT -8
Storm
25,378
February 2003
storm914
|
Post by Storm on Sept 26, 2005 18:49:53 GMT -8
Ok now you can you move that one to the code requests board. Glad you were able to find it.
|
|