YourPay Connect Recurring Payment Option

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
ocpamit
Forum Newbie
Posts: 7
Joined: Fri Jul 13, 2007 6:53 am
Location: Punjab, India

YourPay Connect Recurring Payment Option

Post by ocpamit »

feyd | Please use

Code: Select all

,

Code: Select all

and [syntax="..."] tags where appropriate when posting code. Your post has been edited to reflect how we'd like it posted. Please read:  [url=http://forums.devnetwork.net/viewtopic.php?t=21171]Posting Code in the Forums[/url] to learn how to do it too.[/color]


can anyone suggest how to connect "YourPay Connect" for recurring payments to a website

I tried using the following code (replaced original storename with xxxxxxx here, [s]u[/s][size=150][color=green]you[/color][/size] can understand) but it always gives error: Invalid Recurring Billing Information

[syntax="html"]<FORM name="checkout1" action="https://secure.linkpt.net/lpcentral/servlet/lppay" method="post">
<input type="hidden" name="storename" value="xxxxxxx">
<input type="hidden" name="chargetotal" value="19.99">				
<input type="hidden" name="txntype" value="sale">
<input type="hidden" name="mode" value="payonly">
<input type="hidden" name="submode" value="periodic">
<input type="hidden" name="periodicity"value="m1">
<input type="hidden" name="installements" value="12"><!--Optional-->
<input type="hidden" name="threshold" value="1"><!--Optional-->
<input type="hidden" name="startdate" value="20070715">
<input type="hidden" name="ponumber" value="abc123">
<input type="hidden" name="debug" value="true"> <!--REMOVE-->
<input type="hidden" name="comments" value="Thanks for posting your listing!!!">
<input type="hidden" name="txnorg" value="eci">				
<input type="hidden" name="taxexempt" value="1">
</Form>
Could anybody suggest where the problem is?


feyd | Please use[/syntax]

Code: Select all

,

Code: Select all

and [syntax="..."] tags where appropriate when posting code. Your post has been edited to reflect how we'd like it posted. Please read:  [url=http://forums.devnetwork.net/viewtopic.php?t=21171]Posting Code in the Forums[/url] to learn how to do it too.[/color]

[quote="[url=http://forums.devnetwork.net/viewtopic.php?t=30037]Forum Rules[/url] Section 1.1"][b]11.[/b] Please use proper, complete spelling when posting in the forums. AOL Speak, leet speak and other abbreviated wording can confuse those that are trying to help you (or those that you are trying to help). Please keep in mind that there are many people from many countries that use our forums to read, post and learn. They do not always speak English as well as some of us, nor do they know these aberrant abbreviations. Therefore, use as few abbreviations as possible, especially when using such simple words.

Some examples of what not to do are ne1, any1 (anyone); u (you); ur (your or you're); 2 (to too); prolly (probably); afaik (as far as I know); etc.[/quote]
Post Reply