I do not replace any characters… replacing those characters works fine for those characters, but causes problems with other languages and since browsers (i.e. Safari) are starting to support utf8 characters in the url, I like to leave it utf8 compatiblehelmi wrote:Hi,
what does it mean when you say it works with utf-8 characters? What does it do to special characters?
Example:
ä -> should be ae not just a
ü -> should be ue not just u
How about other characters?
Any update on this?abcEzy wrote:Hmm, I guess the answer is no.
From what I have read ALL of the mods todate will not work with the RC7 release.
Handyman, will you be making the mod for the new version of PHPBB3?
If so, could you make it so the spaces between words and any odd characters are replaced with a hyphen please. Google is unable to differentiate words like:
howdotosearchengineoptimzationforonpageandoffpage
It'll only show the title and the description text and not the text in the url itself.
Thanks.
E
yeah… would be nice.splitice wrote:A release for RC7 would be nice.
Code: Select all
find:
'U_MARK_FORUMS' => ($user->data['is_registered'] || $config['load_anon_lastread']) ? append_sid("{$phpbb_root_path}index.$phpEx", 'mark=forums') : '',
relaced with
'U_MARK_FORUMS' => ($user->data['is_registered'] || $config['load_anon_lastread']) ? format_url('index', 'i' . $root_data['forum_id'], 0, "mark=forums") : '',
Code: Select all
find:
case 'f':
if ($append)
{
return append_seo_sid($phpbb_root_path . $name . '-' . $id . (($start) ? "s$start" : '') . $ext, $xtra_params);
}
break;
add after:
case 'i':
if ($append)
{
return append_seo_sid($phpbb_root_path . $name . '-' . $id . (($start) ? "s$start" : '') . $ext, $xtra_params);
}
break;
Code: Select all
Rewriterule ^(.+)-i([0-9]*).html-(.+)$ /forum/index.php?$3
I'm not going to change them as it caused some issues in a previous version with other languages.Libor wrote:Works fine,
but what i must change, if i want czech characters as ěščřž... change to escrz... (these characters looks bad in browsers, for example ř = %C5%99).
Thanks
And do you know how to change them? I need only change few characters.Handyman` wrote:I'm not going to change them as it caused some issues in a previous version with other languages.
Also, browsers are starting to support utf8 (Safari, Opera, FireFox3)
So does it now work on RC7? Or did you need to change something to get it to work?mre03 wrote:got it to work so far on RC7, been wanting this mod for a while, thanks for updating it and working on making this mod, very much appreciated for your work and efforts sir!