We have a website installed in a subfolder and using mod_rewrite to avoid having the /subfolder in the URL as described on this page
www.jayway.com/2009/01/31/how-to-get-you...y-to-work-at-onecom/
The problem is that in this particular hosting configuration the function hikashop_currentURL() returns values starting with /subfolder and therefore all related functionalities do not work such as Pagination, Currency switch, etc...
We have done a quick fix in the file administrator/components/com_hikashop/helpers/helper.php
At the end of the function hikashop_currentURL($checkInRequest='',$safe=true) add the 1 line below by replacing /subfolder with your actual subfolder name
# @@@@@ BEGIN - QUICKFIX
if (strpos($result,"/subfolder") != false) $result = str_replace("/subfolder", "", $result);
# @@@@@ END - QUICKFIX
if($safe){
$result = str_replace(array('"',"'",'<','>',';'),array('%22','%27','%3C','%3E','%3B'),$result);
}
It would be more elegant if the /subfolder could be a parameter in the System / Configuration screen.
-Max