BBnepal-Accounts/application/config/paypallib_config.php

28 lines
1.1 KiB
PHP
Raw Normal View History

2024-07-10 12:43:19 +00:00
<?php if (!defined('BASEPATH')) exit('No direct script access allowed');
// client : Ac4nhCa1qqQOJmfrLkZhmOnCicXE7XFZh8J30yyfclwnHIKW6jAM_vHI46e7Y80UWuw7weLAxY959Gil
// secret key: EMOjdXSEhOfciBDuetTGt6YbsT9CCjDhQBHVM1ZLqwFqFgAeyRP41oe16UalsSY5alFsZg5Z7K_oLQEG
// ------------------------------------------------------------------------
// Paypal IPN Class
// ------------------------------------------------------------------------
// Use PayPal on Sandbox or Live
$config['sandbox'] = TRUE; // FALSE for live environment
// sb-8q2uk7196373@business.example.com
// PayPal Business Email ID
$config['business'] = 'sb-jfjqt8277261@business.example.com';
// sb-tpnrl7808427@business.example.com
// access_token$sandbox$9qyq7q2psqqtmkt7$76f98c62ce23f9a174bd857ede75c329
// If (and where) to log ipn to file
$config['paypal_lib_ipn_log_file'] = BASEPATH . 'logs/paypal_ipn.log';
$config['paypal_lib_ipn_log'] = TRUE;
// Where are the buttons located at
$config['paypal_lib_button_path'] = 'buttons';
// What is the default currency?
$config['paypal_lib_currency_code'] = 'USD';