• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!
  • 2026 staff recruitment is open! Check it out and consider applying!

AAC Myaac Sandbox

_M4G0_

Intermediate OT User
Joined
Feb 6, 2016
Messages
550
Solutions
17
Reaction score
108
Hello
im try to activate sandbox on paypal but i can't enable

config
PHP:
$config['paypal'] = array(
    'enabled' => true,
    'email' => '[email protected]',
    'contact_email' => '', // if empty, email is used
    'item_name' => 'Premium Points',
    'payment_type' => '_xclick', // '_xclick' (Buy Now) or '_donations'
    'currency_code' => 'USD', // https://developer.paypal.com/docs/integration/direct/rest/currency-codes/
    'use_sandbox' => true, // set to true if you want to test IPN in sandbox mode
    'terms' => true, // display terms?
    'options' => array( // cost in USD => points
        '5.00' => 60,
        '10.00' => 120,
        '20.00' => 240,
        '40.00' => 480,
        '60.00' => 1080
    )
);
 
Back
Top