I fixed a path issue with rss/atom feeds. The bug can prevent crawlers from discovering your feeds depending on where your forum is placed.
The issue is in mainheader.htm
Replace these 2 lines:
Code:
<link rel="alternate" type="application/rss+xml" title="RSS 2.0 Feed" href="index.rss.php" />
<link rel="alternate" type="application/atom+xml" title="Atom 1.0 Feed" href="index.atom.php" />
with these
Code:
<link rel="alternate" type="application/rss+xml" title="RSS 2.0 Feed" href="{$forumdir}index.rss.php" />
<link rel="alternate" type="application/atom+xml" title="Atom 1.0 Feed" href="{$forumdir}index.atom.php" />
If your forum is in a subdirectory, like yourdomain.com/forum, the bug will tell the crawlers that your feeds are in the main directory instead of the subdirectory. The above fix relieves this issue.
I've fixed the 1.04 source code. Changed file is: mainheader.htm __________________Are you looking for an SEO Consultant?
Email me: hristo at seo-board dot com
|