XF 1.5 lost https

hello dear ...

i lost my https .. : https://virtual-gaming.ws/

http://prntscr.com/jbx8y5

and i dont find where is the problem .. som people say that its about 'imagepremium' image but in templates its on https everywhere .. :(

someone can help..,

thanks
You're not forcing SSL through your server. You will need to change your server settings to force the SSL through the site.
You could add this to your .htaccess to help it if you can't get to the server and if using Apache;
Code:
RewriteCond %{HTTP_HOST} virtual-gaming\.ws [NC]
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://virtual-gaming.ws/$1 [R,L]
 
Yes, the error says that it is the imagepremium image:

Mixed Content: The page at 'https://virtual-gaming.ws/' was loaded over HTTPS, but requested an insecure image 'http://www.virtual-gaming.ws/styles/imagepremium.gif'. This content should also be served over HTTPS.

Where is the image used? I can't actually see it when I visit your site.

Have you used Search Templates to check for this?
Are you maybe using this in a Notice (which may not be visible to guests)?
Have you checked in Style Properties to see if it is used there?
 
You're not forcing SSL through your server. You will need to change your server settings to force the SSL through the site.
You could add this to your .htaccess to help it if you can't get to the server and if using Apache;
Code:
RewriteCond %{HTTP_HOST} virtual-gaming\.ws [NC]
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://virtual-gaming.ws/$1 [R,L]
Ah, just looked again and it seems that the issue is that there are www (non-secure) and non-www (secure) versions of the site which is also covered in point 19 of the FAQ.

https://xenforo.com/community/threads/frequently-asked-questions.5183/#post-180456
 
You're not forcing SSL through your server. You will need to change your server settings to force the SSL through the site.
You could add this to your .htaccess to help it if you can't get to the server and if using Apache;
Code:
RewriteCond %{HTTP_HOST} virtual-gaming\.ws [NC]
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://virtual-gaming.ws/$1 [R,L]


euh i checked all this image on templates and all are in https ....
i must add the code on httaccess after wich line ?
 
Back
Top Bottom