I am constructing a PHP website,in which we need a payment gateway based on MONEYBOOKERs.
Can Any one help in embedding the MoneyBookers gateway to my site. As I am using the test link which is:
But it is not showing any of the money transfer in it.
Please Help!
I cover this topic in detail on a recent blog post of mine: How to automate Moneybookers (Skrill) using status_url (IPN). There is example code for PHP and C# and pictures illustrating the points:
I won't cover every step here, because if I did my answer would take up several pages. However I will cover the 4th topic (verifying the Moneybookers order) because the answer currently on this page is riddled with problems (SQL injections, etc.). If you want in-detail instructions for every step then read my article.
Simple payment form on your website
I go into this in more detail in the article, but here's a simple payment form. Replace the bold values with your correct prices, app name, and Moneybookers email:
Verifying the Moneybookers order
After a user has paid for your software, eBook, or other digital content you'll want to automatically verify the order and send what they ordered to their email address. In this example I mention creating a product key using LimeLM, but you can really do anything.
In the example form above you set the location of script that will verify the Moneybookers orders:
The relevant part of the script is this:
If you don't know how to set your secret word in Moneybookers, I explain how to do this in the " How to automate Moneybookers (Skrill) using status_url (IPN)" article.
Full payment example
If you're not keen on writing this code yourself then we have a fully built payment form for our LimeLM customers. It's written for PHP, C#, and VB.NET and it's free for all our customers (even our free-users). So you can download it, integrate it into your site, and use it without paying us a cent.
Here's what the payment selection page looks like:
Skrill is not using Moneybooker, now it has changed its test payment method. Documented here Page # 13 ( 2.3.2 ): https://www.skrill.com/fileadmin/content/pdf/Skrill_Quick_Checkout_Guide.pdf
Use below Merchant Test Accounts provided by Skrill:
C# Code:
For test payment use below test cards numbers after redirecting to Skrill:
NOTE: Amex uses four digits test CVV
You need to get the documentation from MoneyBookers, for example this: http://www.moneybookers.com/app/help.pl?s=m_manual for the merchant gateway, and a testing account. Then read it thoroughly a few times and understand the flow. Then go to the Demo section of that page, and see that. Finally, start coding, and make tests with your test account.