M
Hola buenas tardes @Morenaloka ,hola me gustaria saber como puedo activar, para que puedan comprar desde la pagina puntos.
//////////////
/// PAYPAL ///
//////////////
// https://www.paypal.com/
// Write your paypal address here, and what currency you want to receive money in.
$config['paypal'] = array(
'enabled' => false, // IF ENABLED and you are using UniserverZ, make sure on core/php74 on php_production you have enable ;extension= CURL, just remove the ; before
'email' => 'edit@me.com', // Example: paypal@mail.com
'currency' => 'EUR',
'points_per_currency' => 10, // 1 currency = ? points? [ONLY used to calculate bonuses]
'success' => "http://".$_SERVER['HTTP_HOST']."/success.php",
'failed' => "http://".$_SERVER['HTTP_HOST']."/failed.php",
'ipn' => "http://".$_SERVER['HTTP_HOST']."/ipn.php",
'showBonus' => true,
);
// Configure the "buy now" buttons prices, first write price, then how many points you get.
// Giving some bonus points for higher donations will tempt users to donate more.
$config['paypal_prices'] = array(
// price => points,
1 => 45, // -10% bonus
10 => 100, // 0% bonus
15 => 165, // +10% bonus
20 => 240, // +20% bonus
25 => 325, // +30% bonus
30 => 420, // +40% bonus
);