I've been stuck on this for quite some time and hope someone can help
me. It's probably something simple that I am overlooking (and I hope
it is) but I can't figure it out.

I am integrating PayPal Payments Pro Recurring Billing using Express
Checkout. I have already successfully integrated Recurring Billing
using Direct Payment.

Everything is working fine except I need certain parameters to process
the payment after the user is directed back to my site from paypal. So
I specify the return url to include those parameters like this
$returnUrl = "https://mysite/payment/param/$value/param2/$value2";;

when paypal redirects to this url it appends a few parameters of it's
own so I end up with something like this:

https://mysite/payment/param/$value/param2/$value2?token=value&PayerID=value

I wasn't sure if this would work, but it did just fine.... until I
moved to my other testing server and tried it in the production
environment instead of frontend_dev.php.
Now I just get a 404 not found. But if I insert frontend_dev.php into
the url it works fine.
How can I get this to work in the production environment?

Summary:

Works:
https://mysite/frontend_dev.php/payment/param/$value/param2/$value2?token=value&PayerID=value

Doesn't Work:
https://mysite/payment/param/$value/param2/$value2?token=value&PayerID=value

Thank you for you help,
Zach
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"symfony users" group.
To post to this group, send email to symfony-users@googlegroups.com
To unsubscribe from this group, send email to 
symfony-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/symfony-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to