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

Soldato
Joined
20 Apr 2015
Posts
4,096
Location
.
2DZEoTxebMc5tEkLknIq9N1e1hk2s3j8sgX30w-ZBwhJxMdqGk-FteoY1pII1L5Krd5uScDbcU2g_-ef7JI-BUFO-tRx0eupOrfb5eEMJypts17lOJ3m5EmYsA03VmA7BDBgp74BwAOu5Ura8bYJEpmMAhSeUfMrC1yFrYb4-FRKFU_WMoTEP0_Oe9viKWFJKDKVGzfEo-6D2f1CXYNoJag6R2PiA8qU1IcfV4u9uyEVqvpw0z0hHdU0aVfAjHmnTEGb3jEth2wa83wbLflJVofjfl37rAOE7wpY7mu8YZJ6KRDu37NDoD7Cs0hi-jD2_xFiQ2gWtwxtc03OxzOHMWYhz61cM6AKqmEwLY17bTvxKWmtN1FbjpXfFrs6bif2Unfl0em37LyvB6dRH_yv5oTWBE17BeBV9fsNH3YGJXwsxp2YYvl5ZuxnuCoryHOzc8Lnh5Mdr2WqZ3Rv5FGhxRhs8HK0lX0sx20yQMpwRoQzz2zU0Ksqu406FGfFKHU-OqLbCs5StS80hs9NZCZphU2EmqJpd1n2lq6CND2Mg4wgY5Ltb_s1O84grI9H0upte232egVF2WO0TtttRPT2ccGXWO_af24jX66guXz2OFnUPs2x2EYcK7jdZsgTAHfY3YPLVT1phv_Qm-2ufKTyByVvQL9N-aIKR-3zh90tYp65kqQQNrFNyFTsyaAFtjY=w1289-h967-no


Not the prettiest wiring setup atm (it's unplugged too since I' was charging the powerbank).

Really nice to take the weight off the front, the top strap helps with that, but previously I had it slightly too tight and it was taking the weight more than the rest, so a small adjustment and now it's really nice. Just got the left right wobble, which I'd think a narrower interface may help with. Might just try and get some padding on the lenses so it's not bouncing off the bridge of my nose on quick turns.

Can everyone see this image.... I can't
 
Man of Honour
OP
Joined
29 Mar 2003
Posts
56,811
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,811
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]
 
Permabanned
Joined
9 Aug 2008
Posts
35,707
Replace your bottom 3 lines in the .htaccess with the one in your quote I posted and save it.

I'll check it again. I think it might be the $1 that's causing the issue but not 100% sure. Some hosts are different the way they work. Who is your webhost? Is it tsohost?

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


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