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


Joined: 11 May 2006 Posts: 529 Location: IRAN
|
Posted: Thu May 11, 2006 3:35 pm Post subject: i need some mod |
|
|
i need some MOD for make phpbb more search engine friendly
i need some mod for rewrite URLs form php to html prefix
my language is persian and i can't use some rewrite mod that put title of topic
in the url because its not possible to put UTF-8 characters in url
its not supported by all browsers
i need a good rewrite mod for changing the URL to html
but i need to change the url forever ( i mean before login and after login)
some mod like able2know mod only change the URL for guests
and after you log in the URLs will come back to normal form
and i need a MOD for make google site map with rewrited URLs
and other mod if you think its neccesary
excuse for my poor english
thank you for your guide
 |
|
|
| Back to top |
|
 |
|
 |
dcz Administrateur - Site Admin

Joined: 28 Apr 2006 Posts: 14279
|
Posted: Fri May 12, 2006 8:41 am Post subject: Re: i need some mod |
|
|
First, welcome
Then, well, have your read this thread : http://boards.phpbb-seo.com/phpbb-forum/discussions-vt22.html ?
There are some details about the three different kinds of mod Rewrites and their main advantages.
They all rewrite URL for everybody (guets + logged) and they are all demonstarted here : http://phpbb2.phpbb-seo.net/
They are and will all be, as well as many other, compatible with the mods being dev here. So far, you can take advantage of the mx Google sitemap and the mx Sitemaps Systems.
Now, for the Persian language, several matters comes to my mind :
First, if UTF8 is for sure heavier to filter, it is very possible.
Then, we have to evaluate if it would be useful to change Persian UTF8 to Latin as far as being more search-able.
Cause I don't know if 1) bots will do the job to find out what could be the UTF8 equiv of a Latin char (like ã = a ? but for Persian) and 2) if people searching do mostly use Latin char-set even though they search for Persian content ?
This we'd have to think of.
Cause, if there is an interest to use Latin char Persian titles in url, then, if the advanced mod rewrite could be a bit of a server load with UTF8 (could still be possible, but should be tested prior to use live), the Mixed one could 1) let you decide for the search-able Latin char Persian keyword to put in your forum titles and 2) not to rewrite to many UTF8 links.
In the end, the Simple mod rewrite is as well a pretty good solution and, we can imagine, since you told me your where using the Google BB link enhancement mod at phpbb.com, to adapt it with no effort for you to keep the same url (which must already have been indexed) while 1) getting rid of pagination duplicates and 2) use a lot faster and lighter script than the Google BB link one. |
_________________ 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 |
|
 |
AmirAbbas phpBB SEO Team


Joined: 11 May 2006 Posts: 529 Location: IRAN
|
Posted: Fri May 12, 2006 11:22 am Post subject: Re: i need some mod |
|
|
at first:
thank you for your help
| Quote: | | Cause I don't know if 1) bots will do the job to find out what could be the UTF8 equiv of a Latin char (like ã = a ? but for Persian) and 2) if people searching do mostly use Latin char-set even though they search for Persian content ? |
i think it can make problem
i dont know
but if you want i can help (if i be able to help) you to work on this idea
but i preffer to use simple rewrite mod
which rewrite mod is the best (simple rewrite mod)
please give me a link
thank you again
 |
|
|
| Back to top |
|
 |
AmirAbbas phpBB SEO Team


Joined: 11 May 2006 Posts: 529 Location: IRAN
|
Posted: Fri May 12, 2006 11:40 am Post subject: Re: i need some mod |
|
|
and another question
is it possible to use both of this mod in a single forum
[RC2] mx Google Sitemaps
[DEV] mx SiteMaps Module V 0.0.1
are this 2 mod compatible with each other |
|
|
| Back to top |
|
 |
AmirAbbas phpBB SEO Team


Joined: 11 May 2006 Posts: 529 Location: IRAN
|
Posted: Fri May 12, 2006 12:57 pm Post subject: Re: i need some mod |
|
|
a new problem
i said that i've installed googlebb link mod
i found out that after installation of this mod
nobody can search in forum (in my language, persian with UTF-8 encoding)
how can i solve this problem
see this two pictures
as you can see
i searched my name if forum but see the status bar !!!!
and after i clicked on link i saw this page
this peoblem is a big problem that i had with webmedic rewrite mod
all the persian character with change to some code and number and the lenght of URL become very long
in this topic you spoke about 3 different rewrite mod
http://boards.phpbb-seo.com/phpbb-forum/discussions-vt22.html
i need simple rewrite mod
from where i can download a good rewrite mod
i searched in your forum but i couldn't the download link
i need your simple rewrite mod
is it possible for you to give me this mod ?
thanks |
|
|
| Back to top |
|
 |
