Advertisement
Guest User

donate cfg

a guest
Oct 24th, 2017
1,742
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.60 KB | None | 0 0
  1. <?php
  2.     /*
  3.      * Donation Amounts
  4.     */
  5.     $amount_tier1 = "5.00"; // Donation Amount for Tier 1
  6.     $amount_tier2 = "10.00"; // Donation Amount for Tier 2
  7.     $amount_tier3 = "15.00"; // Donation Amount for Tier 3
  8.     $amount_tier4 = "25.00"; // Donation Amount for Tier 4
  9.     $amount_tier5 = "50.00"; // Donation Amount for Tier 5
  10.    
  11.     /*
  12.      * PayPal Settings
  13.     */
  14.    
  15.     // Enter the currency which you use. (for example: EUR, USD, CHF)
  16.     $paypal_currency = "USD";
  17.    
  18.     /*
  19.      * PayPal URL
  20.      * Sandbox-URL: https://www.sandbox.paypal.com/cgi-bin/webscr
  21.      * Live-URL: https://www.paypal.com/cgi-bin/webscr
  22.     */
  23.     $paypal_url = "https://www.paypal.com/cgi-bin/webscr";
  24.  
  25.     // Enter your PayPal E-Mail here.
  26.     $paypal_email = "mrw10@university.edu";
  27.  
  28.     //Enter your Notify URL here.
  29.     $notify_url = "https://abstractbhop.com/donate/classes/paypal-listener.php";
  30.  
  31.     // Enter your Success URL here.
  32.     $success_url = "https://abstractbhop.com/donate/verify_success.php";
  33.  
  34.     // Enter your Error URL here.
  35.     $cancel_url = "https://abstractbhop.com/donate/verify_error.php";
  36.    
  37.     /*
  38.      * Steam API Settings
  39.     */
  40.    
  41.     // Enter your API Key here - You can find it at: http://steamcommunity.com/dev/apikey
  42.     $steamauth['apikey'] = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx";
  43.    
  44.     // URL of your main website
  45.     $steamauth['domainname'] = "http://abstractbhop.com/donate";
  46.    
  47.     // URL which user get redirected to after logout
  48.     $steamauth['logoutpage'] = "http://abstractbhop.com/donate";
  49.    
  50.     // URL which user get redirected to after login
  51.     $steamauth['loginpage'] = "http://abstractbhop.com/donate";
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement