uawdijnntqw1x1x1
IP : 216.73.216.127
Hostname : toronto-dev2
Kernel : Linux toronto-dev2 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
srv
/
users
/
craft4
/
apps
/
craft4-newsite-space
/
vendor
/
cebe
/
..
/
craftcms
/
.
/
.
/
cms
/
bootstrap
/
console.php
/
/
<?php /** * Craft console bootstrap file. * * @link https://craftcms.com/ * @copyright Copyright (c) Pixel & Tonic, Inc. * @license https://craftcms.github.io/license/ */ use yii\console\ExitCode; ini_set('display_errors', 'stderr'); // Make sure they're running PHP 8+ if (PHP_VERSION_ID < 80002) { echo "Craft requires PHP 8.0.2 or later.\n"; exit(ExitCode::UNSPECIFIED_ERROR); } // Make sure $_SERVER['SCRIPT_FILENAME'] is set if (!isset($_SERVER['SCRIPT_FILENAME'])) { $trace = debug_backtrace(0); if (($first = end($trace)) !== false && isset($first['file'])) { $_SERVER['SCRIPT_FILENAME'] = $first['file']; } } mb_detect_order('auto'); // https://github.com/craftcms/cms/issues/4239 setlocale( LC_CTYPE, 'C.UTF-8', // libc >= 2.13 'C.utf8' // different spelling ); // Set default timezone to UTC date_default_timezone_set('UTC'); $appType = 'console'; return require __DIR__ . '/bootstrap.php';
/srv/users/craft4/apps/craft4-newsite-space/vendor/cebe/../craftcms/././cms/bootstrap/console.php