Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
Alright I saw a previous post about this but I'm not sure how to get it to work.
When want to capture a payment but nothing seems to happen in ePay.
I tried following this thread: https://our.umbraco.com/documentation/reference/events/application-startup
namespace Roldskov.App_Code { using Umbraco.Core;
public class TlsFix : ApplicationEventHandler { protected override void ApplicationStarting(UmbracoApplicationBase umbracoApplication, ApplicationContext applicationContext) { base.ApplicationStarting(umbracoApplication, applicationContext); System.Net.ServicePointManager.SecurityProtocol = System.Net.SecurityProtocolType.Tls12; } } }
The code above gives me this error:
2018-12-04 17:31:00,177 [P115904/D3/T41] WARN TeaCommerce.PaymentProviders.Classic.ePay - ePay(ORDER-6) - Error making API request - error code: -1003, pbs response: -1
And if I open the order and goes under Transactions -> Capture I sometimes receive this error:
// Mike
Hi Mike
Your IP is not allowed. Just googled "epay error code 1003" and found this. http://epay.bambora.com/en/faq-payments
Don't know about the viewstate error you get. Should not be related to the ePay error.
Hi Anders,
That is EXACTLY what caused the problem. It was my own fault for not going through the documentation well enough.
Thank you for helping me out, I appreciate it
//Mike
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
Capture button doesn't work
Alright I saw a previous post about this but I'm not sure how to get it to work.
When want to capture a payment but nothing seems to happen in ePay.
I tried following this thread: https://our.umbraco.com/documentation/reference/events/application-startup
namespace Roldskov.App_Code { using Umbraco.Core;
The code above gives me this error:
And if I open the order and goes under Transactions -> Capture I sometimes receive this error:
// Mike
Hi Mike
Your IP is not allowed. Just googled "epay error code 1003" and found this. http://epay.bambora.com/en/faq-payments
Don't know about the viewstate error you get. Should not be related to the ePay error.
Hi Anders,
That is EXACTLY what caused the problem. It was my own fault for not going through the documentation well enough.
Thank you for helping me out, I appreciate it
//Mike
is working on a reply...