cartridge-payments
cartridge-payments copied to clipboard
Reverse Issue With Settings
I am running into an issue when trying to get to the payment page I followed the guide on the readme but the ipn is giving me this issues if I set it to be commented out it says it is not set so I uncommented it and get this issue and I am unsure why it happens.
Reverse for 'my_paypal_ipn' with arguments '()' and keyword arguments '{u'uuid': u'85a8b22d-e17f-49ce-8147-b13cb2b209c2'}' not found. 0 pattern(s) tried: []
Same issue here. When shop/payment template is rendered at checkout, fails with the following error:
Reverse for 'my_paypal_ipn' with arguments '()' and keyword arguments '{u'uuid': '7cbf1ed0-6da4-4b6a-9c30-5d07d86083da'}' not found. 0 pattern(s) tried: []
Just figured out view named my_paypal_ipn is not implemented so installation guide is a bit confusing there. Either set to an existing name or to None and instant payment notification will be ommited.
Really stuck with this, Need IPN.
"Either set to an existing name"
Created a view but i still get the error. and what needs to be in that view?
views.py:
def my_paypal_ipn(request): print('hello?')
gets the error