Forum Moderators: buckworks
Does anyone know if it is possible to have PayPal IPN post to a script at one URL, and then have that script post the IPN info to other URLs? (Kind of like IPN Forwarding/redirect). It sounds feasible, but since my expierience with IPN is rather limited, I thought I would ask here if anyone else has tried this. Also, do you know of any scripts that are available that fufill this function?
Thanks!
Erik
If you're using PHP, you can install the HTTP_Request [pear.php.net] package from the Pear library, and use it to craft a POST request to the second URL that you want to receive the IPN (copy the variables across using a foreach() on $_POST).
There are bound to be equivalent ways to do it in any server side scripting language - ASP, Perl etc but I don't know of any scripts specifically for this purpose.