regluit/payment
Raymond Yee 2cbdd797d5 Stripped some parameters from payment/parameters that belong in settings 2011-11-28 16:38:28 -08:00
..
management artifact of some download? 2011-10-18 21:33:22 -04:00
migrations added new migrations 2011-11-21 11:29:37 -05:00
README.txt Adding missing README 2011-09-27 08:56:50 -04:00
__init__.py Adding pledge payment support 2011-09-27 08:48:11 -04:00
manager.py Adding code to support embedded payments 2011-11-22 06:14:58 -05:00
models.py Allow Transaction.secret to be null. Created migration for payment/models 2011-11-01 14:16:27 -07:00
parameters.py Stripped some parameters from payment/parameters that belong in settings 2011-11-28 16:38:28 -08:00
paypal.py First pass at unwiring campaign_detail from the real pledge view. 2011-11-28 15:39:06 -08:00
tests.py First pass at incorporating status into Campaign 2011-10-07 20:11:57 -07:00
urls.py Implementing check of paypal PAY transaction using PaymentDetails 2011-10-27 04:05:21 -04:00
views.py Implementing check of paypal PAY transaction using PaymentDetails 2011-10-27 04:05:21 -04:00

README.txt

Setup instructions for payment module

1)  In parameters.py, set the following:

    PAYPAL_USERNAME = Paypal username from developer.paypal.com
    PAYPAL_PASSWORD =  Paypal password from developer.paypal.com
    PAYPAL_SIGNATURE = Paypal signature from developer.paypal.com
    PAYPAL_APPID = 'APP-80W284485P519543T' (for all sandbox apps), or the real APPID

    BASE_URL = Set this to the server IP address that is accessible via port 80.  
                Local IP addresses, or non-port 80 addresses will NOT work with paypal IPN.
                
    COMPLETE_URL = relative local URL for a plege confirmation
    CANCEL_URL = relative local url for a pledge cacellation
    
2) Sync the database to include the payment specific tables

3) Configure your paypal sandbox account at developer.paypal.com with at least 1 seller and 1 buyer.  The buyer info is entered into the sandbox, the seller
    info needs to be entered into the pledge/payment itself

4) A test pledge code sample is available in regluit.payment.view.testPledge