Advertisement
Guest User

Untitled

a guest
Apr 3rd, 2016
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.77 KB | None | 0 0
  1. <?php
  2.  
  3. // Enter the URL to the directory you are installing SDonate in (remember to include the http:// and the trailing forward-slash)
  4. $dir = "http://cdn.drewscommunity.com/purchasestuff/web/";
  5.  
  6. // Enter your API key from sdonate.com
  7. $sdonateapi = 'DB7S307DBEMO7XWKFLOE';
  8.  
  9. // Enter your steam API key from https://steamcommunity.com/dev/apikey
  10. $steamapi = '4938A19BD1CBAB3D5127271D6A373622';
  11.  
  12. // The host of your MySQL database. If it's hosted on the same server as your website just leave it as 'localhost'
  13. $dbhost = 'localhost';
  14.  
  15. // The name of your MySQL database
  16. $dbname = 'drewscom_webpurchase';
  17.  
  18. // The username for your MySQL account
  19. $dbusername = 'Drewbie10';
  20.  
  21. // The password for your MySQL account
  22. $dbpassword = '15Gmod51';
  23.  
  24. // The currency code of the main currency you wish to use.
  25. $currencycode = 'USD';
  26.  
  27.  
  28.  
  29.  
  30. // -------------------------------------------------------------------------------------------------------------------------------------------------------- //
  31. // THE SETTINGS BELOW ARE OPTIONAL AND ONLY REQUIRED IF YOU WANT TO ENABLE GOOGLE RECAPTCHA, LEAVE BOTH EMPTY IF YOU DO NOT WANT TO ENABLE GOOGLE RECAPTCHA
  32. // -------------------------------------------------------------------------------------------------------------------------------------------------------- //
  33.  
  34. // Enter your Google reCAPTCHA site key from https://www.google.com/recaptcha/admin
  35. $recaptchasitekey = '6LenVhQTAAAAAMllE8-MbQMQQ8pogF2b7D1oHYVh';
  36.  
  37. // Enter your Google reCAPTCHA secret key from https://www.google.com/recaptcha/admin
  38. $recaptchasecretkey = '6LenVhQTAAAAAL8jj2fh2vBhDcdDVmbGxK7iLTxM';
  39.  
  40. // ---------------------------- DO NOT EDIT ANYTHING BELOW HERE ---------------------------- //
  41.  
  42. require_once('currencycodes.php');
  43. require_once('base_funcs.php');
  44.  
  45. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement