- This topic has 18 replies, 5 voices, and was last updated 9 years ago by .
- You must be logged in to reply to this topic.
Support site for Tips and Tricks HQ premium products
by
Tips and Tricks HQ Support Portal › Forums › WP eStore Forum › WP eStore Troubleshooting › Return URL not working w/ Authorize.Net
Tagged: authorize.net, return url, WP eStore
Nope, authorize.net hasn’t done anything about it. They still do the post payment redirection this way. I don’t know why they don’t redirect using the method Paypal or other popular payment gateways use.
You can try doing the following. Make a specific “Thank you” page for authorize.net with very minimal items on this page. Add a link on this page that points to your real thank you page. This way your customers can click on this link and that will go to the thank you page and load the page correctly.
Alternatively, try the following:
Open the “eStore_advanced_configs.php” file and find the following line:
define('WP_ESTORE_USE_AUTH_NET_ALT_REDIRECTION', '0');
Once you find it change it to the following:
define('WP_ESTORE_USE_AUTH_NET_ALT_REDIRECTION', '1');
Now do a transaction and you shouldn’t see that previous issue as authorize.net will do the redirection slightly differently (when the user clicks the button after the transaction).
My e-store plugin stopped working a few days ago and I’m in urgent need of fixing it so I can continue getting payments.
I only use Authorize.net for my payments – no other payment gateway.
My response URL was configured to
[http://www.foreverbarcelona.com/?estore_auth_ipn=process]
which I assume is correct from what you mention in this thread?
However, I’m still getting the 14 error from Authorize.
Please, help.
Thank you,
Marta
Looks like you have auto redirection to HTTPS URL, so make sure to use the HTTPS URL in our authorize.net configuration (otherwise it won’t match). Your full response URL is the following:
[https://www.foreverbarcelona.com/?estore_auth_ipn=process]
ok. Thank you. It seems to have solved the issue.