| |
|
| :: |
| Author |
Message |
linus PR0


Joined: 02 Jul 2006 Posts: 56
|
Posted: Mon Jul 03, 2006 6:14 pm Post subject: Re: Migrating webmedic - phpBB SEO advanced mod Rewrite |
|
|
ok
phpBB-SEO-Advanced-mod-Rewrite_V_0.0.2
phpBB_SEO_Dynamic_Metatags_V_0.0.1
mx_Sitemaps_V_0.0.1
mx_ggsitemaps_v1.0.1
mx_Sitemaps_Auto_link_Add_on_phpBB_V_0.1
------------------>+ MOD
I've two problem.
---one
rewrite actived :
?????????????????????
---two
the image is too much large
task to have made all good this time...
I've sitemap.php & sitemaps.php
--->
My htaccess :
| Code: | Options +FollowSymlinks
RewriteEngine On
RewriteBase /
RewriteRule ^.+/([^/]+\.html)$ /index.php [R=301,L]
RewriteRule ^.+-vc([0-9]+)\.html$ /index.php?c=$1 [QSA,L]
RewriteRule ^.+-vf([0-9]+)-([0-9]+)\.html$ /viewforum.php?f=$1&start=$2 [QSA,L]
RewriteRule ^.+-vf([0-9]+)\.html$ /viewforum.php?f=$1 [QSA,L]
RewriteRule ^.+-vt([0-9]+)-([0-9]+)\.html$ /viewtopic.php?t=$1&start=$2 [QSA,L]
RewriteRule ^.+-vt([0-9]+)\.html$ /viewtopic.php?t=$1 [QSA,L]
RewriteRule ^post([0-9]+)\.html$ /viewtopic.php?p=$1 [QSA,L]
RewriteRule ^member([0-9]+)\.html$ /profile.php?mode=viewprofile&u=$1 [QSA,L]
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]
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 ^forum-m\ap([0-9]+)-([0-9]+)\.html$ /sitemaps.php?fmp=$1&start=$2 [QSA,L]
RewriteRule ^forum-m\ap([0-9]+)\.html$ /sitemaps.php?fmp=$1 [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] |
thanks for your aid, without of you I would not be successful. thanks for your patience. ..
/includes/page_tail.php
| Code: | //Begin mx_Sitemaps Auto link Add On http://www.phpbb-seo.com/
$mx_forum_id =( isset($HTTP_GET_VARS[POST_FORUM_URL]) )? intval($HTTP_GET_VARS[POST_FORUM_URL]) : 0;
$root_url = 'http://www.forum-linux-italia.com/';
if ( $mx_forum_id != 0 )
{
$mx_link_tmp = append_sid($root_url . format_url($forum_row['forum_name']) . '-fmp' .$mx_forum_id . '.html');
$link_title = $forum_row['forum_name'].' - Map';
$mx_sitemap_link = '<a href="'.$mx_link_tmp.'" class="copyright" title="'.$link_title.'">'.$link_title.'</a>';
$mx_sitemap_link .= '<br /><a href="'.append_sid($root_url . 'forum-map.html').'" class="copyright" title="Forum Map">Forum Map</a>';
$mx_sitemap_link .= '<br /><a href="'.append_sid($root_url . 'sitemaps.html').'" class="copyright" title="'.$board_config['sitename'].' : Site Map">Site Map</a>';
}
else
{
$mx_sitemap_link = '<a href="'.append_sid($root_url . 'forum-map.html').'" class="copyright" title="Forum Map">Forum Map</a>';
$mx_sitemap_link .= '<br /><a href="'.append_sid($root_url . 'sitemaps.html').'" class="copyright" title="'.$board_config['sitename'].' : Site Map">Site Map</a>';
}
//End mx_Sitemaps Auto link Add On http://www.phpbb-seo.com/ |
|
_________________ ... |
|
| Back to top |
|
 |
|
 |
dcz Administrateur - Site Admin

