Reputation: 6174
I am using Money Bookers for the payment processing.
Is there any possibility that I can get the order status to my local URL same as paypal IPN.
I am able to set the status url like below :
<input type="hidden" name="status_url" value="<?php echo $cfg->webroot?>/index.php?control=add_fund&do=status">
But its responding only to live url but not for the local URL. So is there any way to get the order status on local URL?
Upvotes: 1
Views: 617
Reputation: 4358
Moneybookers can only send notifications to a publicly accessible site. So if you want notifications to your development machine, you need a public IP, and Moneybookers needs to able to access port 80.
You can check if your port 80 is accessible by doing a simple online port scan.
A thing to remember is that the status_url you send will be tied to that subscription until it ends, so don't test this in production.
Upvotes: 1