World Pay Instructions


This is the file explains how to use World Pay and Membership Client Pro

If you cannot find the answer here, fill out a support ticket at: http://www.membershipclientpro.com/support/


Using World Pay and Membership Client Pro is very easy.

Step 1) Modify the included resultY.html to suit he look/feel of your website,
(Be care full to to leave the <form> and <input> tags alone.

Step 2) Upload the included resultsY.html into the suitable folder for your installation id.

Step 3) In the Settings Menu (in admin.pl) set your Login / Seller id to what ever installation id you have.

Step 4) Thats it! Now just generate the HTML to sell your proucts and start selling your products.

Make sure you test it out before 'going live'.


Using Custom Fields with World Pay

You can pass you own custom felds and have the values returned to you with World Pay simply by altering the <form> in the resultY.html file.

Your <input> filed MUST BE labled "mc_???" (i.e. mc_product_description). You can pass as many "mc_" fields as you like.

For EVERY "mc_" field that you pass, you MUST have a corresponding <input> field in your resultY.html file.
i.e.

<form action="http://www.yoursite.com/cgi-bin/order/order.pl" method="POST">
<input type="hidden" name="x_action" value="buy">
<input type="hidden" name="x_product_id" value="1000000000">
<input type=hidden name="mc_description" value="This is our great priced widget">
<input type=submit value="Buy product, pay thru 2CheckOut">
</form>

Then your resultY.html file would have to be altered to,
<form action="<wpdisplay item=MC_x_Receipt_Link_URL>" method="POST">
......
......
<input type=hidden name=mc_description value="<wpdisplay item=MC_mc_description>">
</form>

You have to add this extra line FOR EVERY extra "mc_" field you pass.