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

sinmao’s picture

Ok, 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.