Hey guys, I own a dating site and was about to open a pixel site, but in the settings it requirse me to have an IPN set up to receive payment, but I have already setup my IPN for my dating site. Has anyone ever come accross this problem before? Does PayPal allow you to have two or more IPNs? I'd appreciate anyone's input Thanks
if you add the notify_url as a hidden form field (or even an url '&' variable), that acts as your IPN url, so you can have different IPN's for one paypal account... However, I'm not sure if IPN can use an email address other than your associated default address.
either as a hidden form field: <input type="hidden" name="notify_url" value="[b]your ipn script url[/b]"> Code (markup): or as an url variable, for eg.: depending on the type of coding you use.
from what i understand, if the script tells me to set "pay.php" as my IPN, all i have to do is edit "pay.php" and add that hidden field??
From what I understand, the script doesnt allow the notify_url as default. I dont know if youre knowledgable on PHP, but if the code is't encoded, you have to go through it and see where the payment class/function is, then add that: <input type="hidden" name="notify_url" value="http://your.com/pay.php"> Code (markup): to the form... What script is it may I ask? By all means continue this in PM.