Ok now i found the problem & the correction to it, the author only needs to update the php attachment.
when clicking on the page number, it leads you to a 404 error page but as it goes
Before -
http://mytalkcarolina.com/community/sitemap?offset=1800 (404 error)
After -
http://mytalkcarolina.com/community/...hp?offset=1800 (Will allow to go to next page)
On line 14, just add .php to the variable.
Before
Quote:
define('SKIP_SESSIONCREATE', 1);
define('DIE_QUIETLY', 1);
define('THIS_SCRIPT', 'sitemap');
|
After
Quote:
define('SKIP_SESSIONCREATE', 1);
define('DIE_QUIETLY', 1);
define('THIS_SCRIPT', 'sitemap.php');
|
That way you will no longer see the 404 error page

hope that helps anyone that uses my correction "which is only small, and author

you may want to update your sitemap.php attachment with my correction so everyone will have it when they install it into their forum root.