Quote Originally Posted by Craft Magick View Post
Yes, I do use a shared SSL between my domains. The SSL path for my store is: https://www.zencrystals.com/craftmagick

but the regular path is a top-level domain:
http://www.craftmagick.com
I decided to give two rewrite rules, depending on the port used for the request (80 for a normal HTTP request, 443 for an SSL one). Just replace this line:
Code:
RewriteRule ^(.*) index.php?/$1 [E=VAR1:$1,QSA,L]
by:
Code:
RewriteCond %{SERVER_PORT} ^80
RewriteRule ^(.*) index.php?/$1 [E=VAR1:$1,QSA,L]

RewriteCond %{SERVER_PORT} ^443
RewriteRule ^(.*) craftmagick/index.php?/$1 [E=VAR1:$1,QSA,L]
It worked for me. Unfortunately I now have to wait for a Paypal IPN fix.