| |
|
| :: |
| Author |
Message |
HB. PR0

Joined: 26 Oct 2006 Posts: 62
|
Posted: Sat Nov 25, 2006 4:23 pm Post subject: Re: [Archive] mx Sitemaps 0.0.1 |
|
|
ok thank you, I guess I should delete it? I think everything else was working fine, I was just wondering about if this mod should have provided a link in the footer like this forum. It appears only main conflict was the category not displaying the correct link. Does your other sitemap mod work with CH, and does it do just about the same as this one?
thank you |
|
|
| Back to top |
|
 |
|
 |
dcz Administrateur - Site Admin

Joined: 28 Apr 2006 Posts: 14779
|
|
| Back to top |
|
 |
HB. PR0

Joined: 26 Oct 2006 Posts: 62
|
Posted: Sat Nov 25, 2006 4:39 pm Post subject: Re: [Archive] mx Sitemaps 0.0.1 |
|
|
Thank you very much dcz. Looks like I'm shot for now as I do have mod-rewrite, but I using the simple. I'm wondering for now, could I just take out the category link in the sitemap index so that it will show the topics instead.? The topic links work just fine.
edit: oops I meant to say take out the forum instead of the category  |
|
|
| Back to top |
|
 |
dcz Administrateur - Site Admin

Joined: 28 Apr 2006 Posts: 14779
|
Posted: Sat Nov 25, 2006 4:51 pm Post subject: Re: [Archive] mx Sitemaps 0.0.1 |
|
|
You mean you would like to use mx sitemaps only for it's index ? and the last active topic list ?
Actually, looking at the code, it should work with the simple mod rewrite if you open :
| Code: | | includes/Sitemaps_Functions.php |
find :
| Code: | | $forum_url_tmp = $phpbb_url . 'viewforum.'.$phpEx.'?'.POST_FORUM_URL.'='.$row[$i]['forum_id']; |
Replace with :
| Code: | | $forum_url_tmp = $phpbb_url . 'index.'.$phpEx.'?'.POST_FORUM_URL.'='.$row[$i]['forum_id']; |
I do not have much time to test this, but, it should be the same for all other forum links, just replace "viewforum" with "index" in all the includes/ sitemaps files.
++ |
_________________ 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 |
|
 |
HB. PR0

Joined: 26 Oct 2006 Posts: 62
|
Posted: Sat Nov 25, 2006 4:54 pm Post subject: Re: [Archive] mx Sitemaps 0.0.1 |
|
|
I'll test it for you, and see how it works. Least I hope we are on the same page
I meant the forum link would show the old viewforum instead of .html like the topic links. That's why the forum link would lead to an invalid page. I'll make those code changes and let you know how it works. BTW just for reference, I'm using a older version of CH not 2.1.6 if it matters. |
|
|
| Back to top |
|
 |
HB. PR0

Joined: 26 Oct 2006 Posts: 62
|
Posted: Sat Nov 25, 2006 5:01 pm Post subject: Re: [Archive] mx Sitemaps 0.0.1 |
|
|
Hey dcz, it worked!! Thanks a lot  |
|
|
| Back to top |
|
 |
dcz Administrateur - Site Admin

Joined: 28 Apr 2006 Posts: 14779
|
|
| Back to top |
|
 |
HB. PR0

Joined: 26 Oct 2006 Posts: 62
|
Posted: Sat Nov 25, 2006 5:05 pm Post subject: Re: [Archive] mx Sitemaps 0.0.1 |
|
|
ok will do. I'll test that out in a few minutes.  |
|
|
| Back to top |
|
 |
sssseo
Joined: 22 Nov 2006 Posts: 11
|
Posted: Fri Dec 08, 2006 11:38 pm Post subject: append SID function w/static URLs |
|
|
I'm using your static URLs MOD (w/mixed mod_rewrite) with the sitemap MOD and I don't understand the following lines you say to edit in includes/sessions.php:
| Code: | if ( $seo_forum_name ) {
$urlin = array( ...
// mx Sitemaps Module (forum URL injection + pagination)
//"'(?)forum-map([0-9]+)\.html".$amp."start=([0-9]+)(".$amp."){0,1}'",
//"'(?)forum-map([0-9]+)\.html(".$amp."){0,1}'",
);
$urlout = array( ...
// 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')."",
);
$url = preg_replace($urlin, $urlout, $url);
} |
Where does the sitemap script even do append_sid() ? |
|
|
| Back to top |
|
 |
