YourPay Connect connectivity problem for recurring payment

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

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

YourPay Connect connectivity problem for recurring payment

Post by ocpamit »

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, you can understand) but it always gives error: Invalid Recurring Billing Information

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?
User avatar
volka
DevNet Evangelist
Posts: 8391
Joined: Tue May 07, 2002 9:48 am
Location: Berlin, ger

Post by volka »

You could have bumped your previous thread on that topic, viewtopic.php?p=400079
Locked