strange broken link
« on: January 07, 2007, 06:27:27 PM »
Broken Links
No Broken Link (Code 404) Referred from
1    \                                       /

The broken link referred from itself. How can it be???
the referred from is : [ External links are visible to forum administrators only ]    (double forward slash)
as well as the broken link.

and I really don't like to have broken links.

Please assist to solve this mystery.

Best regards,
Efry
Re: strange broken link
« Reply #1 on: January 07, 2007, 11:34:12 PM »
Hello Efry,

this link is found within your javascript code:
Code: [Select]
document.write("<a href=\"cart.php?target=category\&category_id=0\">" + temp[x] + "</a> |")
so, you can simply ignore this entry.
Re: strange broken link
« Reply #2 on: January 08, 2007, 06:50:52 PM »
actually, that can't be it. because the \" means that the javascript reads the " as " and not think it's the end of the phrase and produce error. otherwise all the links on the top of the page wouldn't work.

Besides , google reports the sitemap to be with errors.  :-\

Please assist.   ???

Efry
Re: strange broken link
« Reply #3 on: January 09, 2007, 12:54:35 AM »
Yes, as I mentioned you can ignore this reported link. Otherwise, you should have javascript correctly formatted:
instead of:
Quote
<script>
code goes here
</script>
you should have:
Quote
<script>
<!--
code goes here
//-->
</script>
i.e., add html comments.