| :: |
| Author |
Message |
AmirAbbas phpBB SEO Team


Joined: 11 May 2006 Posts: 529 Location: IRAN
|
|
| Back to top |
|
 |
|
 |
dcz Administrateur - Site Admin

Joined: 28 Apr 2006 Posts: 13354
|
|
| Back to top |
|
 |
dcz Administrateur - Site Admin

Joined: 28 Apr 2006 Posts: 13354
|
|
| Back to top |
|
 |
ico
Joined: 15 Jul 2006 Posts: 1
|
Posted: Sat Jul 15, 2006 9:28 pm Post subject: Re: [Archive] mx Sitemaps 0.0.1 |
|
|
I have a few questions.
1. Why does this mod overwrite confirm_body.tpl ?
2. Is it safe to overwrite confirm_body.tpl for all my styles ?
3. Why does this mod overwrite spacer.gif and whosonline.gif ?
I see no reason as to why any of those three files should be included. I don't think it is a good idea to overwrite existing images. Perhaps rewrite the mod so that it looks for spacer_seo.gif and whosonline_seo.gif would be safer. |
|
|
| Back to top |
|
 |
dcz Administrateur - Site Admin

Joined: 28 Apr 2006 Posts: 13354
|
Posted: Sat Jul 15, 2006 10:09 pm Post subject: Re: [Archive] mx Sitemaps 0.0.1 |
|
|
And welcome
You are totally right here
But it's no big deal, the files are the same (and up to date, this I make sure ) and you could even not upload them, it would work the same with phpBB.
Actually, this is only my fault, as mxBB needs those to run, I forgot to get rid of them while I released the mod.
My plan for 0.0.2 are to only use custom images and not recycle like here, it's just that I wanted some feedback on code and style before going further.
This is dev 0.0.1, but stable, for sure next versions will be enhanced, and easier to install fully.
++ |
_________________ 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 |
|
 |
legal
Joined: 05 Jul 2006 Posts: 42
|
Posted: Tue Jul 25, 2006 9:16 am Post subject: Re: [Archive] mx Sitemaps 0.0.1 |
|
|
Hi there.
Thanks for another great mod that I've just installed. It's working pretty well apart from one thing:
All the links work correctly apart from the forum map links that take you back to my main index page:
http://www.legalitforums.com/forum-map.html
Any ideas please?
Thanks very much.
 |
|
|
| Back to top |
|
 |
dcz Administrateur - Site Admin

Joined: 28 Apr 2006 Posts: 13354
|
Posted: Tue Jul 25, 2006 9:31 am Post subject: Re: [Archive] mx Sitemaps 0.0.1 |
|
|
Ho I see.
This is because I need to update this mod's install
Actually, you need first to open sessions.php and look for function append_sid().
In it, you'll find some commented lines of code for the mx Sitemaps module
Things like :
| Code: | // mx Sitemaps Module (forum URL injection + pagination)
//"".format_url($seo_forum_name)."-fmp\\1-\\2.html".if_query('\\3')."",
//"".format_url($seo_forum_name)."-fmp\\1.html".if_query('\\2')."", |
you need to change to :
| Code: | // mx Sitemaps Module (forum URL injection + pagination)
"".format_url($seo_forum_name)."-fmp\\1-\\2.html".if_query('\\3')."",
"".format_url($seo_forum_name)."-fmp\\1.html".if_query('\\2')."", |
Then, you should install the auto link add on to provide dynamic linking to you site maps and once done don't forget the Title injection patch and rewriterules.
0.0.2 will be more organize and easier to install, but this is fairly simple in the end.
And results as far a PageRank are very good with this mod  |
_________________ 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 |
|
 |
legal
Joined: 05 Jul 2006 Posts: 42
|
Posted: Tue Jul 25, 2006 10:04 am Post subject: Re: [Archive] mx Sitemaps 0.0.1 |
|
|
| Thank you - where's the auto link add on please? |
|
|
| Back to top |
|
 |
