I am making use of Paypal adaptive payments using AngellEye library.
Everything works great except IPN. When using Paypal in Sandbox mode I get a notifications to my URL. However, as soon as I go live I get no IPN POST requests to my server. I checked my Apache access.log.
Do I need to enable Paypal IPN for live adaptive payments somewhere?
In my Paypal account, under selling preferences, it shows IPN as disabled. To enable it and I need to also supply a URL. However, my URL is dynamic and I assumed since I am using the Paypal API, I do not need to change this?
Usage of IPN:
$PayRequestFields = array(
'ActionType' => 'CREATE',
'CancelURL' => base_url() . 'd/cancel/' . $this->transactionID,
'CurrencyCode' => $this->product->currency,
'ReturnURL' => base_url() . 'd/success/' . $this->transactionID,
'FeesPayer' => 'PRIMARYRECEIVER',
'IPNNotificationURL' => base_url() . 'ipn/status/' . $this->transactionID,
);