phpBB SEO
Boards
Directory  
SEO  
Downloads
  phpBB SEO : Search Engine Optimization, Directory, Forums  
Index
Forums
Annuaire
Référencement
Télécharger
 
  Search Rechercher
    Register
Username :  Password :  Log me on automatically each visit  
S'enregistrer  
 
   
problem after updating mx sitemaps

 
Post new topic   Reply to topic    phpBB SEO » SEO Forum  » phpBB SEO TooLKit  » phpBB SEO MODS
::  
Author Message
HB.
PR0
PR0


Joined: 26 Oct 2006
Posts: 62

problem after updating mx sitemapsPosted: Sun Feb 11, 2007 6:52 pm    Post subject: problem after updating mx sitemaps

**In continue from the other topic**

Here is a copy of my .htaccess. I haven't changed a thing to it since the upgrade, however now when you click either the sitemap or forum map link I get a 404 page. As you can see, I have my forum under the "Forum" folder. but when you click either link it will lead you to example. mysite.com/forum-map.html. Can I just edit one of the template files to point to the correct location

Code:
RewriteEngine On
RewriteBase /



#########################################################
# MX SITEMAPS REWRITE RULES   SIMPLE         #
#########################################################
# AUTHOR : dcz http://www.phpbb-seo.com/
# STARTED : 2006/04/28
########################################################
# INDEX
RewriteRule ^Forum/sitemaps\.html$ /Forum/sitemaps.php [QSA,L]
# PORTAL INDEX
RewriteRule ^Forum/mx-map\.html$ /Forum/sitemaps.php?mx [QSA,L]
# FORUM INDEX
RewriteRule ^Forum/forum-map\.html$ /Forum/sitemaps.php?fim [QSA,L]
# PAGINATED FORUM MAP
RewriteRule ^Forum/forum-map([0-9]+)-([0-9]+)\.html$ /Forum/sitemaps.php?fmp=$1&start=$2 [QSA,L]
# FORUM MAP
RewriteRule ^Forum/forum-map([0-9]+)\.html$ /Forum/sitemaps.php?fmp=$1 [QSA,L]
# CATEGORIES
RewriteRule ^Forum/sitemaps([0-9]+)\.html$ /Forum/sitemaps.php?c=$1 [QSA,L]
#########################################################
# END SITEMAPS REWRITE RULES            #
#########################################################

# FORUMS PAGES
########################
# PAGINATED FORUM
RewriteRule ^Forum/forum([0-9]+)-([0-9]+)-([0-9]+)\.html$ /Forum/index.php?f=$1&ppage=$2&start=$3 [QSA,L]
# PAGINATED FORUM
RewriteRule ^Forum/forum([0-9]+)-([0-9]+)\.html$ /Forum/index.php?f=$1&ppage=$2 [QSA,L]
# FORUM
RewriteRule ^Forum/forum([0-9]+)\.html$ /Forum/index.php?f=$1 [QSA,L]
# PAGINATED TOPIC
RewriteRule ^Forum/topic([0-9]+)-([0-9]+)\.html$ /Forum/viewtopic.php?t=$1&start=$2 [QSA,L]
# TOPIC
RewriteRule ^Forum/topic([0-9]+)\.html$ /Forum/viewtopic.php?t=$1 [QSA,L]
# POST
RewriteRule ^Forum/post([0-9]+)\.html$ /Forum/viewtopic.php?p=$1 [QSA,L]
#PROFILES
RewriteRule ^Forum/member([0-9]+)\.html$ /Forum/profile.php?mode=viewprofile&u=$1 [QSA,L]

#####################################################

########################################################
# phpBB
RewriteRule ^sitemaps.xml$ /sitemap.php [L]
RewriteRule ^forum-sitemap-([0-9]+).xml$ /sitemap.php?fid=$1 [L]
RewriteRule ^sitemap-forum.xml$ /sitemap.php?forum [L]
# mxBB
RewriteRule ^mx-sitemap.xml$ /sitemap.php?mx [L]
# KB
RewriteRule ^kb-sitemap-([0-9]+).xml$ /sitemap.php?kbid=$1 [L]
RewriteRule ^sitemap-kbcat.xml$ /sitemap.php?kbcat [L]
#########################################################
# END GG_SITEMAPS REWRITE RULES            #
#########################################################
Back to top
dcz
Administrateur - Site Admin
Administrateur - Site Admin


Joined: 28 Apr 2006
Posts: 14327

problem after updating mx sitemapsPosted: Mon Feb 12, 2007 8:54 am    Post subject: Re: problem after updating mx sitemaps

It looks like you're using the simple mod rewrite rewriterules for the mod.

Look up in install, you've got an other set of rewriterules for advanced and mixed mod rewrite. There will be title injection for forums maps and categories in the module.

++

_________________
Useful links :
SEO Forum || SEO Directory || SEO phpBB || SEO phpBB3 || Search
____________________

Liens Utiles :
Forum référencement || Annuaire référencement || Référencement phpBB || Référencement phpBB3 || Recherche
Back to top
Visit poster's website
HB.
PR0
PR0


