Port 80 Function Lost
-
The applied .htaccess edits by Really Simply SSL redirected Port 80. PayPal IPN uses standard HTTP POST so it should be on port 80. I asked the server tech why this was, and he explained it is because of the SSL being installed: This is because you have set up an automatic redirect for anything on that site to automatically be redirected to SSL. This means that even requests that specifically tell the server to use port 80 are immediately sent to https, on a different port. You can see the rule in the .htaccess file for /home/useraccount/public_html.
As a result of this redirect, Paypal Payflow is dysfunctional. How to fix?
# BEGIN rlrssslReallySimpleSSL rsssl_version[2.3.13] <IfModule mod_rewrite.c> RewriteEngine on RewriteCond %{HTTPS} !=on [NC] RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L] </IfModule> # END rlrssslReallySimpleSSL # 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>
- The topic ‘Port 80 Function Lost’ is closed to new replies.