A Solution and A Question
Firstly, i would like to Thank CSGAL for this great tutorial. But there are somethings that looks bad to me. That wrong thing is "View Full Version :" Links in Arhcive pages.
For example, in arhive pages you are redirecting to "forumdisplay.php?f=123" instead of thread123.html.
And
"forumdisplay.php?f=1" instead of "keyword.html".
i've solved the forumdisplay.php issue, here is the solution:
archive/index.php:
find:
echo print_archive_navigation($foruminfo, $threadinfo); echo "<p class=\"largefont\">$vbphrase[view_full_version] : <a href=\"$vboptions[bburl]/showthread.php?t=$threadinfo[threadid]\">$threadinfo[title]</a></p>\n<hr />\n";
and replace with
echo print_archive_navigation($foruminfo, $threadinfo); echo "<p class=\"largefont\">$vbphrase[view_full_version] : <a href=\"$vboptions[bburl]/thread$thread$threadinfo[threadid].html\">$threadinfo[title]</a></p>\n<hr />\n";
That will prevent duplicate pages which may crucial for SEO. And Your "View Full Version :" links will be "thread123.html".
BUTi couldnt solve the "forumdisplay.php?f=1" instead of "keyword.html" issue. How may i fix that problem, i just added // to :
echo print_archive_navigation($foruminfo); echo "<p class=\"largefont\">$vbphrase[view_full_version] : <a href=\"$vboptions[bburl]/forumdisplay.php?f=$foruminfo[forumid]\">$foruminfo[title]</a></p>\n<hr />\n";
i hope somebody help and everything work GREAT with this tutorial.
I JUST did this today
Hope that makes sense, i dont have copies of the original archive page handy to reference for the "find X, replace with X" instructions.
To see in action, check it here: www.tfw2005.com/boards/archive/
EDIT: Code wasnt showing up properly, check attached TXT file for instructions.