Joined: 28 Apr 2006 Posts: 15131
|
Posted: Mon Jul 03, 2006 7:26 pm Post subject: Re: Migrating webmedic - phpBB SEO advanced mod Rewrite |
|
|
| linus wrote: | ok
phpBB-SEO-Advanced-mod-Rewrite_V_0.0.2
phpBB_SEO_Dynamic_Metatags_V_0.0.1
mx_Sitemaps_V_0.0.1
mx_ggsitemaps_v1.0.1
mx_Sitemaps_Auto_link_Add_on_phpBB_V_0.1
|
Good
| linus wrote: |
thanks for your aid, without of you I would not be successful. thanks for your patience. ..
|
You're welcome
So mx Google sitemap is perfectly installed and ready for internal mod rewrite, you can activate mx Google sitemaps mod rewrite in it's ACP and submit sitemaps.xml to Google, a link is provided in ACP.
Then, you need to un-comment some lines of code in the append_sid function (includes/sessions.php), do make it faster, here is the append_sid function you should use :
| Code: |
function append_sid($url, $non_html_amp = false)
{
global $SID;
// www.phpBB-SEO.com SEO TOOLKIT BEGIN
global $phpEx, $seo_cat_name, $seo_forum_name, $seo_topic_name;
$amp = ($non_html_amp) ? '&' : '&';
$find = array( $amp.'start=0',
$amp.'postdays=0',
$amp.'topicdays=0',
$amp.'postorder=asc',
);
$url = str_replace ($find, "", $url);
if ( $seo_cat_name ) {
$urlin = array( "'(?)index.".$phpEx."\?c=([0-9]+)(".$amp."){0,1}'",
// mx Sitemaps Module (cat URL injection)
"'(?)sitemaps([0-9]+)\.html(".$amp."){0,1}'",
);
$urlout = array( "".format_url($seo_cat_name)."-vc\\1.html".if_query('\\2')."",
// mx Sitemaps Module (cat URL injection)
"".format_url($seo_cat_name)."-sc\\1.html".if_query('\\2')."",
);
$url = preg_replace($urlin, $urlout, $url);
}
if ( $seo_forum_name ) {
$urlin = array( "'(?)viewforum.".$phpEx."\?f=([0-9]+)".$amp."start=([0-9]+)(".$amp."){0,1}'",
"'(?)viewforum.".$phpEx."\?f=([0-9]+)(".$amp."){0,1}'",
// 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( "".format_url($seo_forum_name)."-vf\\1-\\2.html".if_query('\\3')."",
"".format_url($seo_forum_name)."-vf\\1.html".if_query('\\2')."",
// 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);
}
if ($seo_topic_name) {
$urlin = array( "'(?)viewtopic.".$phpEx."\?t=([0-9]+)".$amp."start=([0-9]+)(".$amp."){0,1}'",
"'(?)viewtopic.".$phpEx."\?t=([0-9]+)(".$amp."){0,1}'",
);
$urlout = array("".format_url($seo_topic_name)."-vt\\1-\\2.html".if_query('\\3')."",
"".format_url($seo_topic_name)."-vt\\1.html".if_query('\\2')."",
);
$url = preg_replace($urlin, $urlout, $url);
}
$urlin = array( "'(?)viewtopic.".$phpEx."\?p=([0-9]+)(".$amp."){0,1}'",
"'(?)profile.".$phpEx."\?mode\=viewprofile".$amp."u=([0-9]+)(".$amp."){0,1}'",
);
$urlout = array( "post\\1.html".if_query('\\2')."",
"member\\1.html".if_query('\\2')."",
);
$url = preg_replace($urlin, $urlout, $url);
$url = (substr($url, strlen($url) - 1, 1) == '?') ? substr($url, 0, strlen($url) - 1) : $url;
// www.phpBB-SEO.com SEO TOOLKIT END
if ( !empty($SID) && !preg_match('#sid=#', $url) )
{
$url .= ( ( strpos($url, '?') !== false ) ? ( ( $non_html_amp ) ? '&' : '&' ) : '?' ) . $SID;
}
return $url;
}
|
This will activate title injection in mx Sitemaps links.
then, it's strange you cannot use forum-map.html, because the correct rewriterule is here.
Anyway, some where useless so try this :
| Code: |
Options +FollowSymlinks
RewriteEngine On
RewriteBase /
RewriteRule ^.+/([^/]+\.html)$ /index.php [R=301,L]
RewriteRule ^.+-vc([0-9]+)\.html$ /index.php?c=$1 [QSA,L]
RewriteRule ^.+-vf([0-9]+)-([0-9]+)\.html$ /viewforum.php?f=$1&start=$2 [QSA,L]
RewriteRule ^.+-vf([0-9]+)\.html$ /viewforum.php?f=$1 [QSA,L]
RewriteRule ^.+-vt([0-9]+)-([0-9]+)\.html$ /viewtopic.php?t=$1&start=$2 [QSA,L]
RewriteRule ^.+-vt([0-9]+)\.html$ /viewtopic.php?t=$1 [QSA,L]
RewriteRule ^post([0-9]+)\.html$ /viewtopic.php?p=$1 [QSA,L]
RewriteRule ^member([0-9]+)\.html$ /profile.php?mode=viewprofile&u=$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]
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] |
Once uploaded, try activating internal mod rewrite in mx Sitemaps ACP, and test links, they should be title injected
Your auto link code looks ok, you still need to edit the template though to show up links, look at the install.
For the image size look in the mod's template files, and look for TOPIC_FOLDER_IMG, it's the topic image, and LAST_FORUM_IMG_ALT, it's the forum image, so that you'll find the correct image tag where the image size is set ( height & width ) and adjust the values to your images size.
I noticed that you did not lock the www prefix in you URL, and it's better to do it since you allow both on your server.
++ |
_________________ 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 |
|
 |
