XF 1.4 Anyone have issues with SSL not showing images?

SEOmers

Active member
I kind of gate crashed someone elses thread so thought I'd do my own as I'm going round in circles.

I'm having a right headache with Xenforo and using SSL. I brought a certificate from GEOtrust via WHMCS.

I have installed and the host, pinchhost have confirmed that nothing is wrong with it.

However, when I change the site to https, also add https: in options>Basic Board Information I get the site loading but but without CSS or most images https://motovlog.com/

I have covered

  • Changed URL in basic board information
  • Changed htaccess which then causes a loop (dead site)
  • Code:
    RewriteCond %{SERVER_PORT} 80
        RewriteRule ^(.*)$ https://motovlog.com/$1 [R,L]

  • Changed the theme to default to see if that makes any difference at all, it doesn't

    Any suggestions from you guys?
 
From the source code:

Code:
http://<base href="http://motovlog.com/" />

You can redirect properly with this code once you fix this.

Code:
RewriteCond %{SERVER_PORT} !^443$
RewriteCond %{HTTPS}  off
RewriteRule ^(.*)$ https://motovlog.com/$1 [R=301,L]
 
That's the thing. I don't know where that's coming from. As far as I can tell, I've done it right
 

Attachments

  • 2015-01-27_09h11_39.webp
    2015-01-27_09h11_39.webp
    41.4 KB · Views: 9
You're using CloudFlare. You need to ensure that CloudFlare is contacting your forum using HTTPS.

What web server is your actual server running?
 
You're using CloudFlare. You need to ensure that CloudFlare is contacting your forum using HTTPS.

What web server is your actual server running?


I disabled Cloudflare aka change nameservers back to my host, it shouldn't be using it at all. My host is Linux and I use Cpanel


I thought I'd test out Cloudflare as I thought it would be easier, it wasn't
 
Motovlog.com resolves to an IP owned by CloudFlare (OpenDNS appears to have this IP as well) and there's a header indicating CloudFlare in the request. I would double check that you've disabled CloudFlare as you expect.
 
Motovlog.com resolves to an IP owned by CloudFlare (OpenDNS appears to have this IP as well) and there's a header indicating CloudFlare in the request. I would double check that you've disabled CloudFlare as you expect.

Could have been my error, well is. I've gone into godaddy again and changed back to my original nameservers. Lets see but I think I'll now get a dead https altogether
 
From the source code:

Code:
http://<base href="http://motovlog.com/" />

You can redirect properly with this code once you fix this.

Code:
RewriteCond %{SERVER_PORT} !^443$
RewriteCond %{HTTPS}  off
RewriteRule ^(.*)$ https://motovlog.com/$1 [R=301,L]


This seems to have hit the spot now the nameservers have gone back to my original host. I'm getting a yellow triangle now, this site doesn't though?>
 
Top Bottom