Hello,
I am willing to pay for support on this
the site I'm working on: https://www.sunjo.ca
The links at the top and the links on the left, refer back to http://
but the catalog seems to work fine referring links to https
I have changed my configure.php file
define('HTTPS_SERVER', 'https://www.sunjo.ca'); // eg, https://localhost
define('ENABLE_SSL_CATALOG', 'true');
define('ENABLE_SSL_ADMIN', 'true');
define('DIR_WS_HTTPS_ADMIN', '/admin/');
define('DIR_WS_HTTPS_CATALOG', '/');
//I also tried plugging this in:
define('ENABLE_SSL', 'true');
I've been receiving this error in my ssl_error log
[Thu Nov 16 11:48:18 2006] [error] [client 69.196.213.198] File does not exist: /home/sunjo/sunjo.ca/shop/ie_css_fix, referer: https://www.sunjo.ca/
I get it with box IE and Firefox....
I'm completely lost for some reason my links are getting written as http://
Here is my Virtualhost directive in my httpd.conf in case this helps:
<VirtualHost 64.37.124.150:443>
DocumentRoot /home/sunjo/sunjo.ca/shop
ServerName www.sunjo.ca
ServerAdmin [email protected]
ErrorLog /etc/httpd/logs/ssl_error_log
TransferLog /etc/httpd/logs/ssl_access_log
SSLEngine On
SSLCertificateFile /home/sunjo/ssl/sunjo.crt
SSLCertificateKeyFile /home/sunjo/ssl/sunjo.key
SSLSessionCacheTimeout 300
SetEnvIf User-Agent ".*MSIE.*" nokeepalive ssl-unclean-shutdown downgrade-1.0 force-response-1.0
</VirtualHost>
Here is my .htaccess:
Options +FollowSymLinks
RewriteEngine On
# From Ultimate SEO URLs
RewriteRule /shop/(.*)-p-(.*).html$ index\.php?main_page=product_info&products_id=$2&%{QUERY_STRING} [L]
RewriteRule /shop/(.*)-c-(.*).html$ index\.php?main_page=index&cPath=$2&%{QUERY_STRING} [L]
RewriteRule /shop/(.*)-m-([0-9]+).html$ index\.php?main_page=index&manufacturers_id=$2&%{QUERY_STRING} [L]
RewriteRule /shop/(.*)-pi-([0-9]+).html$ index\.php?main_page=popup_image&pID=$2&%{QUERY_STRING} [L]
RewriteRule /shop/(.*)-pr-([0-9]+).html$ index\.php?main_page=product_reviews&products_id=$2&%{QUERY_STRING} [L]
RewriteRule /shop/(.*)-pri-([0-9]+).html$ index\.php?main_page=product_reviews_info&products_id=$2&%{QUERY_STRING} [L]
# All other pages
# Don't rewrite real files or directories
RewriteCond %{REQUEST_FILENAME} !-f [NC]
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule /shop/(.*).html$ /shop/index\.php?main_page=$1&%{QUERY_STRING} [L]



