Active
Project:
Boost
Version:
6.x-1.x-dev
Component:
Miscellaneous
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
14 May 2011 at 09:42 UTC
Updated:
19 May 2011 at 21:31 UTC
Hi,
I have a drigg site where the url is "/tag/avatar%2B2" for a term "avatar 2". I unchecked the "Only allow ASCII characters in path" option. I've noticed that a 2 cached files were created in the cache directory:
- /tag/avatar%202_.html
- /tag/avatar 2_.html
So I thought it's working, but when view the source of the page, I don't see boost comment at the bottom of the page.
So now my question is whether or not it's actually working. If not, how can I make that url work with boost. Thanks.
Comments
Comment #1
sinmao commentedOk, looks like it doesn't work.
I found the problem though. The code for Drigg uses urlencode, while the code for Boost uses rawurlencode, so the encoding for spaces is different, making the two url's not match. Once I converted the Drigg to use rawurlencode, the caching works.