nayenezgani
Jimmy Neighbour
Why isn't this site running an SSL connection? There's plenty of free options out there and some basic encryption wouldn't hurt.
Mainly because it messed with the caching of all the static stuff and I couldn't be bothered to work it out.Why isn't this site running an SSL connection? There's plenty of free options out there and some basic encryption wouldn't hurt.
Caching issues solved - you should be able to run on SSL now.Why isn't this site running an SSL connection? There's plenty of free options out there and some basic encryption wouldn't hurt.
Caching issues solved - you should be able to run on SSL now.
I'm tempted to enforce SSL - any webmonkeys know if that can cause problems?
What happens if someone embeds an http image?Nice one! Google should give you a ranking boost for that.
Forcing SSL shouldn't cause any issues, as long as your server rewrites are setup correctly and you're not loading mixed content, e.g loading stuff over http when you're forcing https. Should be easy to debug.
What happens if someone embeds an http image?
Got it, thanks.Looks like XenForo will handle it for you!
It’s important for HTTPS site to load HTTPS content, otherwise you’ll get “Mixed Content” warning.
Luckily Xenforo has a Proxy Images feature which will scrap hotlink (embedded) images and save them on your local server.
Go to ACP > Options > Messages > Activate Proxy Images
*celebration dance*
You might want to give this a read over too: http://cmsdaily.com/how-to-migrate-xenforo-forum-from-http-to-https/
Voila! Not sure if that is what did the trick but who cares, my connection to GG is now secure.Caching issues solved - you should be able to run on SSL now.
I'm tempted to enforce SSL - any webmonkeys know if that can cause problems?
www.glory-glory.co.uk is returning this when I try to access it:
View attachment 4347
That's in Chrome. Firefox just displays a white page.
There's something wrong with the front page. Main problem is that I haven't managed to get around to a) Working out what's wrong, b) Fixing it, or c) Putting a redirect to the forum in.Working fine here. You might need to try clearing your browser cache? Can be done from Browsing History usually..
There's something wrong with the front page. Main problem is that I haven't managed to get around to a) Working out what's wrong, b) Fixing it, or c) Putting a redirect to the forum in.
That's precisely what I did - not sure why it isn't workingAh brick, yep I see now... I can see you're running Windows web server (IIS). *shudders*
To force HTTPS you'll need to enable the URL Rewrite module (likely already active) then you should be able to add the following snippet to your web.config file in the server root directory:
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<system.webServer>
<rewrite>
<rules>
<rule name="HTTP/S to HTTPS Redirect" enabled="true" stopProcessing="true">
<match url="(.*)" />
<conditions logicalGrouping="MatchAny">
<add input="{SERVER_PORT_SECURE}" pattern="^0$" />
</conditions>
<action type="Redirect" url="https://{HTTP_HOST}{REQUEST_URI}" redirectType="Permanent" />
</rule>
</rules>
</rewrite>
</system.webServer>
</configuration>
Other methods are listed here: https://blogs.msdn.microsoft.com/kaushal/2013/05/22/http-to-https-redirects-on-iis-7-x-and-higher/
Not sure if that's whats causing the server error on the 'front page' though... *shrugs*
Can't get any vid links to work this morning.