Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author AITpro

    (@aitpro)

    Yes there is a permanent fix already included in BPS for this issue. The secure.htaccess file should contain this htaccess code. If your WordPress installation is in your website root folder then this fix should work for you automatically. If your WordPress installation is in a subfolder then you will need to add your wordpress subfolder name.

    # SFC Simple Facebook Connect Redirect Fix
    # If you have WordPress installed in a subfolder you will need to add the
    # subfolder name to the Rewriterule /blog/wp-login.php?action=register [R=301,L]
    RewriteCond %{QUERY_STRING} redirect_to=(.*) [NC,OR]
    RewriteCond %{REQUEST_URI} ^/simple-facebook-connect/ [NC]
    RewriteRule ^(.*)$ /wp-login.php?action=register [R=301,L]

    Plugin Author AITpro

    (@aitpro)

    The above fix (it was a bad way to go from the get go anyway to get SFC working correctly) no longer works in the most current version of SFC v.25. The new BPS .htaccess coding fix below for SFC has been included in BPS .45.8 version release.

    # SFC Simple Facebook Connect Redirect Fix
    # Also fixes any other plugins that use the redirect_to= string
    RewriteCond %{QUERY_STRING} redirect_to=(.*) [NC]
    RewriteRule . - [S=30]

    This new BPS .htaccess coding fix will also resolve any issues with any other plugins that are also using the redirect_to= string to redirect links.

    Thread Starter cogmios

    (@cogmios)

    Thanks for the update! Superb plugin.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘[Plugin: BulletProof Security] BPS and Facebook Connect Plugin’ is closed to new replies.