Enable Ssl Frontend Skin Error

My site is normal but when i enable SSL frontend skin error (please view image), Admin still worked and i also checked SSL working them same both link http & https, any one help me fix skin, thank you very much!

Try clearing cache.

Try to delete the var/cache directory. If it does not help, possibly SSL is not installed correctly

I installed cs-cart v2.1.5 with default red skin and already deleted var/cache but still error. My admin portal is normal :(

I would guess that you have some .htaccess or other limiting factor that is not allowing your css files (note that in V2 they are NOT consolidated to single file) are not able to be read via https.

This is my .htaccess please check help me @tbirnseth

order allow,deny
allow from all

# Web Optimizer options

RewriteEngine On
RewriteBase /
RewriteRule ^(.*)\.wo[0-9]+\.(js|php)$ $1.$2

# Web Optimizer end
DirectoryIndex index.html index.php


RewriteEngine on

# Some hostings require RewriteBase to be uncommented
# Example:
# Your store url is http://www.yourcompany.com/store/cart
# So "RewriteBase" should be:
# RewriteBase /store/cart
RewriteBase /shop


RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_URI} !html
RewriteCond %{REQUEST_URI} !xml
RewriteCond %{REQUEST_URI} !ico
RewriteCond %{REQUEST_URI} !php
RewriteCond %{REQUEST_URI} !pdf
RewriteCond %{REQUEST_URI} !png
RewriteCond %{REQUEST_URI} !xls
RewriteCond %{REQUEST_URI} !doc
RewriteCond %{REQUEST_URI} !jpg
RewriteCond %{REQUEST_URI} !(.*)/$
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ http://newsteptech.com/$1/[L,R=301]

RewriteCond %{REQUEST_FILENAME} !\.(png|gif|ico|swf|jpe?g|js|css)$
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php?sef_rewrite=1 [L,QSA]

RewriteCond %{REQUEST_FILENAME} .*\/catalog\/.*
RewriteCond %{REQUEST_FILENAME} -d
RewriteCond %{REQUEST_FILENAME}/index.html !-f
RewriteRule . index.php?sef_rewrite=1 [L,QSA]

RewriteCond %{HTTP_HOST} ^www.(.*) [NC]
RewriteRule ^(.*)$ http://%1/$1 [R=301,NC,L]


# redirect 301 /lien-he-1.html http://newsteptech.com/shop/lien-he.html
# Use PHP53 as default
AddHandler application/x-httpd-php53 .php

suPHP_ConfigPath /opt/php53/lib

I'd get rid of all your rewritecond statements that have things like !html and the associated rewrite rule. Not sure what you're trying to accomplish there.

Maybe use something like:

RewriteCond %{QUERY_STRING} ^(.*)dispatch=_no_page(.*)$
RewriteRule ^(.*)$ http://newsteptech.com[L,R=301] 

Might have to play with it...

Not working :( :(

I'd get rid of all your rewritecond statements that have things like !html and the associated rewrite rule. Not sure what you're trying to accomplish there.

Maybe use something like:

RewriteCond %{QUERY_STRING} ^(.*)dispatch=_no_page(.*)$
RewriteRule ^(.*)$ http://newsteptech.com[L,R=301] 

Might have to play with it...

Anyone can help me :(

I really don't understand all of the rewrites myself unless it has something to do with your main domain splitting to 3 different sites.?

I would probably try changing all the http to https.

I install my shop on subfolder http://mydomain.com/shop/and only my shop frontend error when run on https.