Hi, i'm finishing a form which uses Paypal, and it's actually my first time using it. I'm having troubles configuring the PayPal Listener. Right now i can send the data to the Paypal Sandbox (for testing purposes) but i can't confirm when it returns. I would also like to add a new field to the array sent, but it doesn't seem to recognize it. So i have two questions:
1) Is it possible to pass another variable, to allow me to update the DB once the paypal listener returns
i have read this post but i'm trying to use the EXTRA FIELDS in the settings pane of the Paypal Redirect. Right now i have
the $user_id variable is correctly set, but id doesn't get passed. The Extra Fields are configured as follows:
item_number = item_number
id_user = id_user
But the second one is not passing trough. When i submit the form i get
so, essentially, what i'm i doing wrong?
------------------------------------
2) How can i see the data being returned from the Paypal to the form?
http://bridgebuilders.info/index.php?option=com_chronoforms&chronoform=application
">
http://bridgebuilders.info/index.php?option=com_chronoforms&chronoform=application
Right now, i have a simple action in the paypal listener, which is to write a message on the screen. However i would need to update the DB, using the parameters returned. I've used the info here
http://www.chronoengine.com/forums/index.php?option=com_chronoforums&cont=posts&f=2&t=22619&start=0
">
http://www.chronoengine.com/forums/index.php?option=com_chronoforums&cont=posts&f=2&t=22619&start=0
but i havent figure it out how to extract the info sent from the Paypal.
Thanks.
1) Is it possible to pass another variable, to allow me to update the DB once the paypal listener returns
i have read this post but i'm trying to use the EXTRA FIELDS in the settings pane of the Paypal Redirect. Right now i have
<?php
(..)
$user_id=$formAward->getUserId();
echo "<input type='hidden' id='id_user' name='id_user' value='".$user_id."'/>";
?>
the $user_id variable is correctly set, but id doesn't get passed. The Extra Fields are configured as follows:
item_number = item_number
id_user = id_user
But the second one is not passing trough. When i submit the form i get
https://www.sandbox.paypal.com/cgi-bin/webscr?(...)&item_number =One+time+Donation&id_user =&
so, essentially, what i'm i doing wrong?
------------------------------------
2) How can i see the data being returned from the Paypal to the form?
http://bridgebuilders.info/index.php?option=com_chronoforms&chronoform=application
">
http://bridgebuilders.info/index.php?option=com_chronoforms&chronoform=application
Right now, i have a simple action in the paypal listener, which is to write a message on the screen. However i would need to update the DB, using the parameters returned. I've used the info here
http://www.chronoengine.com/forums/index.php?option=com_chronoforums&cont=posts&f=2&t=22619&start=0
">
http://www.chronoengine.com/forums/index.php?option=com_chronoforums&cont=posts&f=2&t=22619&start=0
but i havent figure it out how to extract the info sent from the Paypal.
Thanks.