I have this patch #182687: Cache pages with query strings working. Faceted Search's URL structure is like this
../results/taxonomy:48.5,18,35

With the patch the saved files look like this in the cached dir
taxonomy_48.5,18,35.html

What do I need to do to make it serve the cached page?
The block Shows it cached, but looking at the source when not logged in, it doesn't have the boost comment at the bottom.

Comments

alex s’s picture

Try to replace the string:

$path = preg_replace('@[^/a-z0-9_\-&=,\.]@i', '_', $path);

with

$path = preg_replace('@[^/a-z0-9_\-&=,\.:]@i', '_', $path);

in boost.module

mikeytown2’s picture

Status: Active » Reviewed & tested by the community

Sweet it works! Thanks for your help!

In case anyone else is following, it's on line 562.

mikeytown2’s picture

Title: Support Faceted Search - .htaccess issue » Support Faceted Search - RegExp Issue With :
alex s’s picture

Ok, I'll add this to the querystring patch

mikeytown2’s picture

Status: Reviewed & tested by the community » Fixed

committed to 6.x dev

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.