HTML Paypal Subscription Not Working

multiplas
Contributor
Contributor

Hi,

 

I have been developed this HTML code for a website and suddenly it isnt working. The success page isnt returning anything and the notify_url (IPN) isnt working. Its anything wrong?

 

<form action="<?php echo $paypalURL; ?>" method="post">
<input type="hidden" name="cmd" value="_xclick-subscriptions">
<input type="hidden" name="item_name" value="<?php echo $itemName; ?>">
<input type="hidden" name="item_number" value="<?php echo $itemNumber; ?>">
<input type="hidden" name="currency_code" value="EUR">
<input type="hidden" name="a3" id="paypalAmt" value="<?php echo $itemPrice; ?>">
<input type="hidden" name="p3" id="paypalValid" value="1">
<input type="hidden" name="t3" value="M">
<input type="hidden" name="rm" value="2">
<input type="hidden" name="src" value="1">
<input type="hidden" name="cancel_return" value="<?php echo $cancelURL; ?>">
<input type="hidden" name="return" value="<?php echo $successURL; ?>">
<input type="hidden" name="notify_url" value="<?php echo $notifyURL; ?>">
<input class="paypal_button" type="submit" value="Crear Suscripción">
</form>      

 

Thank you.

Login to Me Too
3 REPLIES 3

angelleye
Advisor
Advisor
PayPal is having issues with the notification systems right now, which includes both IPN and PDT.

https://www.paypal-status.com/incident/production

Angell EYE - www.angelleye.com
PayPal Partner and Certified Developer - Kudos are Greatly Appreciated!
Login to Me Too

multiplas
Contributor
Contributor

Thank you for your answer. 

 

I visited the link that you shared. Now I think that Paypal solved the issue but my code still not working. 

 

Could it be that it is not working well yet? Or have something wrong in my code?

 

Thank you ! 

Login to Me Too

angelleye
Advisor
Advisor

I would step through the procedures outlined here and you should be able to find your problem.

 

 

 

Angell EYE - www.angelleye.com
PayPal Partner and Certified Developer - Kudos are Greatly Appreciated!
Login to Me Too

Haven't Found your Answer?

It happens. Hit the "Login to Ask the community" button to create a question for the PayPal community.