• Hello!

    I’m having a big problem here. Hope somebody can help me!
    I use WooCommerce on my website, SLL is installed on my site successful.
    The problem is that when I install this “Really Simple SSL” plugin or other https redirect plugin, it changes https to green but the website can’t recieve paymentes anymore. A message appears saying that is a suspicious transaction.
    Any ideas?

    Thanks
    Daniel

    https://ww.wp.xz.cn/plugins/really-simple-ssl/

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

    (@rogierlankhorst)

    Hi,
    Need some more info. If you remove the htaccess rewrite rules, and add

    define( 'RLRSSSL_DO_NOT_EDIT_HTACCESS' , TRUE );

    to your wp-config.php, you can check if the http to https redirect in .htaccess is the cause.

    Thread Starter daniel4

    (@daniel4)

    Hi Rogier,

    Thanks for your reply!
    I’m not that technical, but I’ll try.
    So, I just have to add:

    define( 'RLRSSSL_DO_NOT_EDIT_HTACCESS' , TRUE );

    to my wp_config.php (on the bottom of the file)?

    I was searching on my server for the .htaccess file, but can’t find it.
    Do you know where its located? It should be under the public_html folder?

    Thanks!

    Plugin Contributor Rogier Lankhorst

    (@rogierlankhorst)

    Your .htaccess should be in your public_html folder, but might be hidden. Check your ftp program settings/manual to see how you can show hidden files.

    Thread Starter daniel4

    (@daniel4)

    Hey!

    I find the .htaccess file, and I have this code:

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ - [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>
    
    # END WordPress
    RewriteEngine Off
    RewriteCond %{SERVER_PORT} !=443
    RewriteCond %{HTTP_HOST} ^(www\.)?mysite\.mx$ [NC]
    RewriteRule ^$ https://www.mysite.mx/%{REQUEST_URI} [R,L]
    
    # BEGIN rlrssslReallySimpleSSL rsssl_version[2.1.18]
    <IfModule mod_rewrite.c>
    RewriteEngine on
    RewriteCond %{HTTPS} !=on [NC]
    RewriteRule ^(.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
    </IfModule>
    # END rlrssslReallySimpleSSL

    What should I change?
    On to off ?
    I already do that, but problem not solved.
    Do you know if I am doing anything else wrong?

    Thanks

    Thread Starter daniel4

    (@daniel4)

    Also add:

    define( 'RLRSSSL_DO_NOT_EDIT_HTACCESS' , TRUE ); to my wp-config.php file. But nothing.

    Thanks

    Plugin Contributor Rogier Lankhorst

    (@rogierlankhorst)

    If you leave the code in the wp-config.php, and entirely remove the rules between the begin really simple ssl and end, the redirect is disabled, and you can check if the redirect causes the issue.

    Rogier

    Plugin Contributor Rogier Lankhorst

    (@rogierlankhorst)

    Another cause could be that your payment system has the old http link as your main link, or that the payment link is not on https. Did you check this as well?

Viewing 7 replies - 1 through 7 (of 7 total)

The topic ‘When installing plugin, can't proccess payments’ is closed to new replies.