Zen Cart Logo
Forums / Built-in Shipping and Payment Modules / 151 Paypal express 404 error using CEON URI Mapping

151 Paypal express 404 error using CEON URI Mapping

Views: 1,115

Results 1 to 3 of 3
28 Jul 2014, 6:21 PM
#1
jewm avatar

jewm

New Zenner

Join Date:
Jul 2014
Location:
n/a
Posts:
6
Plugin Contributions:
0

151 Paypal express 404 error using CEON URI Mapping

Hey there. I am currently trying to set up paypal express to work with a site. I have read other post about the Ceon URI mapping module interfering with this process. However I have turned off, uninstalled, and even reinstalled the module and the only difference is, with it turned off or uninstalled, when I clicked checkout I am redirected to the home page instead of the 404 error page. Paypal standard works ok, some orders are not processed through zencart and do not show up under the admin panel / customers account. This is why they are trying to switch to paypal express. The site only has two addons a custom template and the Ceon URI mapping. The debug logs show no problems.

Thank you,
Chris

29 Jul 2014, 10:57 AM
#2
jewm avatar

jewm

New Zenner

Join Date:
Jul 2014
Location:
n/a
Posts:
6
Plugin Contributions:
0

Re: 151 Paypal express 404 error using CEON URI Mapping

I'm surprised that I did not find this answer on the main forum. After hours of trying everything I could think of, I randomly stumbled across this forum. (http://www.w360wiki.com/zen-cart/ceon-uri-rewrites-preventing-paypal-reporting-sales.html) and this small change seems to have fixed the problem. Hopefully this post will save someone else countless hours of searching.

Here is the fix.
In the htacces change

RewriteCond %{REQUEST_URI} .(html|htm|php)$ [NC]

to this

RewriteCond %{REQUEST_URI} .(html|htm)$ [NC]

Again this is for those who are using ceon uri mapping module and are trying to set up paypal express checkout.

29 Jul 2014, 12:36 PM
#3
mc12345678 avatar

mc12345678

Totally Zenned

Join Date:
Jul 2012
Posts:
16,908
Plugin Contributions:
2

Re: 151 Paypal express 404 error using CEON URI Mapping

Jewm:

I'm surprised that I did not find this answer on the main forum. After hours of trying everything I could think of, I randomly stumbled across this forum. (http://www.w360wiki.com/zen-cart/ceon-uri-rewrites-preventing-paypal-reporting-sales.html) and this small change seems to have fixed the problem. Hopefully this post will save someone else countless hours of searching.

Here is the fix.
In the htacces change

RewriteCond %{REQUEST_URI} .(html|htm|php)$ [NC]

to this

RewriteCond %{REQUEST_URI} .(html|htm)$ [NC]

Again this is for those who are using ceon uri mapping module and are trying to set up paypal express checkout.

So, you have a need to rewrite .htm/.html uris?
I was a little surprised to see that linein your htaccess as well (referring to discussion contained in provided link)

I think one reason not to have found a thread similar to the above is that the general direction has been to use the rewrite rules as provided by the plugin. That line is not standard with the provided rules.