Other HTTPS Conversion...?

adwade

Well-known member
I guess this qualifies as a 'Custom Service' since I did not see it in the 'Purchase Extras & Services' section of my customer account. If not, admins please feel free to move this request to where it is best suited for appropriate answers.

My question is, after reading many threads and posts about issues with converting a forum from HTTP over to HTTPS, are there folks out there who routinely do this? If so who is both able and capable of doing such...with a proven track record, that might perform this service for a smaller forum? (i.e. roughly 13k threads)
 
you shouldn't have to pay someone to do this on your site settings.... it's a simple setting.


if you want to go a step deeper, make sure your htaccess is updated too.

Code:
RewriteCond %{HTTPS} off  [OR]
RewriteCond %{HTTP_HOST} !(^www\.yoursite\.com$)
RewriteRule (.*) https://www.yoursite.com/$1 [L,R=301]

This assumes as above, you've turned on ssl at your host.
 
Thanxx for the replies. I get that it is supposed to be easy, however I've read of the various issues in the Troubleshooting and Problems forum (i.e. examples) when some admins have attempted to swap over to HTTPS. Things like: posts w/old embedded non-https links, mixed content warnings, broken images, broken CSS, etc.

I'll re-read the post about How To Implement SSL To Secure HTTP Traffic (HTTPS) and see if I can better understand it, but some things mentioned (i.e. run queries against the various tables, etc.) are just beyond my skillset. The board works now and I just don't want to get into a situation where I'm troubleshooting things I know little (if any) about and then wishing I'd just left well-enough alone.

 
posts w/old embedded non-https links, mixed content warnings,
The redirects mentioned above should solve issue with internal links, image proxy should solve mixed content issues.

I think enabling canonicalizatoon in settings basic options should also deal with internal links
 
Top Bottom