bonked Posted January 28, 2009 Share Posted January 28, 2009 In WHMCS, i used the .htaccess to force all of the pages to use SSL. For some reason, when i click on the information bar (which displays SSL information), it says the page is partially encrypted. Therefore, it lacks the expensive green bar I paid for. I added the following to my .htaccess code in my WHMCS directory: RewriteEngine on Options +FollowSymlinks #Rewrite the URL for WHMCS to always use https except for the whmcs/dl.php file RewriteCond %{REQUEST_URI} !^dl.php [NC] RewriteCond %{REQUEST_URI} ^ [NC] RewriteCond %{SERVER_PORT} !^443$ RewriteRule ^(.*)$ https://cp.valencehosting.com/$1 [R=301,L] #Rewrite the URL for WHMCS dl area to always use http RewriteCond %{REQUEST_URI} ^/whmcs/dl.php [NC] RewriteCond %{SERVER_PORT} !^80$ RewriteRule ^(.*)$ http://cp.valencehosting.com/$1 [R=301,L] ---------------------- Does anyone have any idea what I should do to fix this? 0 Quote Link to comment Share on other sites More sharing options...
bear Posted January 28, 2009 Share Posted January 28, 2009 Nearly every call in that page is using http, not https. Here's one: SRC="http : //valencehosting.com/js/nav.js" Rewriting the URL brings the user to "https", but doesn't affect image and script calls on the page. 0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.