Joined: 26 Oct 2006
Posts: 62

problem after updating mx sitemapsPosted: Mon Feb 12, 2007 3:15 pm    Post subject: Re: problem after updating mx sitemaps

I am using the simple. I thought I was using the correct one. I copied the instructions to my .htaccess for simple mod rewriterules that had my forum in a sub folder...

At first I didn't do anything to the .htaccess. All I did was follow the update instructions, but then found I was getting that 404 page error, so that's when I double checked the .htaccess to make sure I had the correct rewrite rules.
Back to top
dcz
Administrateur - Site Admin
Administrateur - Site Admin


Joined: 28 Apr 2006
Posts: 14327

problem after updating mx sitemapsPosted: Tue Feb 13, 2007 10:16 am    Post subject: Re: problem after updating mx sitemaps

Is the site online, so I can check ?

_________________
Useful links :
SEO Forum || SEO Directory || SEO phpBB || SEO phpBB3 || Search
____________________

Liens Utiles :
Forum référencement || Annuaire référencement || Référencement phpBB || Référencement phpBB3 || Recherche
Back to top
Visit poster's website
HB.
PR0
PR0


Joined: 26 Oct 2006
Posts: 62

problem after updating mx sitemapsPosted: Tue Feb 13, 2007 4:09 pm    Post subject: Re: problem after updating mx sitemaps

You can find it here
http://www.hotclubforums.com/Forum/forum-map.html
Back to top
dcz
Administrateur - Site Admin
Administrateur - Site Admin


Joined: 28 Apr 2006
Posts: 14327

problem after updating mx sitemapsPosted: Tue Feb 13, 2007 5:44 pm    Post subject: Re: problem after updating mx sitemaps

Ho yes I see, looks like header links must be fixed on this module.
erf.

Anyway, a quick fix should be to find :
Code:

// Include common module stuff...


in sitemaps.php

and add before :
Code:
$root_url = $phpbb_url;


should work.

++

_________________
Useful links :
SEO Forum || SEO Directory || SEO phpBB || SEO phpBB3 || Search
____________________

Liens Utiles :
Forum référencement || Annuaire référencement || Référencement phpBB || Référencement phpBB3 || Recherche
Back to top
Visit poster's website
HB.
PR0
PR0


Joined: 26 Oct 2006
Posts: 62

problem after updating mx sitemapsPosted: Wed Feb 14, 2007 8:16 pm    Post subject: Re: problem after updating mx sitemaps

Thank you very much that did work Very Happy Could you tell me why my topic descriptions are linked, and they lead to a 404 page.
Back to top
dcz
Administrateur - Site Admin
Administrateur - Site Admin


Joined: 28 Apr 2006
Posts: 14327

problem after updating mx sitemapsPosted: Thu Feb 15, 2007 12:04 pm    Post subject: Re: problem after updating mx sitemaps

I did not find any 404 in the module. And it does not use topic descriptions (as there is none in phpBB by default).

Could you elaborate a bit more about your issue ?

++

_________________
Useful links :
SEO Forum || SEO Directory || SEO phpBB || SEO phpBB3 || Search
____________________

Liens Utiles :
Forum référencement || Annuaire référencement || Référencement phpBB || Référencement phpBB3 || Recherche
Back to top
Visit poster's website
HB.
PR0
PR0


Joined: 26 Oct 2006
Posts: 62

problem after updating mx sitemapsPosted: Fri Feb 16, 2007 4:18 am    Post subject: Re: problem after updating mx sitemaps

Well for some reason, my forum map and sitemap for mx sitemaps looks a lot different then yours. When you click on the forum map link, in the index you'll see the link to the forum, and below it will have the forum description such as this

Quote:
News & Announcements - Forum Map
Stay in the know with what's happening at HotClubForums.com


Stay in the know with what's happening at HotClubForums.com is the forum desecription, but it's linked, and that link leads to a 404 error page
Back to top
dcz
Administrateur - Site Admin
Administrateur - Site Admin


Joined: 28 Apr 2006
Posts: 14327

problem after updating mx sitemapsPosted: Fri Feb 16, 2007 12:01 pm    Post subject: Re: problem after updating mx sitemaps

The 404 suggest some problem with .htaccess, but here you have a 404 on vanilla ulrs :
-http://www.hotclubforums.com/Forum/viewforum.php?f=1 so it looks like you're using CH and mx sitemaps is not compatible Wink

++

_________________
Useful links :
SEO Forum || SEO Directory || SEO phpBB || SEO phpBB3 || Search
____________________

Liens Utiles :
Forum référencement || Annuaire référencement || Référencement phpBB || Référencement phpBB3 || Recherche
Back to top
Visit poster's website
Display posts from previous:   
Post new topic   Reply to topic    phpBB SEO » SEO Forum  » phpBB SEO TooLKit  » phpBB SEO MODS
Page 1 of 1

Navigation Similar Topics

Jump to: