Why do some people see my linked pictures and others don't?

Man of Honour
Joined
29 Mar 2003
Posts
56,813
Location
Stoke on Trent
Going by a lot of threads I post in and link a picture some people will see it and some won't!
Does anybody know why this happens?
I've also seen it with other users where someone has said they can't see their image but I can.

Here is an example where somebody can't see the image, if you can't see it the link is underneath.

noimage.jpg


https://www.dmpoole.co.uk/pics/noimage.jpg
 
Last edited:
Man of Honour
OP
Joined
29 Mar 2003
Posts
56,813
Location
Stoke on Trent
Just did a HTTPS check and looks like your using Apache as the web server with a letsencrypt certificate. I don’t know what host you are with but forcing https can be done by the .htaccess file.

Just upload this to the .htaccess and save.

Code:
RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://dmpoole.co.uk/$1 [R,L]

Can you check it again please?
 
Man of Honour
OP
Joined
29 Mar 2003
Posts
56,813
Location
Stoke on Trent
Surprised that nobody replied to this yet. It gets redirect to /public_html which doesn't exist under dmpool.co.uk. Give this a go.

Code:
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]

At the moment it has got this in it, do I change all of it with the 3 lines above?

CheckSpelling Off
AddType x-httpd-php56 .php
RewriteEngine On
RewriteCond %{SERVER_PORT} 80
RewriteRule ^(.*)$ https://dmpoole.co.uk/$1 [R,L]
 
Back
Top Bottom