linus PR0


Joined: 02 Jul 2006 Posts: 56
|
Posted: Mon Jul 03, 2006 8:07 pm Post subject: Re: Migrating webmedic - phpBB SEO advanced mod Rewrite |
|
|
| Code: | RewriteEngine on
RewriteCond %{HTTP_HOST} ^forum-linux-italia\.com$ [NC]
RewriteRule ^(.*) http://www.forum-linux-italia.com/$1 [QSA,L,R=301]
Options +FollowSymlinks
RewriteEngine on
RewriteBase /
RewriteRule ^.+/([^/]+\.html)$ /index.php [R=301,L]
RewriteRule ^.+-vc([0-9]+)\.html$ /index.php?c=$1 [QSA,L]
RewriteRule ^.+-vf([0-9]+)-([0-9]+)\.html$ /viewforum.php?f=$1&start=$2 [QSA,L]
RewriteRule ^.+-vf([0-9]+)\.html$ /viewforum.php?f=$1 [QSA,L]
RewriteRule ^.+-vt([0-9]+)-([0-9]+)\.html$ /viewtopic.php?t=$1&start=$2 [QSA,L]
RewriteRule ^.+-vt([0-9]+)\.html$ /viewtopic.php?t=$1 [QSA,L]
RewriteRule ^post([0-9]+)\.html$ /viewtopic.php?p=$1 [QSA,L]
RewriteRule ^member([0-9]+)\.html$ /profile.php?mode=viewprofile&u=$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]
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] |
http://www.forum-linux-italia.com/forum-map.html ... it does not work
What tasks you? |
_________________ ... |
|
| Back to top |
|
 |
dcz Administrateur - Site Admin

Joined: 28 Apr 2006 Posts: 15131
|
Posted: Mon Jul 03, 2006 8:17 pm Post subject: Re: Migrating webmedic - phpBB SEO advanced mod Rewrite |
|
|
Fro the forum map, try replacing this one :
| Code: | | RewriteRule ^forum-m\ap\.html$ /sitemaps.php?fim [QSA,L] |
with :
| Code: | | RewriteRule ^forum-map\.html$ /sitemaps.php?fim [QSA,L] |
Then, it seems all other links are working. One thing though, It seems you are not using the default files for mx Sitemaps, http://www.forum-linux-italia.com/linux-e-kernel-fmp2.html
we should not see this pagination -http://www.forum-linux-italia.com/guida-completa-installiamo-o-aggiorniamo-il-kernel-vt60.html?start=10
It look like you used the webmedic premoded files.
Put back the default files
You still did not edited you overall_footer.tpl or did not implement the codes changes in page_tail.php for the auto link add on, look here.
You're close  |
_________________ 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 |
|
 |
