Advertisement
Guest User

Untitled

a guest
Feb 13th, 2016
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.97 KB | None | 0 0
  1. error_reporting(E_ALL ^ E_DEPRECATED);
  2. $db_host = 'ccr.site.nfoservers.com'; //MySQL database host
  3. $db_username = 'ccr'; //MySQL database username
  4. $db_password = 'f9UEJqtyUG'; //MySQL database password
  5. $db_name = 'ccr_payment'; //Name of your MySQL database
  6. $paypal_id = "Drewbien93@gmail.com"; //your PayPal email
  7. $notify_url = "http://ccr.site.nfoservers.com/CheckPayment.php"; //link to your PHP file (CheckPayment.php) that will be accessed by PayPal IPN when your payment is completed.
  8. $success_url = "http://ccr.site.nfoservers.com/Success.php"; //change this link if you want your user to be redirected somewhere when payment has been successfully completed (optional).
  9. $cancel_url = "http://ccr.site.nfoservers.com/Cancel.php"; //change this link if you want your user to be redirected somewhere when payment has been cancelled (optional).
  10. //Settings below don't usually have to be changed unless you changed the structure of your tables.
  11. $db_table_users = 'ds_users';
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement