| Server IP : 162.253.224.18 / Your IP : 216.73.216.135 Web Server : Apache System : Linux s18.infinitysrv.com 3.10.0-962.3.2.lve1.5.89.el7.x86_64 #1 SMP Thu Jul 9 15:55:31 UTC 2026 x86_64 User : dejavumk ( 1184) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/dejavumk/nutricoach.dejavumkt.info/config/ |
Upload File : |
<?php
return array(
/**
* Set our Sandbox and Live credentials
*/
'sandbox_client_id' => env('PAYPAL_SANDBOX_CLIENT_ID', ''),
'sandbox_secret' => env('PAYPAL_SANDBOX_SECRET', ''),
'live_client_id' => env('PAYPAL_LIVE_CLIENT_ID', ''),
'live_secret' => env('PAYPAL_LIVE_SECRET', ''),
/**
* SDK configuration settings
*/
'settings' => array(
/**
* Payment Mode
*
* Available options are 'sandbox' or 'live'
*/
'mode' => env('PAYPAL_MODE', 'sandbox'),
// Specify the max connection attempt (3000 = 3 seconds)
'http.ConnectionTimeOut' => 3000,
// Specify whether or not we want to store logs
'log.LogEnabled' => true,
// Specigy the location for our paypal logs
'log.FileName' => storage_path() . '/logs/paypal.log',
/**
* Log Level
*
* Available options: 'DEBUG', 'INFO', 'WARN' or 'ERROR'
*
* Logging is most verbose in the DEBUG level and decreases
* as you proceed towards ERROR. WARN or ERROR would be a
* recommended option for live environments.
*
*/
'log.LogLevel' => 'DEBUG'
),
);