• Resolved captzeanie2016

    (@captzeanie2016)


    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 page

    This 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.php

    So 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.

    https://www.ads-software.com/plugins/really-simple-ssl/

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Contributor Rogier Lankhorst

    (@rogierlankhorst)

    Hi,

    Did you also try detecting SSL by entering https in your browser address bar, then load the page again? In most cases this works when SSL does not get detected in the normal way.

    At the moment you forced SSL without enabling the plugin to handle it, so your site now runs without Really Simple SSL. uninstalling would not help. If you remove your manual code from the .htaccess, you can try the method above (loading admin over https).

    If that doesn’t work:

    If your admin is not available, my first guess would be that you should add:
    $_SERVER[“HTTPS”] = “on”;
    to your wp-config.php.

    The message “this has been disabled” can also come from a security plugin. You could try disabling any security and caching plugins you might have.

    I had this message after I (a) installed “Easy HTTPS (SSL) Redirection” and selected “Enable automatic redirection to the “HTTPS”, and for “The whole domain” (b) I had installed “WPS Hide Login” (c) I tried in re-visit the Admin section.

    The solution for me, was simply to log-in again.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘This has been disabled’ is closed to new replies.