dcz Administrateur - Site Admin

Joined: 28 Apr 2006 Posts: 14779
|
Posted: Sat Dec 09, 2006 10:25 am Post subject: Re: [Archive] mx Sitemaps 0.0.1 |
|
|
Actually, this is needed to allow a nice pagination and to inject titles in forum maps URLs.
All you need to do is to uncomment the lines mentioning mx Sitemaps Module in includes/sessions.php
EG :
Replace :
| Code: | // mx Sitemaps Module (forum URL injection + pagination)
//"'(?)forum-map([0-9]+)\.html".$amp."start=([0-9]+)(".$amp."){0,1}'",
//"'(?)forum-map([0-9]+)\.html(".$amp."){0,1}'", |
with
| Code: | // mx Sitemaps Module (forum URL injection + pagination)
"'(?)forum-map([0-9]+)\.html".$amp."start=([0-9]+)(".$amp."){0,1}'",
"'(?)forum-map([0-9]+)\.html(".$amp."){0,1}'", |
Replace :
| 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')."", |
with :
| 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')."", |
for the mixed mod rewrite.
Once done, you'll need these rewriterules : http://www.phpbb-seo.com/boards/phpbb-seo-mods/site-map-auto-link-phpbb-vt5.html#317
instead for the mx sitemaps 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 |
|
 |
sssseo
Joined: 22 Nov 2006 Posts: 11
|
Posted: Sat Dec 09, 2006 4:43 pm Post subject: Re: [Archive] mx Sitemaps 0.0.1 |
|
|
Okay, thanks...I wasn't aware of the auto-link add-on. You might consider adding a reference to it in the Static URL's MOD instructions, where includes/sessions.php is edited; you already link to the Sitemap MOD, a link to the Auto-Link MOD would help too. In the Mixed mod_rewrite version, you have:
| Code: | # In the following code changes, please look at the comments, they concern the
# mx Sitemaps Module ( http://boards.phpbb-seo.com/phpbb-seo-mods/mx-site-map-module-vt4.html )
# and mxBB Portal. Just uncomment, to activate, or delete, if unused, the required lines of code upon your needs |
You can add it there.
P.S. Thanks for all these MODs, they work perfectly (even with some personal changes to the mod_rewite format), and I look forward to submitting to Google and seeing the results. |
|
|
| Back to top |
|
 |
dcz Administrateur - Site Admin

Joined: 28 Apr 2006 Posts: 14779
|
|
| Back to top |
|
 |
nims phpBB SEO Team

Joined: 11 Oct 2006 Posts: 243 Location: New Delhi, India
|
Posted: Sat Dec 16, 2006 8:26 am Post subject: Re: [Archive] mx Sitemaps 0.0.1 |
|
|
| So I guess lot of testing has gone into this now. When are you planning to finaly release this ? |
_________________ Audio Ads - Earn from every visitor to your site
Buy Latest mobiles *** SEO India |
|
| Back to top |
|
 |
dcz Administrateur - Site Admin

Joined: 28 Apr 2006 Posts: 14779
|
Posted: Sat Dec 16, 2006 11:45 am Post subject: Re: [Archive] mx Sitemaps 0.0.1 |
|
|
| nims wrote: | | So I guess lot of testing has gone into this now. When are you planning to finaly release this ? |
This mod you are talking about here, is working, now if you are talking about the updates, well, team testing just started, release is close, but, recruitings and team organization are important for the future too.
Anyway, Santa Klaus should bring some this year
++ |
_________________ 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 |
|
 |
annamon
Joined: 26 Dec 2006 Posts: 4
|
Posted: Tue Dec 26, 2006 7:01 pm Post subject: Re: [Archive] mx Sitemaps 0.0.1 |
|
|
Hello,
Today after update my phpbb from 2.0.21 to 2.0.22, the forum don't work.
I think the error was produced by the 'mx Sitemaps Module', becouse the error ocurres on the line 655 on sessions.php:
| Quote: |
655 $urlout = array( "post\\1.html".if_query('\\2')."",
|
This is my url for see the error on sessions.php
http://suplementos.monsegur.net/
How i can solves it?
PD: Excuse for my english and thanks for your great's mods. |
|
|
| Back to top |
|
 |
|
|
| Navigation |
Similar Topics |
|
|
|
|
|
|
|