tandyuk Posted August 2, 2012 Share Posted August 2, 2012 We would like to use https:// globally for our entire whmcs install. Something in whmcs (5.0.3) is causing https requests for index.php to be directed to http. This results in our htaccess redirecting back to https, and causes an infinite loop. How do I force every single page in whmcs to use https, and NEVER redirect to http:// 0 Quote Link to comment Share on other sites More sharing options...
merlinpa1969 Posted August 2, 2012 Share Posted August 2, 2012 in the configuration use https:// in both the url and ssl url settings, just wondering why you would want your entire site to be secure, 0 Quote Link to comment Share on other sites More sharing options...
paperweight Posted August 11, 2012 Share Posted August 11, 2012 When I enter my SSL URL in the "WHMCS SSL System URL" textfield and click "Save Canges", the URL disappears after the page is submitted. Any idea why? 0 Quote Link to comment Share on other sites More sharing options...
jclarke Posted August 14, 2012 Share Posted August 14, 2012 I believe WHMCS will remove the WHMCS SSL System URL if it matches what you enter in WHMCS System URL since it would be redundant. So if you want WHMCS to use SSL all the time, just enter your ssl url into the WHMCS System URL field. 0 Quote Link to comment Share on other sites More sharing options...
Ablius Posted August 16, 2012 Share Posted August 16, 2012 edit your apache.conf example: <VirtualHost xxxxxxxxx:80> ServerAdmin webmaster@mysite.com DocumentRoot /home/mysite.com/htdocs ServerName mysite.com ServerAlias your server alias RewriteEngine On RewriteCond %{SERVER_PORT} 80 RewriteRule ^(.*)$ https://www.mysite.com$1 [R,L] </VirtualHost> 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.