linus PR0


Joined: 02 Jul 2006 Posts: 56
|
Posted: Mon Jul 03, 2006 8:24 pm Post subject: Re: Migrating webmedic - phpBB SEO advanced mod Rewrite |
|
|
GOOD
CODE :
| Code: | 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]
|
My NEW_CODE :
| Code: | RewriteRule ^sitemaps\.html$ /sitemaps.php [QSA,L]
RewriteRule ^forum-map\.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] |
OK!!!  |
_________________ ...
Last edited by linus on Mon Jul 03, 2006 8:56 pm; edited 1 time in total |
|
| Back to top |
|
 |
linus PR0


Joined: 02 Jul 2006 Posts: 56
|
Posted: Mon Jul 03, 2006 8:43 pm Post subject: Re: Migrating webmedic - phpBB SEO advanced mod Rewrite |
|
|
| Quote: | Then, it seems all other links are working. One thing though, It seems you are not using the default files for mx Sitemaps, http://www.forum-linux-italia.com/linux-e-kernel-fmp2.html
we should not see this pagination -http://www.forum-linux-italia.com/guida-completa-installiamo-o-aggior niamo-il-kernel-vt60.html?start=10
It look like you used the webmedic premoded files.
Put back the default files |
mx_Sitemaps_V_0.0.1 ""file default" --> my root???
Thank's.
Update index  |
_________________ ... |
|
| Back to top |
|
 |
dcz Administrateur - Site Admin

