by maruka Banned
2 replies
Can you please tell me if the bounced back ipn messages of paypal can be obtained some other way than enable ipn inside paypal account?

The url of ipn in paypal has to be where the index.php of my site is?,or can it be the page that was prior to send payment?
#ipn #messages
  • Profile picture of the author aisdbuilder
    Hi Maruka,

    If I understand your question correctly, you're looking for the following fields that you would add to your Paypal Button form fields.

    This is you're customer return url. It's where you want them to be sent after they complete their payment. You simply enter the full url inside the quotes of value:
    HTML Code:
    <input type="hidden" name="return" value="" />
    Enter the url you would like your customer to be sent if they abandon the order:
    HTML Code:
    <input type="hidden" name="cancel_return" value="" />
    This is your ipn notification url. This is where you want the Paypal IPN to post details about the transaction. This will usually be a php script that verifies and processes the order (enter in database, etc).
    HTML Code:
    <input type="hidden" name="notify_url" value="" />
    I hope that helps and please say so if i'm off-base on what you were asking.
    {{ DiscussionBoard.errors[6183000].message }}
    • Profile picture of the author maruka
      Banned
      My intention was to find the file where instant confirmation should go and I did indeed,it has function paypalIpn() so Im sure is the righteous the thing here is that once enabled as ipn on paypal I get this error
      Fatal error: Class 'CI_Controller' not found
      On the begining of the file it has this
      class Login extends Controller {

      public $outputData;
      public $loggedInUser;

      /**
      * Constructor
      *
      * Loads language files and models needed for this controller
      So it never speaks about CI,can I install the missing controller via ssh?
      Really would like to know where to alter the file,but if is better installing the controler via ssh,please give me some feedback bros
      {{ DiscussionBoard.errors[6190056].message }}

Trending Topics