• 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!

[Znote] How to make paypal work?

Blasphemy

Well-Known Member
Joined
Jan 5, 2012
Messages
387
Reaction score
67
@Znote Hi there!
I'm trying to activate paypal functions on my webapp, but I don't know anything about how to do it... I've been reading some topics in here, but I can get them to work....
I need you to help me to make it work, I'm minded to pay you for it if necessary!
these are my files:

Code:
    $config['paypal'] = array(
        'enabled' => false,
        'email' => '[email protected]', // Example: [email protected]
        'currency' => 'USD',
        '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' => false,
    );
 

Attachments

Code:
    $config['paypal'] = array(
        'enabled' => true,
        'email' => '[email protected]', // Example: [email protected]
        'currency' => 'USD',
        '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' => false,
    );

Changed
'enabled' => false,
to
'enabled' => true,
 
Code:
    $config['paypal'] = array(
        'enabled' => true,
        'email' => '[email protected]', // Example: [email protected]
        'currency' => 'USD',
        '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' => false,
    );

Changed
'enabled' => false,
to
'enabled' => true,
well....................................
Let me explain... that obviously I'm refering that the system is not working, even with the "enabled" is set as true...

xd
Post automatically merged:

I was following this guide, until i noted @Znote has his paypal acc in a strange language :/
heeeeelpp

bump

 
Last edited:
how did you solved share with the community

I can say that this thread may helps you a lot...

and the fact you need to know (ofc if you don't know, just as me) is that SANDBOX is a only testing account, and you must change to LIVE to make it work... that's all you want to know (Y)
 
Back
Top