Hi @edzz83
I can’t really help much with figuring out what cookie to use or the steps you need to take (I’ll leave that for @stanleylitespeed), but I can explain a little bit of background that might make it easier to understand how it should work.
From my understanding, this is what is happening:
1) Booster (or woo) produce a GEOIP cookie.
2) We need to get htaccess to VARY the cookie produced by Booster/Woo using the Apache GEOIP module we have installed.
Basically. We believe that in order to determine which currency to display on your site, Booster is setting a particular cookie. And you need to tell LiteSpeed in .htaccess
that you want to vary on that cookie.
When you tell LiteSpeed to “vary” on a cookie, what you are really doing is instructing LiteSpeed to create a separate cached copy of the page for every different value of the cookie.
So, if a user visits your site and the cookie indicates that he should use US Dollars, then LiteSpeed will look for a cached copy of the page that also uses US Dollars. If one doesn’t exist, it will be created, and it will be served to the next USD customer to visit the site. Another visitor might use Australian Dollars, in which case, LiteSpeed will look for a cached copy of the page using AUD, and so on.
If there are ten visitors to your home page, and they use six different currencies among them, then there will be six different copies of your home page cached, and it’s all controlled by the value of the cookie.
I hope this helps explain what the ultimate goal should be, and how it works. Now I’ll leave it to Stanley to help you get there.