Hi, On Wed, 2009-05-20 at 02:48 -0700, hannesc wrote: > Hey guys > > I am having some trouble telling my new payment processor to redirect > to another page after 'authorize' is fired. My vcs.py looks as > follows: http://paste.plone.org/28076 > > As I have it, the highlighted line is supposed to send the browser to > another page. Alas, this doesn't happen. > > Anyone have any ideas.
You wanna have something like the following: url = base_url + '/@@getpaid-vcs-redirect?order=%s' % (order.order_id) self.context.request.response.redirect(url) -Tim > > Thanks > Hannes > > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "getpaid-dev" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/getpaid-dev?hl=en -~----------~----~----~----~------~----~------~--~---
