Linux sagir-us1.hostever.us 5.14.0-570.51.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Oct 8 09:41:34 EDT 2025 x86_64
LiteSpeed
Server IP : 104.247.108.91 & Your IP : 216.73.216.105
Domains : 74 Domain
User : georgeto
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
softaculous /
apps /
php-common /
themes /
enduser /
Delete
Unzip
Name
Size
Permission
Date
Action
multi_php_theme.php
3.8
KB
-rw-r--r--
2024-05-02 06:51
multiphp_ini_editor_theme.php
7.38
KB
-rw-r--r--
2024-05-02 06:51
pear_module_theme.php
5.57
KB
-rw-r--r--
2024-04-30 08:04
php_extension_theme.php
8.85
KB
-rw-r--r--
2025-04-22 03:44
php_pear_theme.php
9.51
KB
-rw-r--r--
2024-05-02 06:51
Save
Rename
<?php ////////////////////////////////////////////////////////////// //=========================================================== // WEBUZO CONTROL PANEL // Inspired by the DESIRE to be the BEST OF ALL // ---------------------------------------------------------- // Started by: Pulkit // Date: 10th Jan 2009 // Time: 21:00 hrs // Site: https://webuzo.com/ (WEBUZO) // ---------------------------------------------------------- // Please Read the Terms of Use at https://webuzo.com/terms // ---------------------------------------------------------- //=========================================================== // (c) Softaculous Ltd. //=========================================================== ////////////////////////////////////////////////////////////// if(!defined('SOFTACULOUS')){ die('Hacking Attempt'); } function phpc_multi_php_theme(){ global $globals, $theme, $softpanel, $WE, $domain, $error, $done, $domains_list, $installed_php; echo ' <div class="card soft-card p-3 mb-4"> <div class="sai_main_head"> <img src="'.PHP_COMMON_ASSETS.'multi_php.png" alt="" class="webu_head_img me-2"/> <h5 class="d-inline-block">'.__('MultiPHP Manager').'</h5> </div> </div> <div class="card soft-card p-4 col-12"> <div class="sai_main_head mb-2"> <div class="col-12 col-md-4 mb-2 float-end"> <label class="form-label me-1">'.__('Search by PHP Version').'</label> <select name="php_search" id="php_search" class="search_val" style="width:50%"> <option value="all">'.__('All').'</option> <option value="">'.__('Default').' '.$installed_php[$globals['WU_DEFAULT_PHP']]['name'].' ('.$globals['WU_DEFAULT_PHP'].')</option>'; foreach ($installed_php as $k => $v){ echo '<option value="'.$k.'">'.$v['name'].' ('.$k.')</option>'; } echo ' </select> </div> </div> <form accept-charset="'.$globals['charset'].'" name="importsoftware" method="post" action="" onsubmit="return checkform();" role="form" class="form-horizontal"> <div class="table-responsive"> <table class="table align-middle table-nowrap mb-0 webuzo-table" > <thead class="sai_head2"> <tr> <th class="align-middle">'.__('Domain').'</th> <th class="align-middle">'.__('PHP Version').'</th> </tr> </thead> <tbody> <tr id = "nofound" style="display:none"> <td colspan="100" class="text-center"> <span>'.__('No match found').'</span> </td> </tr>'; foreach ($domains_list as $key => $value){ echo ' <tr class="search_row"> <td class="endurl"> <a target="_blank" href="http://' . $key . '"> '.$key.'</a> <input type="hidden" name="'.$key.'" value="'.$key.'"> </td> <td width="40%"> <select name="php_version_'.$key.'" id="php_version_'.$key.'" class="form-select mb-3"> <option value="" '.(empty($value['php_version']) ? 'selected' : '').'>'.__('Default').' '.$installed_php[$globals['WU_DEFAULT_PHP']]['name'].' ('.$globals['WU_DEFAULT_PHP'].')</option>'; foreach ($installed_php as $k => $v){ echo '<option value="'.$k.'" '.($value['php_version'] == $k ? 'selected' : '').'>'.$v['name'].' ('.$k.')</option>'; } echo ' </select> </td> </tr>'; $i++; } echo ' </tbody> </table> </div> <div class="text-center mt-4"> <input type="submit" class="flat-butt me-2" value="'.__('Apply').'" name="submitphp" id="submitphp" onclick="return submitit(this)" data-donereload="1" /> </div> </form> </div> <script> $("#php_search").change(function(){ var php = $("#php_search option:selected").val(); var i = 0; $(".search_row").each(function(key,val){ var name = $(this).find("select").val(); if(name === php || php === "all"){ i++; $(this).show(); }else{ $(this).hide(); } }); if(i == 0){ $("#nofound").show(); }else{ $("#nofound").hide(); } }); </script>'; }