dcz Administrateur - Site Admin

Joined: 28 Apr 2006 Posts: 14279
|
Posted: Fri May 12, 2006 2:36 pm Post subject: Re: i need some mod |
|
|
All right,
So first, your search problem comes from the phpbb highlights. It should be the same without rewrite mod. There could also be a fix for this at phpBB.com, have you tried to post about this there ?
Anyway, as you can see, I do not use highlights here, it's a bit less user-friendly (even though the good old CTRL+F will still do it ) but this way, user won't post duplicates links found while searching.
To get rid of those, just open search.php :
Find :
| Code: | $highlight_active = '';
$highlight_match = array();
for($j = 0; $j < count($split_search); $j++ )
{
$split_word = $split_search[$j];
if ( $split_word != 'and' && $split_word != 'or' && $split_word != 'not' )
{
$highlight_match[] = '#\b(' . str_replace("*", "([\w]+)?", $split_word) . ')\b#is';
$highlight_active .= " " . $split_word;
for ($k = 0; $k < count($synonym_array); $k++)
{
list($replace_synonym, $match_synonym) = split(' ', trim(strtolower($synonym_array[$k])));
if ( $replace_synonym == $split_word )
{
$highlight_match[] = '#\b(' . str_replace("*", "([\w]+)?", $replace_synonym) . ')\b#is';
$highlight_active .= ' ' . $match_synonym;
}
}
}
}
$highlight_active = urlencode(trim($highlight_active)); |
And comment it, then find :
| Code: | $topic_url = append_sid("viewtopic.$phpEx?" . POST_TOPIC_URL . '=' . $searchset[$i]['topic_id'] . "&highlight=$highlight_active");
$post_url = append_sid("viewtopic.$phpEx?" . POST_POST_URL . '=' . $searchset[$i]['post_id'] . "&highlight=$highlight_active") . '#' . $searchset[$i]['post_id']; |
Replace with :
| Code: | $topic_url = append_sid("viewtopic.$phpEx?" . POST_TOPIC_URL . '=' . $searchset[$i]['topic_id']);
$post_url = append_sid("viewtopic.$phpEx?" . POST_POST_URL . '=' . $searchset[$i]['post_id']) . '#' . $searchset[$i]['post_id']; |
And no more highlights
Then, yes all mod here are compatible with each others. mx Google sitemap is meant to help the Google Bot to find links to topics, mx Sitemaps is a human sitemap, useful for both bots and human to find their way throughout your content.
For the DL link, one question : If you want to use it on the site that was using the Google BB link enhancement, then, I have to adapt it a bit before, so please tell this to me and I'll send you a dl link for it.
++ |
_________________ 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 |
|
 |
AmirAbbas phpBB SEO Team


Joined: 11 May 2006 Posts: 529 Location: IRAN
|
Posted: Fri May 12, 2006 3:53 pm Post subject: Re: i need some mod |
|
|
| Quote: | | For the DL link, one question : If you want to use it on the site that was using the Google BB link enhancement, then, I have to adapt it a bit before, so please tell this to me and I'll send you a dl link for it. |
i want install your mod on a new forum
i want to install phpbb on my new site with your rewrite mod
at this time i'm testing good mod on localhost.
thank you  |
|
|
| Back to top |
|
 |
AmirAbbas phpBB SEO Team


Joined: 11 May 2006 Posts: 529 Location: IRAN
|
Posted: Sun May 28, 2006 4:56 am Post subject: Re: i need some mod |
|
|
i found a very useful mod
BBCodes & smilies enhancement 1.2.2a
http://www.phpbb.com/phpBB/viewtopic.php?t=175999
at this time its impossible to add smilies and bbcodes in middle of post
if you put your pointer at the end of a line in middle of text and select
a smilies, the smilies will add to end of the text not in the selected place
this problem is exist for bbcodes
another thing is you can't select a font size two time
or when you select a text and use a bbcode to wrap that part of text
after click on bbcode button, page will jump up to first line
with this mod you can solve all of this problems
another mod that i saw in thif forum is that
the text field is resizable in posting_body page
is very useful for long post
whats the name of this mod ?
another mod is your forum related topic mod
i had a related topic mod with name
Related topics 0.1.2
Author: Freakin' Booty ;-P
Website: http://www.freakingbooty.tk
but this mode was not accurate
i think your installed mod is completely different
this post is not related to SEO
i thought that is not important enough for making a new post |
_________________ چهار گوش - طراحی وب - مجله طراحی وب |
|
| Back to top |
|
 |
