Activate Live Api Paypal mode

0

I am enabling the payment option on my website through the PayPal App, I have done the tests with the sandbox mode and everything works correctly; The problem is that I want to test it in live mode so that it is ready for production and I can not enable the Live option, I want to know if there is any kind of requirement to enable in that function. Attached images:

    
asked by Christopher Tavara 04.04.2018 в 07:01
source

1 answer

0

The following code must be added below the credentials declaration:

$paypal->setConfig([
'mode'=>'live',
'http.ConnectionTimeOut'=>30,
'log.LogEnabled' => false,
'log.FileName'=>'',
'log.LogLevel' =>'FINE',
'validation.level'=>'log' ]);

With that we specify that the live mode is activated. :)

    
answered by 05.04.2018 в 08:45