Advertisement
Guest User

Untitled

a guest
Jan 8th, 2016
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.02 KB | None | 0 0
  1.  
  2. <?php
  3. if(!defined('ACMS')){ header("Location: ../../"); }
  4.  
  5. //- Site Settings
  6. $debug = 0; #- Debug Mode Enabled? (0 = No | 1 = Yes)
  7.  
  8. //- Database Connection Info
  9. $port_host = ""; #- Domain without or IP Address
  10. $db_host = ""; #- Database Host
  11. $db_user = ""; #- Database User
  12. $db_pass = ""; #- Database Pass
  13. $db_data = ""; #- Database DB
  14. $db_acc = ""; #- Account Database
  15.  
  16. //- Paypal Settings |:| Do Not Edit
  17. $palurl = array(
  18. "1" => "www.paypal.com",
  19. "2" => "www.sandbox.paypal.com",
  20. );
  21.  
  22. $palcur = array(
  23. "1" => "USD",
  24. "2" => "EURO",
  25. "3" => "Other Currency Here", // Other Currency - cms.paypal.com/us/cgi-bin/?cmd=_render-content&content_ID=developer/e_howto_api_nvp_currency_codes
  26. );
  27.  
  28. //- Paypal Manual Edit For Security
  29. $palmail = "";
  30. $palurl = $palurl[1]; // 1 = Paypal, 2 = SandBox
  31. $palcur = $palcur[1]; // 1 = USD, 2 = EURO, 3 = Other
  32.  
  33. //- RA/Telnet Settings - Manual Edit
  34. $ra_host = ""; #- World Server Host
  35. $ra_user = ""; #- Account Username (Access = 4)
  36. $ra_pass = ""; #- Account Password (Access = 4)
  37. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement