HEX
Server: Apache/2.4.67 (Debian)
System: Linux hosting103 6.1.0-49-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
User: muzikaecom (1013)
PHP: 8.3.31
Disabled: NONE
Upload Files
File: //var/www/html/index.php
<?php
$domain = $_SERVER["HTTP_HOST"];
$reseller = json_decode(file_get_contents("https://mijn.hostingu2.nl/resellerquery.php?hostname=" . urlencode($domain)), true);
?>
<!DOCTYPE html>
<html lang="en">
	<head>
		<meta charset="UTF-8">
		<meta name="robots" content="noindex">
		<meta name="Keywords" content="Unavailable">
		<meta name="Description" content="Unavailable">
		<title><?php print $domain; ?></title>
		<link href="favicon.php" type="image/x-icon" rel="shortcut icon"/>
		<link rel="stylesheet" href="css/style.css"/>
		<script src="js/jquery-3.6.0.min.js"></script>
		<script>
			$(function() {
				var class_arr = ["background_image_1", "background_image_2", "background_image_3"];
				const index = class_arr.indexOf(window.localStorage.getItem("current_class_name"));
				if (index > -1) {
					class_arr.splice(index, 1);
				}
				const random = Math.floor(Math.random() * class_arr.length);
				$(".background_image").addClass(class_arr[random]);
				window.localStorage.setItem("current_class_name", class_arr[random]);
			});
		</script>
	</head>
	<body>
		<div class="main_content background_image">
			<div class="inner_content">
				<div class="container">
					<img src="/logo.php" class="logo_image" border="0" alt="Logo">
					<div class="content_div">
						<h1>Dit hostingpakket is  (tijdelijk) inactief</h1>
						<p>Neem contact op met de beheerder <?php print htmlspecialchars($reseller["resellername"]); ?></p>
					</div>
				</div>
			</div>
		</div>
	</body>
</html>