• Resolved adput

    (@adput)


    Hi – when I try to authorize the app I get an error:

    ERR_TOO_MANY_REDIRECTS

    Please advise.

Viewing 1 replies (of 1 total)
  • Plugin Contributor Oleksandr

    (@awesomeoman)

    Hi, usually this happens when site is available via HTTP and HTTPS both.
    Please check site and hosting settings to fix this.
    Here is sample .htaccess file:

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    
    # force HTTPS
    RewriteCond %{HTTPS} !=on
    RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
    
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
    # END WordPress
Viewing 1 replies (of 1 total)
  • The topic ‘Authorize not working’ is closed to new replies.