osCommerce redirect error when SSL enabled and shop directory is different to NONSSL directory
I found the solution to this issue from a thread on the forums. It means making a correction to the tep_redirect function in functions/general.php. You need to add the DIR_WS_HTTPS_CATALOG constant into the url transformation part… Before: // Redirect to another page or site function tep_redirect($url) { $url = str_replace(‘&’, ‘&’, $url); //Ampersand fix if [...]
