HEX
Server: Apache
System: Linux srv674466.hstgr.cloud 5.14.0-503.19.1.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Jan 7 17:08:27 EST 2025 x86_64
User: rialindia (1055)
PHP: 8.2.30
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/rialindia/public_html/wp-content/plugins/nitropack/constants.php
<?php

defined('ABSPATH') or die('No script kiddies please!');

use \NitroPack\SDK\Filesystem;

function nitropack_trailingslashit($string) {
	return rtrim($string, '/\\') . '/';
}

define('NITROPACK_VERSION', '1.18.5');
define('NITROPACK_OPTION_GROUP', 'nitropack');
define('NITROPACK_SLUG', 'nitropack');
define('NITROPACK_FILE', __FILE__);
define('NITROPACK_PLUGIN_DIR', nitropack_trailingslashit(dirname(__FILE__)));
define('NITROPACK_CLASSES_DIR', nitropack_trailingslashit(NITROPACK_PLUGIN_DIR . 'classes'));

define('NITROPACK_HEARTBEAT_INTERVAL', 60 * 5); // 5min
define('NITROPACK_NONCE', 'np_nonce_' . NITROPACK_VERSION);

if (!defined("NITROPACK_SUPPORT_BUBBLE_VISIBLE")) define("NITROPACK_SUPPORT_BUBBLE_VISIBLE", true);
if (!defined("NITROPACK_SUPPORT_BUBBLE_URL")) define("NITROPACK_SUPPORT_BUBBLE_URL", "https://support.nitropack.io/");

spl_autoload_register(function ($class) {
	$filename = str_replace("\\", "/", $class) . ".php";
	$filename = str_replace("NitroPack/", "", $filename);
	$filepath = NITROPACK_CLASSES_DIR . ltrim($filename, "/");
	if (file_exists($filepath)) {
		require_once $filepath;
	}
});

if (!defined("NITROPACK_USE_REDIS")) define("NITROPACK_USE_REDIS", false); // Set this to true to enable storing cache in Redis
if (!defined("NITROPACK_REDIS_HOST")) define("NITROPACK_REDIS_HOST", "127.0.0.1"); // Set this to the IP of your Redis server
if (!defined("NITROPACK_REDIS_PORT")) define("NITROPACK_REDIS_PORT", 6379); // Set this to the port of your Redis server
if (!defined("NITROPACK_REDIS_PASS")) define("NITROPACK_REDIS_PASS", NULL); // Set this to the password of your redis server if authentication is needed
if (!defined("NITROPACK_REDIS_DB")) define("NITROPACK_REDIS_DB", NULL); // Set this to the number of the Redis DB if you'd like to not use the default one

if (!defined("NITROPACK_CACHE_DIR_NAME")) define("NITROPACK_CACHE_DIR_NAME", substr(md5(__FILE__), 0, 7) . "-nitropack"); // IMPORTANT: If you are changing the pattern make sure to add it to the $oldNitroDirs array in NitroPack::getDataDir()

define('NITROPACK_DATA_DIR', NitroPack\WordPress\NitroPack::getDataDir());
define('NITROPACK_PLUGIN_DATA_DIR', NitroPack\WordPress\NitroPack::getPluginDataDir());
define('NITROPACK_CONFIG_FILE', nitropack_trailingslashit(NITROPACK_PLUGIN_DATA_DIR) . 'config.json');
define('NITROPACK_LOGS_DATA_DIR', WP_CONTENT_DIR . '/uploads/nitropack-logs/' );

if (Filesystem::fileExists(NITROPACK_CONFIG_FILE) && (NitroPack\WordPress\NitroPack::$nitroDirMigrated || NitroPack\WordPress\NitroPack::$nitroConfigMigrated)) {
	// Update the config_path according to the new location of the file.
	// Otherwise it will be ignored later and the plugin will appear disconnected.
	(new NitroPack\WordPress\Config())->updateConfigPath();
}

add_action('plugins_loaded', function () {
	define('NITROPACK_PLUGIN_DIR_URL', nitropack_trailingslashit(plugin_dir_url(__FILE__)));
}, 1);

if (!defined("NITROPACKIO_HOST")) {
	$nitropackIo = getenv("NITROPACKIO_HOST");
	if (!$nitropackIo) {
		$nitropackIo = "nitropack.io";
	}
	define("NITROPACKIO_HOST", $nitropackIo);
}