SEO-Board: Free, Fast and Search Engine Optimization Friendly Forum Script
»User: »Password:   Remember Me? 
SEO-Board Forum Software Community / SEO-Board / Announcements / Another issue with feeds fixed
Posted:  16 Feb 2006 23:30
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
Posted:  03 May 2008 23:03
Code:

<? echo "Hello World"; ?>
Posted:  03 May 2008 23:04
Posted:  03 May 2008 23:04
Quote: