datawebcorp Posted January 18, 2008 Share Posted January 18, 2008 When I go to the admin section of my WHMCS install, I thought it used to automatically make the connection secure (https). Am I wrong? It seems now when I go to the admin section and login I must be sure to enter the https. 0 Quote Link to comment Share on other sites More sharing options...
datawebcorp Posted January 18, 2008 Author Share Posted January 18, 2008 OK, now I'm noticing I cannot even login securely at all. If I go the https://..., it says my user ID and password are incorrect. If I use http://, it works fine!? 0 Quote Link to comment Share on other sites More sharing options...
Brett Posted January 19, 2008 Share Posted January 19, 2008 In your admin folder create a file called .htaccess In it put RewriteEngine On RewriteCond %{HTTPS} off RewriteCond %{REQUEST_URI} !^clientsadd.php$ RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} This will always make the URL redirect to the correct file with the https. As for why it is not working with the https but it is for http, I would submit a ticket to support and see what they had to say. Perhaps someone else has run into this before? 0 Quote Link to comment Share on other sites More sharing options...
RPS Posted January 19, 2008 Share Posted January 19, 2008 If you remove the https entry inside the General Config area, then add: RewriteEngine onRewriteCond %{REQUEST_URI} ^/whmcs/ [NC] RewriteCond %{SERVER_PORT} !^443$ RewriteRule ^(.*)$ https://www.domain.com/$1 [R=301,L] to your .htaccess, it will make all access to whmcs secure via https (client and admin area). Currently, the login system is not always over https. Clients will also be over https for announcements and knowledge base articles. Even though this may not be needed, it still makes sure that your clients are always on via https. 0 Quote Link to comment Share on other sites More sharing options...
bendobson Posted January 21, 2008 Share Posted January 21, 2008 Just saw this and helped me alot!! Thanks for your info 0 Quote Link to comment Share on other sites More sharing options...
merlinpa1969 Posted December 5, 2008 Share Posted December 5, 2008 Question about making entire site ssl, has anyone thought of the implications this might have on your page indexing and ranking? 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.