Advertisement
Guest User

donation

a guest
Aug 8th, 2013
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.41 KB | None | 0 0
  1. <?php
  2. // ---------------------------
  3. // --- Begin Configuration ---
  4. // ---------------------------
  5.  
  6. //Database Information
  7. $mysql_hostname = "";
  8. $mysql_user = "";
  9. $mysql_password = "";
  10. $mysql_database = "";
  11.  
  12. //Provide the email address where you want to get notifications
  13. $admin_email = "donations@tuminecraft.com";
  14.  
  15. //Provite your site name or server name here
  16. $website_name = "T.U.MineCraft NetWorks";
  17.  
  18. //Provide the url where Donator Express is installed
  19. //DO NOT include a trailing slash at the end
  20. $dep_url = "http://mc.tuminecraft.com/donations";
  21.  
  22. // -----------------------------------------------------------------------------------------
  23. // -----------------------------------------------------------------------------------------
  24.  
  25. //The name of your virtual currency. You may choose to change this value.
  26. $virtual_currency = "Tokens";
  27.  
  28. //The email where you will be accepting payments to.
  29. $paypal = "webmaster@tuminecraft.com";
  30.  
  31. //The currency symbol you will be accepting payments in.
  32. $currency_symbol = " $";
  33. //The currency code in which you will be accepting payments in.
  34. $currency_code = "USD";
  35.  
  36. //By Default 1 Token sells for 1 $USD. Users once registered have the option to
  37. //purchase additional tokens in the Donator Express Portal. Currently there are
  38. //four configurable Virtual Currency/Token packages users can purchase to increase
  39. //their balance. Specify the price for them below, or leave them if you would like
  40. //to use the default values.
  41.  
  42. //Diamond Ore One: Input the price below for 10 Tokens
  43. $diamond1 = "10";
  44. //Diamond Ore Two: Input the price below for 20 Tokens
  45. $diamond2 = "20";
  46. //Diamond Ore Three: Input the price below for 30 Tokens
  47. $diamond3 = "30";
  48. //Diamond Ore Four: Input the price below for 40 Tokens
  49. $diamond4 = "40";
  50.  
  51. // -----------------------------------------------------------------------------------------
  52. // -----------------------------------------------------------------------------------------
  53.  
  54. //For better security. Get a random string from this link: http://tinyurl.com/randstr
  55. $securekey = "";
  56.  
  57. //Would you like to log successful admin logins to the admin control panel in the web portal?
  58. //Unsuccessful admin logins are automatically logged into the database.
  59. //Set to false if you would rather not log successful logins.
  60.  
  61. $log_admin_access = "true";
  62.  
  63. // -------------------------
  64. // --- End Configuration ---
  65. // -------------------------
  66. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement