⚝
One Hat Cyber Team
⚝
Your IP:
216.73.216.19
Server IP:
178.33.27.10
Server:
Linux cpanel.dev-unit.com 3.10.0-1160.108.1.el7.x86_64 #1 SMP Thu Jan 25 16:17:31 UTC 2024 x86_64
Server Software:
Apache/2.4.57 (Unix) OpenSSL/1.0.2k-fips
PHP Version:
8.2.11
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
id
/
dalily-1.dev-unit.com
/
config
/
View File Name :
paypal.php
<?php /** * PayPal Setting & API Credentials * Created by Raza Mehdi <srmk@outlook.com>. */ $c['config'] = include 'templatecookie.php'; return [ 'mode' => $c['config']['paypal_live_mode'], // Can only be 'sandbox' Or 'live'. If empty or invalid, 'live' will be used. 'sandbox' => [ 'client_id' => $c['config']['paypal_sandbox_client_id'], 'client_secret' => $c['config']['paypal_sandbox_client_secret'], 'app_id' => 'APP-80W284485P519543T', ], 'live' => [ 'client_id' => $c['config']['paypal_live_client_id'], 'client_secret' => $c['config']['paypal_live_client_secret'], 'app_id' => env('PAYPAL_LIVE_APP_ID', ''), ], 'payment_action' => env('PAYPAL_PAYMENT_ACTION', 'Sale'), // Can only be 'Sale', 'Authorization' or 'Order' 'currency' => env('PAYPAL_CURRENCY', 'USD'), 'notify_url' => env('PAYPAL_NOTIFY_URL', ''), // Change this accordingly for your application. 'locale' => env('PAYPAL_LOCALE', 'en_US'), // force gateway language i.e. it_IT, es_ES, en_US ... (for express checkout only) 'validate_ssl' => env('PAYPAL_VALIDATE_SSL', true), // Validate SSL when creating api client. 'active' => $c['config']['paypal_active'], ];