Somehow the / are getting converted to %2f (which is the encoded value for it).
For emergency functionality, just keep utfpages: false and the problem
should clear up, I think...
If anyone cares to try a fix, consider changing engine line 58 or so from
if (isset($cleanURL)) $pageLink = str_replace('/', '.', $pageLink);
to
if (isset($cleanURL)) $pageLink = str_replace(Array('/', '%2f'), '.',
$pageLink);
and see if that doesn't clear things up.
Cheers,
Dan
P.S. I'm having a hard time getting cleanUrls to work at all. So can't
do much good testing. The .htaccess files always mess me up.
On Tue, Mar 10, 2009 at 3:24 PM, Martin <[email protected]> wrote:
>
> You are right. I have too many installations to mess around :-(
>
> Greetings, Martin
>
> >
>
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"BoltWire" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/boltwire?hl=en
-~----------~----~----~----~------~----~------~--~---