[HELP] Creating Multi IPN for Paypal

iyalah

Regular Member
Joined
Mar 4, 2009
Messages
248
Reaction score
296
I do not know where to address this thread, so I address in cloaking section here.

Any suggestions for creating multi IPN in paypal? in other word create one IPN for one email address (what I already know, is paypal only allow 1 IPN URL).

Thanks in advance mate...
 
Hi,

I use a single IPN PHP file to process all of my orders for my software website.

After you verify that the transaction is valid, break into a new if { } clause to check: item number, amount, etc.

Are you trying to post information cross-domain, e.g. use an IPN script at domain A to update information at domain B? No problem, just pass your final action (after you verify everything) to a script on domain B in the form of a cURL request. Catch my drift? If not, please elaborate more on exactly what you're trying to do.
 
Hi,

I use a single IPN PHP file to process all of my orders for my software website.

After you verify that the transaction is valid, break into a new if { } clause to check: item number, amount, etc.

Are you trying to post information cross-domain, e.g. use an IPN script at domain A to update information at domain B? No problem, just pass your final action (after you verify everything) to a script on domain B in the form of a cURL request. Catch my drift? If not, please elaborate more on exactly what you're trying to do.

Hi Jrin,

Just a dumb question.

I already set IPN to www.domain.com/dl/checkout (I use it for my hosting reseller using WHMCS). Now, I want sell images for upselling through another website of mine.

If I do not miss direction here, I must do:

1. I still use my IPN checkout URL in WHMCS
2. then redirect it to my other checkout process after validating, using cURL

is it not double process? I mean payment will be processed by WHMCS then pass to another checkout script after it, it sound like double process to me.

Sorry for my dumbness bro...

It really drive me crazy for 3 days figuring out how to manage this out :(
 
So Corman, do you have another opinion?
 
You can get many sites to use the same paypal account if you set the ipn url through the php script not your paypal account. In such case the one sent by the script will over write the one in your paypal account.

From this page

Code:
https://cms.paypal.com/us/cgi-bin/?cmd=_render-content&content_ID=developer/e_howto_admin_IPNSetup

Read the part down the page

Dynamically Setting the Notification URL
 
You can get many sites to use the same paypal account if you set the ipn url through the php script not your paypal account. In such case the one sent by the script will over write the one in your paypal account.

From this page

Code:
https://cms.paypal.com/us/cgi-bin/?cmd=_render-content&content_ID=developer/e_howto_admin_IPNSetup

Read the part down the page

Dynamically Setting the Notification URL

Very helpful thanks a lot Boss. I will try it out. Once again thanks...
 
rapid action profit (RAP) takes care of this for me - multiple products sold on each of a number of diff. websites.
 
If you leave the IPN postback url blank on paypal, your script can post the postback url. Therefore, you can use a single paypal address for hundreds of sites on different domains that support IPN.
 
Back
Top