| Server IP : 3.111.61.48 / Your IP : 216.73.216.67 Web Server : Apache System : Linux ip-10-0-5-176 6.8.0-1057-aws #60~22.04.1-Ubuntu SMP Wed May 27 08:16:59 UTC 2026 x86_64 User : ubuntu ( 1000) PHP Version : 8.2.31 Disable Function : exec,passthru,shell_exec,system MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/vhost/gyaniguru.org/admin/ |
Upload File : |
<?php
include 'authentication.php';
// Header info for Temporarily service
header("HTTP/1.1 503 Service Temporarily Unavailable");
header("Status: 503 Service Temporarily Unavailable");
// echo '<pre/>';
// print_r($_SESSION);
// exit();
/**
* Name: Crad - PHP Coming Soon and Maintenance Mode Admin Panel
* URI: http://live.envalab.com/php/crad/
* Description: Crad – is a creative, unique and universal coming soon template that specially designed for coming soon/under construction related websites. It can be use for any kind of Business, Agency, Hotel, Restaurant, Personal, Corporate, Gym, Contract, Maintenance, Tours & Travels, Product Launch, Service Launch etc related website landing.
* Version: 1.0.0
* Author: Envalab
* Author URI: http://envalab.com/
*/
/**
* Routing
*/
$page = isset($_REQUEST['p']) ? trim($_REQUEST['p']) : "general-settings";
$page = htmlspecialchars($page, ENT_QUOTES, 'UTF-8');
// Get pages
switch ($page) {
case 'design-templates':
require_once('crad-design-templates.php');
break;
case 'about-page':
require_once('crad-about-page.php');
break;
case 'contact-page':
require_once('crad-contact-page.php');
break;
case 'subscribers':
require_once('crad-subscribers.php');
break;
case 'seo-smtp':
require_once('crad-seo-smtp.php');
break;
default:
require_once('crad-general-settings.php');
break;
}