Changeset 2818
- Timestamp:
- 06/11/2008 08:31:06 AM (5 months ago)
- Files:
-
- 1 modified
-
branches/website/application/config/payment.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/website/application/config/payment.php
r2761 r2818 18 18 /* 19 19 * PayPal Options: 20 * API_UserName- the username to use21 * API_Password- the password to use22 * API_Signature- the api signature to use23 * R eturnUrl- the URL to send the user to after they login with paypal20 * 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 24 24 * CANCELURL - the URL to send the user to if they cancel the paypal transaction 25 25 * CURRENCYCODE - the Currency Code to to the transactions in (What do you want to get paid in?) … … 27 27 $config['Paypal'] = array 28 28 ( 29 ' API_UserName' => '',30 ' API_Password' => '',31 ' API_Signature' => '',32 'R eturnUrl' => 'http://kohanaphp.com/donate/paypal.html',29 'USER' => '', 30 'PWD' => '', 31 'SIGNATURE' => '', 32 'RETURNURL' => 'http://kohanaphp.com/donate/paypal.html', 33 33 'CANCELURL' => 'http://kohanaphp.com/donate/index.html', 34 'CURRENCYCODE' => 'USD',35 34 );