Joined: 28 Apr 2006 Posts: 15131
|
Posted: Mon Jul 03, 2006 8:56 pm Post subject: Re: Migrating webmedic - phpBB SEO advanced mod Rewrite |
|
|
Good
The auto link works perfect.
Sitemap links perfect
the link I am talking about it the second page links of "Guida Completa : Installiamo o Aggiorniamo il Kernel!" here http://www.forum-linux-italia.com/linux-e-kernel-fmp2.html
So just re upload all the mx sitemaps files, the one supposed to go to the phpbb includes/ folder ( phpbb/root/includes/*.* => root/includes/*.*).
And it should be fixed.
I forgot to tell you that you should get rid of sitemap.php in you Google sitemaps account, keeping it together with sitemaps.xml is useless since they are the exact same
And in the templates :
| Quote: | | <img style="padding:0px; margin:-5px;" src="{lasttopic.forum.topics.LAST_TOPIC_FOLDER_IMG}" border="0" width="19" height="18" alt="{lasttopic.forum.topics.LAST_TOPIC_TITLE}" title="{lasttopic.forum.topics.LAST_TOPIC_ALT_IMG}"/> |
and :
| Quote: | | <img style="padding:0px; margin:-7px;" src="{catrow.forumrow.FORUM_FOLDER_IMG}" border="0" height="25" width="46" alt="{catrow.forumrow.FORUM_NAME}" title="{catrow.forumrow.L_FORUM_FOLDER_ALT}"/> |
Are the kind of pattern o search for. Sorry, but it's difficult to point them all as they are quite many, but, they all look the same, and the code change are very easy
++ |
_________________ 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 |
|
 |
linus PR0


Joined: 02 Jul 2006 Posts: 56
|
Posted: Mon Jul 03, 2006 9:17 pm Post subject: Re: Migrating webmedic - phpBB SEO advanced mod Rewrite |
|
|
Thank's.
1 Delete sitemap.php --> account google
2 Images OK
3 Copy includes/*.* --> (web)/includes/*.*
they are convinced that I must study English
All ok?
--------->
I have not understood the history of the link well but I hope that the problem has been resolved. you six state much kind one
http://www.forum-linux-italia.com/sitemaps.html  |
_________________ ... |
|
| Back to top |
|
 |
dcz Administrateur - Site Admin

Joined: 28 Apr 2006 Posts: 15131
|
Posted: Mon Jul 03, 2006 9:32 pm Post subject: Re: Migrating webmedic - phpBB SEO advanced mod Rewrite |
|
|
Every thing is perfect and I think I have found the pagination problem, it's due to this damned wrapping function that's adding spaces in lines of code, erf.
So the code I posted for happend_sid has an extra space (" ") in it, which causes us trouble.
At least this line was affected :
| Code: | $urlin = array( "'(?)viewtopic.".$phpEx."\?t=([0-9]+)".$amp."start=([0-9]+)(".$amp.") {0,1}'",
"'(?)viewtopic.".$phpEx."\?t=([0-9]+)(".$amp."){0,1}'",
); |
(".$amp.") {0,1} should be (".$amp."){0,1}
As a turn around you can quote this post and copy the code from the posting window, so that it will be clean.
For the link thing if you are talking about the last part of the mod rewrite install, yes, there is some code changes suggested to link back to this site, and actually the licence is asking for at least a link, which is done here using mx Sitemaps so, it's kind of ok, but do not hesitate to support this project, we all want this project to last and go further for our great and shared satisfaction
You will have SEO results.
Today is 2 pages listed and one cached in Google, please come tell us what happened in a month
The one convinced you should learn English should come and chat with us here
++ |
_________________ 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 |
|
 |
linus PR0


Joined: 02 Jul 2006 Posts: 56
|
Posted: Mon Jul 03, 2006 10:16 pm Post subject: Re: Migrating webmedic - phpBB SEO advanced mod Rewrite |
|
|
| Quote: | | (".$amp.") {0,1} should be (".$amp."){0,1} |
OK
Task that to my next vacations I will go in England
Thank's.  |
_________________ ... |
|
| Back to top |
|
 |
dcz Administrateur - Site Admin

Joined: 28 Apr 2006 Posts: 15131
|
|
| Back to top |
|
 |
linus PR0


Joined: 02 Jul 2006 Posts: 56
|
Posted: Tue Jul 04, 2006 6:48 am Post subject: Re: Migrating webmedic - phpBB SEO advanced mod Rewrite |
|
|

Thank's.  |
_________________ ... |
|
| Back to top |
|
 |
linus PR0


Joined: 02 Jul 2006 Posts: 56
|
Posted: Tue Jul 04, 2006 5:19 pm Post subject: Re: Migrating webmedic - phpBB SEO advanced mod Rewrite |
|
|
last modifications
-------------one
--------------two
--->
one : it is possible that it becomes :
Forum Map - Site Map
--->
two : it is possible to remove the first one Forum Linux Italia or to put a space?
Thank's...aesthetic.  |
_________________ ... |
|
| Back to top |
|
 |
dcz Administrateur - Site Admin

Joined: 28 Apr 2006 Posts: 15131
|
Posted: Tue Jul 04, 2006 7:21 pm Post subject: Re: Migrating webmedic - phpBB SEO advanced mod Rewrite |
|
|
| linus wrote: |
one : it is possible that it becomes :
Forum Map - Site Map
|
For this you just need to open pag_tail.php
And search for :
[url]$mx_sitemap_link .= '<br />[/url]
The first if is for when there are three links outputted (index, forum map, and this forum map while browsing a forum) so the last piece of code appears two times.
In the else, it appears only one.
So you can change them individually (three occurrence total) to:
| Code: | | $mx_sitemap_link .= ' - |
To have all links on the same line. Or play a bit more with the links from here.
| linus wrote: |
two : it is possible to remove the first one Forum Linux Italia or to put a space?
Thank's...aesthetic.  |
Well, this is defined as the $board_config['sitename'], so it must either be what you entered there in ACP, or some mess up in the templates.
But I think it's first choice.
++ |
_________________ 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 |
|
 |
linus PR0


Joined: 02 Jul 2006 Posts: 56
|
Posted: Tue Jul 04, 2006 7:40 pm Post subject: Re: Migrating webmedic - phpBB SEO advanced mod Rewrite |
|
|
heart thanks, now I must only wait for a month  |
_________________ ... |
|
| Back to top |
|
 |
|
|
| Navigation |
Similar Topics |
|
|
|
|
|
|
|