This has been disabled
-
Hi,
I have just had SSL installed onto my site by my hosting company.
I can see things fine using https
I have installed Really Simple SSL and it keeps telling me SSL was not detected.
So I ran the test page manually and got
SSL test pageThis page is used purely to test for ssl availability.
#SERVER-HTTPS-ON# (on)
#SERVERPORT443##SUCCESFULLY DETECTED SSL#
HTTP_HOST: captzeanie.com
REQUEST_URI: /wp-content/plugins/really-simple-ssl/ssl-test-page.phpSo I manually added the redirects into htaccess.
#SERVER-HTTPS-ON# (on), add
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{HTTPS} !=on [NC]
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
</IfModule>#SERVERPORT443#, add
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{SERVER_PORT} !443
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
</IfModule>And everything seems OK with the site and any http traffic goes to https until I tried to go into the Admin where all I get is a simple white page displaying
This has been disabled
Any suggestions apart from manually uninstalling and finding something else.
- The topic ‘This has been disabled’ is closed to new replies.