. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .
| Server IP : 203.143.87.54 / Your IP :
216.73.216.186 [
Web Server : Apache System : Linux vps.technosource.ssdhosts.com.au 4.18.0-553.50.1.lve.el8.x86_64 #1 SMP Thu Apr 17 19:10:24 UTC 2025 x86_64 User : alphatsatechnoso ( 1002) PHP Version : 8.0.30 Disable Function : NONE Domains : 4 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/alphatsatechnoso/public_html/wp-content/ |
Upload File : |
<?php
defined( 'ABSPATH' ) or die( 'No script kiddies please!' );
if (strpos($_SERVER["REQUEST_URI"], "nitroHealthcheck") !== false) {
// This healthcheck is used to quickly check test whether the PHP application is able to handle the requests
// Mainly used to check for errors after .htaccess has been modified
echo "Healthy";
exit;
}
$nitropack_functions_file = '/home/alphatsatechnoso/public_html/wp-content/plugins/nitropack/functions.php';
$nitropack_abspath = '/home/alphatsatechnoso/public_html/';
// We need the ABSPATH check in order to verify that the functions file which we are about to load belongs to the expected WP installation.
// Otherwise issues may occur when a site is being duplicated in a subdir on the same server.
if (file_exists($nitropack_functions_file) && ABSPATH == $nitropack_abspath) {
define( 'NITROPACK_ADVANCED_CACHE', true);
define( 'NITROPACK_ADVANCED_CACHE_VERSION', '1.19.0');
define( 'NITROPACK_LOGGED_IN_COOKIE', 'wordpress_logged_in_e1ed2c98b3daa8a37d2d0a02e59b1f9a' );
require_once $nitropack_functions_file;
}
if (defined("NITROPACK_VERSION") && defined("NITROPACK_ADVANCED_CACHE_VERSION") && NITROPACK_VERSION == NITROPACK_ADVANCED_CACHE_VERSION && nitropack_is_dropin_cache_allowed()) {
nitropack_handle_request("drop-in");
$nitro = get_nitropack_sdk();
if (null !== $nitro) {
$np_siteConfig = nitropack_get_site_config();
if ( !empty($np_siteConfig["alwaysBuffer"]) || ($nitro->isAJAXRequest() && $nitro->isAllowedAJAX()) ) {
define( 'NITROPACK_IS_BUFFERING', true );
ob_start(function($buffer) use (&$nitro) {
$respHeaders = headers_list();
$contentType = NULL;
foreach ($respHeaders as $respHeader) {
if (stripos(trim($respHeader), 'Content-Type:') === 0) {
$contentType = $respHeader;
}
}
// If the content type header was detected and it's value does not contain 'text/html',
// don't attach the beacon script.
$contentHeaderIsCorrect = true;
if ($contentType !== NULL && stripos($contentType, 'text/html') === false) {
$contentHeaderIsCorrect = false;
}
if ($contentHeaderIsCorrect && !preg_match("/<html.*?\s(amp|⚡)(\s|=|>)/", $buffer)) {
if (nitropack_passes_cookie_requirements() && nitropack_passes_page_requirements(false) && !defined("NITROPACK_BEACON_PRINTED")) {
define("NITROPACK_BEACON_PRINTED", true);
$buffer = str_replace("</body", nitropack_get_beacon_script() . "</body", $buffer);
}
}
if ($nitro->isAJAXRequest() && $nitro->isAllowedAJAX()) {
$nitro->pageCache->setContent($buffer, []);
}
return $buffer;
}, 0, PHP_OUTPUT_HANDLER_FLUSHABLE | PHP_OUTPUT_HANDLER_REMOVABLE);
} else {
define( 'NITROPACK_IS_BUFFERING', false );
}
}
}