• Resolved aldon

    (@aldon)


    Hello team. i run Really Simple SSL (v2.5.24) and Really Simple SSL social (V3.0.2) and i have this major problem.

    When i try to get into my site with http, i have blank white page.

    Check the problem here: http | https

    Any help?

    • This topic was modified 7 years, 2 months ago by aldon.
    • This topic was modified 7 years, 2 months ago by aldon.
Viewing 9 replies - 1 through 9 (of 9 total)
  • Plugin Author Rogier Lankhorst

    (@rogierlankhorst)

    If you enable debugging, we can see the error:

    To do this, add to your wp-config.php, (comment out the wp_debug, false line):

     define('WP_DEBUG', true);
     define('WP_DEBUG_DISPLAY', true);
     define('WP_DEBUG_LOG', true);

    That should tell us where the error is coming from

    Plugin Author Rogier Lankhorst

    (@rogierlankhorst)

    You can also try to enable .htaccess redirect. Normally the http url is not reachable anymore after activating Really Simple SSL, so the redirect doesn’t seem to work. enabling the .htaccess redirect in settings/ssl often helps.

    Thread Starter aldon

    (@aldon)

    @rogierlankhorst thank you for your quick response! i add this on .htaccess and works! thank you!

    # BEGIN rlrssslReallySimpleSSL rsssl_version[2.5.24]
    <IfModule mod_rewrite.c>
    RewriteEngine on
    RewriteCond %{HTTPS} !=on [NC]
    RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
    </IfModule>
    # END rlrssslReallySimpleSSL

    Plugin Author Rogier Lankhorst

    (@rogierlankhorst)

    Great! thanks for the update.

    Thread Starter aldon

    (@aldon)

    update

    The above code works only in homepage

    for example http post, | https posts.

    Any help?

    • This reply was modified 7 years, 2 months ago by aldon.
    Plugin Author Rogier Lankhorst

    (@rogierlankhorst)

    That is strange. The above redirect is a generic redirect to https. Is this redirect placed above the WordPress .htaccess lines?

    If not, move it to the top. If that doesn’t help, you can also try some other .htaccess redirects, as listed here:
    https://really-simple-ssl.com/knowledge-base/manually-insert-htaccess-redirect-http-to-https/

    Thread Starter aldon

    (@aldon)

    wow! i put the code above #BEGIN WordPress and works! thank you Rogier for one more time1

    Plugin Author Rogier Lankhorst

    (@rogierlankhorst)

    That’s good to hear. Usually, if you use the .htaccess setting in settings/ssl, Really Simple SSL will put it in the right location. I think you have added this one manually?

    Thread Starter aldon

    (@aldon)

    Yes Rogier, i put the code manually on htaccess.

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘Blank White homepage on http’ is closed to new replies.