IPN Transactions

vegas

Account Disabled
I wasnt getting the payment confirmations back to my site,the ones that bring you to success payment and I thaught woa this error is hard to match since all software works so well and is very stable.

So I find out paypal has a future named ipn that is enabled inside account and it goes back to merchant site and it hits back with the transaction and invoice details so purchase becomes more naturally automatic natured,really never thaught so since Ive had scripts that dont need enabling ipn inside paypal account.

Based on the avobe please tell me if there is a way to get the same effect of ipn enable without getting inside paypal and program that.

In case there is no way please tell me which should be the url that goes along with ipn enable,should it be the same one where the index.php dwells?,or can it be the prior page that sent payment?

Please share your ipn expiriences with me
 
Paypal IPN is their to match all paypal transactions etc. between the paypal interface and your WHMCS

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

Instant Payment Notification (IPN) is a message service that notifies you of events related to PayPal transactions. You can use it to automate back-office and administrative functions, such as fulfilling orders, tracking customers, and providing status and other information related to a transaction.
also to use the Paypal gateway within WHMCS is states (You must enable IPN inside your PayPal account and set the URL to)
 
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
 
I would like to figure out why paypal gave me this error
Paypal error in shoeshine, address that the money was sent to does not match the settings
 
im rediscoverin ci and found out I dont have to install nothing since my script is already built on top of it,sure no need to put nothing on config.php because howeverly my server finds my index.php and I base myself on some testing,just like the url that is also supposed to be put here is auto findable just like neo vagina’s are auto cleanable.This is something that led me to think theres not much to do since also on index.php the system folder and application was assigned by default and tested too of ci acurracy,so Im wondering what is wrong since theres not much left to configure but this
/*
*——————————————————————————————————
* DEFAULT CONTROLLER
*——————————————————————————————————
*
* Normally you will set your default controller in the routes.php file.
* You can, however, force a custom routing by hard-coding a
* specific controller class/function here. For most applications, you
* WILL NOT set your routing here, but it’s an option for those
* special instances where you might want to override the standard
* routing in a specific front controller that shares a common CI installation.
*
* IMPORTANT: If you set the routing here, NO OTHER controller will be
* callable. In essence, this preference limits your application to ONE
* specific controller. Leave the function name blank if you need
* to call functions dynamically via the URI.
*
* Un-comment the $routing array below to use this feature
*
*/
// The directory name, relative to the “controllers” folder. Leave blank
// if your controller is not in a sub-folder within the “controllers” folder
$routing[‘directory’] = ‘abccontrollers’;

// The controller class file name. Example: Mycontroller
$routing[‘controller’] = ‘’;

// The controller function you wish to be called.
$routing[‘function’] = ‘Buyer’;


/*
*—————————————————————————————————-
* CUSTOM CONFIG VALUES
*—————————————————————————————————-
*
* The $assign_to_config array below will be passed dynamically to the
* config class when initialized. This allows you to set custom config
* items or override any default config values found in the config.php file.
* This can be handy as it permits you to share one application between
* multiple front controller files, with each file containing different
* config values.
*
* Un-comment the $assign_to_config array below to use this feature
*
*/
// $assign_to_config[‘name_of_config_item’] = ‘value of config item’;

//——————————————————————————————————
// END OF USER CONFIGURABLE SETTINGS. DO NOT EDIT BELOW THIS LINE
//——————————————————————————————————

Maybe is the missing thing so paypal dont bring this error
Paypal error in shoeshine, address that the money was sent to does not match the settings

If anybody can tell me in which dir ci stores user payment info in relation to paypal Ill be greatfull
 
Back
Top