dcz Administrateur - Site Admin

Joined: 28 Apr 2006 Posts: 14279
|
Posted: Sun May 28, 2006 9:43 am Post subject: Re: i need some mod |
|
|
hehe, no problem, running a friendly and easy to use web site is some how Optimization
The re-sizable input txet field is really a great mod, actually, I don't understand such device isn't part of phpBB itself but. Once you'll try it you'll love it. Installed with no efforts
By the way another markus_petrux's great addition : Dynamic TextArea Resizer
The BBcode enhancement you are talking about seems great, even though the dynamic text area resizer do already help a lot to play with BBcode, no more scroll bar, no more "where did I put this BBcode" in long post
I love markus_petrux's solution because it almost does not change anything to phpBB
++ |
_________________ 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 |
|
 |
AmirAbbas phpBB SEO Team


Joined: 11 May 2006 Posts: 529 Location: IRAN
|
Posted: Sun May 28, 2006 9:50 am Post subject: Re: i need some mod |
|
|
thanks
excuse me
what about this part
| Quote: | another mod that i saw in thif forum is that
the text field is resizable in posting_body page
is very useful for long post
whats the name of this mod ?
another mod is your forum related topic mod
i had a related topic mod with name
Related topics 0.1.2
Author: Freakin' Booty ;-P
Website: http://www.freakingbooty.tk
but this mode was not accurate
i think your installed mod is completely different |
|
_________________ چهار گوش - طراحی وب - مجله طراحی وب |
|
| Back to top |
|
 |
dcz Administrateur - Site Admin

Joined: 28 Apr 2006 Posts: 14279
|
|
| Back to top |
|
 |
AmirAbbas phpBB SEO Team


Joined: 11 May 2006 Posts: 529 Location: IRAN
|
Posted: Sun May 28, 2006 10:42 am Post subject: Re: i need some mod |
|
|
| Quote: | | By the way another markus_petrux's great addition : Dynamic TextArea Resizer |
i installed this mod
but i don't why it doesn't work on my template
my template is aphrodite
it works on subsilver perfectly but it doesn't work on aphrodite
 |
_________________ چهار گوش - طراحی وب - مجله طراحی وب |
|
| Back to top |
|
 |
dcz Administrateur - Site Admin

Joined: 28 Apr 2006 Posts: 14279
|
|
| Back to top |
|
 |
AmirAbbas phpBB SEO Team


Joined: 11 May 2006 Posts: 529 Location: IRAN
|
Posted: Sun May 28, 2006 11:32 am Post subject: Re: i need some mod |
|
|
| dcz wrote: | You need to do the same changes as for subSilver in overall_header.php
You are missing in aphrodite templates files :
| Code: | <link rel="stylesheet" href="templates/subSilver/dyntar.css" type="text/css" />
<script type="text/javascript" src="templates/dyntar.js"></script> |
|
but i have this part of code in aphrodite overall_header.tpl file
this template has some strange behaviour
for example if you want to install attachment mod you must change some
special files
see this topic
http://www.phpbbstyles.com/viewtopic.php?t=4462
 |
_________________ چهار گوش - طراحی وب - مجله طراحی وب
Last edited by AmirAbbas on Sun May 28, 2006 11:57 am; edited 1 time in total |
|
| Back to top |
|
 |
AmirAbbas phpBB SEO Team


Joined: 11 May 2006 Posts: 529 Location: IRAN
|
Posted: Sun May 28, 2006 11:37 am Post subject: Re: i need some mod |
|
|
| dcz wrote: | Sorry I forgot to mention.
I use a modded version of this one Ähnliche Beiträge - Similar Topics
Basically, I just got rid of all info I disliked like the user info and such (heavy and SEO useless), try it a bit and I'll help you out
No modding to output rewritten URL with the phpBB seo Simple mod Rewrite  |
i have installed this MOD too
but i think this mod uses full text search
full trxt search is not supported for UTF-8 encoding at this time
http://bugs.mysql.com/bug.php?id=5141 |
_________________ چهار گوش - طراحی وب - مجله طراحی وب
Last edited by AmirAbbas on Sun May 28, 2006 11:58 am; edited 1 time in total |
|
| Back to top |
|
 |
|
|