http://xenforo.com/community: Force SSL / HTTPS

Status
Not open for further replies.
It's a hacky workaround at best, but I use dotjs to rewrite the links here to avoid getting logged out all the time while browsing with https.

Code:
$("a[href^='http://xenforo.com'").each(function() {
        $(this).attr('href', $(this).attr('href').replace('http:', 'https:'));
});
 
Slightly off topic, but I'd like XF to be able to support SSL where SSL is handled at the load balancer and SSL is indicated by X-Forwarded-Proto
 
did XenForo.com just introduce https ?

I could not automatically log-in since it seems the saved Password via browser-cookies does not differentiate the URL (without "s" and with "s").

I had to look up my saved PW in the Browser.
 
Yes, but does that just mean pages total on the web? It wouldn't surprise me to find that only around 1% have an SSL certificate...
Not sure what are you asking. I was referring to the fact that having SSL helps your rank by 1% or less. Websites that have SSL certificate are much less than 1%
 
Not sure what are you asking. I was referring to the fact that having SSL helps your rank by 1% or less. Websites that have SSL certificate are much less than 1%

I was wondering if they meant rank or percentage of pages it helps.
 
Status
Not open for further replies.
Top Bottom