ÿØÿà JFIF ÿÛ „ ( %"1"%)+...383,7(-.-
![]() Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.20 System : Linux st2.domain.com 3.10.0-1127.10.1.el7.x86_64 #1 SMP Wed Jun 3 14:28:03 UTC 2020 x86_64 User : apache ( 48) PHP Version : 7.4.20 Disable Function : NONE Directory : /var/www/html/form/ |
<?php include_once(dirname(__FILE__).'/inc/functions.php'); include_once(dirname(__FILE__).'/inc/common.php'); include_once(dirname(__FILE__).'/inc/icdb.php'); define('DOING_FRONT', true); $wpdb = null; $ready = false; if (file_exists(dirname(__FILE__).'/inc/config.php')) { include_once(dirname(__FILE__).'/inc/config.php'); try { $wpdb = new ICDB(UAP_DB_HOST, UAP_DB_HOST_PORT, UAP_DB_NAME, UAP_DB_USER, UAP_DB_PASSWORD, UAP_TABLE_PREFIX); create_tables(); get_options(); if (!empty($options['login']) && !empty($options['password']) && !empty($options['url'])) $ready = true; } catch (Exception $e) { } } if (!$ready) { if (isset($_REQUEST['action'])) { $return_object = array(); $return_object['status'] = 'ERROR'; $return_object['message'] = esc_html__('Please install Admin Panel properly.', 'hap'); echo json_encode($return_object); exit; } header('Location: '.admin_url('install.php')); exit; } include_once(dirname(__FILE__).'/inc/plugins.php'); do_action('init'); ?> <!DOCTYPE html> <html lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <title><?php echo esc_html__('Admin Panel', 'hap'); ?></title> <style> body {font-family: arial; font-size: 14px; color: #444;} .container {position: absolute; top: 0; right: 0; bottom: 0; left: 0; min-width: 240px; height: 100%; display: table; width: 100%;} .content {max-width: 1024px; margin: 0px auto; padding: 20px 0; position: relative; display: table-cell; text-align: center; vertical-align: middle;} .content-box {border: 1px solid #e0e0e0; padding: 20px 50px; max-width: 720px; display: inline-block;} h1, p {font-weight: 400; padding: 0; margin: 5px 0;} </style> <body> <div class="container"> <div class="content"> <div class="content-box"> <h1><?php echo esc_html__('Admin Panel', 'hap'); ?></h1> <p><?php echo esc_html__('Use popular WordPress plugins anywhere!', 'hap'); ?></p> </div> </div> </div> </body> </html>