I need some help with setting up my automatic donations. In the config file of my donation script is the following:
PAYPAL_SANDBOX - MySQL Server IP Address.
PAYPAL_ID - Your email that you use to log in to you paypal account.
PAYPAL_ID_SANDBOX - Put your seller sandbox paypal id(email). It is used to test the system without spending real money. To create sandbox accounts you have to go here. You must create two accounts, one is seller another is buyer. The email doesn’t have to match your current paypal. Use seller email in PAYPAL_ID_SANDBOX.
PAYPAL_DONATION_PURPOSE - This is shown on paypal page when someone is donating.
What would I do here? Like how would I set this up?
BTW, the developer refused to help me so I decided to come to you guys for help. Any help would be greatly appreciated.
The config script is probably written in PHP, you can tell by looking at the file extension though (.php). In this case, you probably need to define these variables (PAYPAL_SANDBOX, PAYPAL_ID, etc.). Your config script will end up looking something like this:
[code]PAYPAL_SANDBOX = "127.0.0.1";
PAYPAL_ID = "send-money-here@gmail.com";
PAYPAL_ID_SANDBOX = "test-account@gmail.com";
PAYPAL_DONATION_PURPOSE = "Your donation will go towards Best Gaming Community.";[/code]
No guarantees the above code will work, but it might help put you in the right direction. It's hard to give a definite answer when we know nothing about the donation script other than a few variable names.
Sorry, you need to Log In to post a reply to this thread.