[CubeCart] Problem with Paypal checkout
-
- Posts: 12
- Joined: Mon Sep 14, 2009 8:44 am
[CubeCart] Problem with Paypal checkout
When I disable Magic SEO module everything works fine.
You can easily reproduce the problem by adding "Test item" to the cart and try to make a payment with Paypal. The price is only $0.10
http://www.eldoradogems.com
Just search for "Test item", add it to the cart and checkout with Paypal.
Thank you very much for your help.
Felix.
Re: [CubeCart] Problem with Paypal checkout
eldoradogems wrote:I have a problem with Paypal Express checkout (I use Paypal WebSite Pro integration). After I get an authorization from Paypal and click on "Make payment" button I'm getting "Page not found" error.
How does exactly look that URL?
eldoradogems wrote:When I disable Magic SEO module everything works fine.
What do you mean by disabling MSU? (commenting out installation line or disabling .htaccess Rewrite Rules?)
Since you are first user reporting such issue, I guess there is something wrong with CC setup.
-
- Posts: 12
- Joined: Mon Sep 14, 2009 8:44 am
Re: [CubeCart] Problem with Paypal checkout
~J~ wrote:How does exactly look that URL?
If I copy the link of the button I get the following URL:
"https://www.eldoradogems.com/en/shopping-cart/?step=3"
When I click on the button I'm ending up with this URL:
"https://www.eldoradogems.com/en/shopping-cart/index.php?_g=rm&type=altCheckout&cmd=process&module=PayPal_Pro&payment=1&"
~J~ wrote:What do you mean by disabling MSU? (commenting out installation line or disabling .htaccess Rewrite Rules?)
I commented out installation line and put the empty .htaccess file.
~J~ wrote:Since you are first user reporting such issue, I guess there is something wrong with CC setup.
You're right, I tried to search the same problem and I couldn't find any one with the same issue. Everything is working fine with Magic SEO and the problem with Paypal checkout is the only problem I have.
Thank you in advance for your help.
Felix.
Re: [CubeCart] Problem with Paypal checkout
Code: Select all
#index.php - Fixing non-RFC redirection
RewriteCond %{QUERY_STRING} ^_g=co&_a=cart [OR]
RewriteCond %{QUERY_STRING} ^_g=co&_a=step([0-9]*)
RewriteRule ^([a-z]{2})/shopping-cart/index.php$ index.php [R=301,L,QSA]
and replace with:
Code: Select all
#index.php - Fixing non-RFC redirection
RewriteCond %{QUERY_STRING} ^_g=co&_a=cart [OR]
RewriteCond %{QUERY_STRING} ^_g=co&_a=step([0-9]*) [OR]
RewriteCond %{QUERY_STRING} ^_g=rm
RewriteRule ^([a-z]{2})/shopping-cart/index.php$ index.php [R=301,L,QSA]
-
- Posts: 12
- Joined: Mon Sep 14, 2009 8:44 am
Re: [CubeCart] Problem with Paypal checkout
The problem is solved now.
Best Regards,
Felix.