Changeset 2818

Show
Ignore:
Timestamp:
06/11/2008 08:31:06 AM (5 months ago)
Author:
Shadowhand
Message:

Updated paypal config for website

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/website/application/config/payment.php

    r2761 r2818  
    1818/* 
    1919 * PayPal Options: 
    20  *  API_UserName - the username to use 
    21  *  API_Password - the password to use 
    22  *  API_Signature - the api signature to use 
    23  *  ReturnUrl - the URL to send the user to after they login with paypal 
     20 *  USER - the username to use 
     21 *  PWD - the password to use 
     22 *  SIGNATURE - the api signature to use 
     23 *  RETURNURL - the URL to send the user to after they login with paypal 
    2424 *  CANCELURL - the URL to send the user to if they cancel the paypal transaction 
    2525 *  CURRENCYCODE - the Currency Code to to the transactions in (What do you want to get paid in?) 
     
    2727$config['Paypal'] = array 
    2828( 
    29         'API_UserName' => '', 
    30         'API_Password' => '', 
    31         'API_Signature' => '', 
    32         'ReturnUrl' => 'http://kohanaphp.com/donate/paypal.html', 
     29        'USER' => '', 
     30        'PWD' => '', 
     31        'SIGNATURE' => '', 
     32        'RETURNURL' => 'http://kohanaphp.com/donate/paypal.html', 
    3333        'CANCELURL' => 'http://kohanaphp.com/donate/index.html', 
    34         'CURRENCYCODE' => 'USD', 
    3534);