dcz Administrateur - Site Admin

Joined: 28 Apr 2006 Posts: 13354
|
|
| Back to top |
|
 |
legal
Joined: 05 Jul 2006 Posts: 42
|
Posted: Tue Jul 25, 2006 12:00 pm Post subject: Re: [Archive] mx Sitemaps 0.0.1 |
|
|
Thanks. I've done those two mods but I still have the same problem.
Do I need to do anything else please? |
|
|
| Back to top |
|
 |
dcz Administrateur - Site Admin

Joined: 28 Apr 2006 Posts: 13354
|
|
| Back to top |
|
 |
legal
Joined: 05 Jul 2006 Posts: 42
|
Posted: Tue Jul 25, 2006 2:16 pm Post subject: Re: [Archive] mx Sitemaps 0.0.1 |
|
|
Sorry - still not working.
 |
|
|
| Back to top |
|
 |
legal
Joined: 05 Jul 2006 Posts: 42
|
Posted: Tue Jul 25, 2006 2:19 pm Post subject: Re: [Archive] mx Sitemaps 0.0.1 |
|
|
I put this in .htaccess - is that wrong:
| Code: | #########################################################
# MX SITEMAPS REWRITE RULES ADVANCED #
#########################################################
# AUTHOR : dcz http://www.phpbb-seo.com/
# STARTED : 2006/04/28
########################################################
RewriteRule ^sitemaps([0-9]+)\.html$ /sitemaps.php?c=$1 [QSA,L]
RewriteRule ^sitemaps\.html$ /sitemaps.php [QSA,L]
RewriteRule ^forum-m\ap\.html$ /sitemaps.php?fim [QSA,L]
RewriteRule ^.+-fmp([0-9]+)-([0-9]+)\.html$ /sitemaps.php?fmp=$1&start=$2 [QSA,L]
RewriteRule ^.+-fmp([0-9]+)\.html$ /sitemaps.php?fmp=$1 [QSA,L]
RewriteRule ^.+-sc([0-9]+)\.html$ /sitemaps.php?c=$1 [QSA,L]
#########################################################
# END SITEMAPS REWRITE RULES #
######################################################### |
|
|
|
| Back to top |
|
 |
dcz Administrateur - Site Admin

Joined: 28 Apr 2006 Posts: 13354
|
Posted: Tue Jul 25, 2006 3:54 pm Post subject: Re: [Archive] mx Sitemaps 0.0.1 |
|
|
| dcz wrote: |
Actually, you need first to open sessions.php and look for function append_sid().
In it, you'll find some commented lines of code for the mx Sitemaps module
Things like :
| Code: | // mx Sitemaps Module (forum URL injection + pagination)
//"".format_url($seo_forum_name)."-fmp\\1-\\2.html".if_query('\\3')."",
//"".format_url($seo_forum_name)."-fmp\\1.html".if_query('\\2')."", |
you need to change to :
| Code: | // mx Sitemaps Module (forum URL injection + pagination)
"".format_url($seo_forum_name)."-fmp\\1-\\2.html".if_query('\\3')."",
"".format_url($seo_forum_name)."-fmp\\1.html".if_query('\\2')."", |
|
I really think you still need to do these edit.
The .htaccess is right
++ |
_________________ 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 |
|
 |
legal
Joined: 05 Jul 2006 Posts: 42
|
Posted: Tue Jul 25, 2006 4:02 pm Post subject: Re: [Archive] mx Sitemaps 0.0.1 |
|
|
I have this in includes\sessions.php:
| Code: | // mx Sitemaps Module (forum URL injection + pagination)
"".format_url($seo_forum_name)."-fmp\\1-\\2.html".if_query('\\3')."",
"".format_url($seo_forum_name)."-fmp\\1.html".if_query('\\2')."", |
|
|
|
| Back to top |
|
 |
|
|