Файловый менеджер - Редактировать - /home/digilove/public_html/110/installation/framework/utils/servertechnology.php
Назад
<?php /** * ANGIE - The site restoration script for backup archives created by Akeeba Backup and Akeeba Solo * * @package angie * @copyright Copyright (c)2009-2023 Nicholas K. Dionysopoulos / Akeeba Ltd * @license GNU General Public License version 3, or later */ defined('_AKEEBA') or die; class AUtilsServertechnology { /** * Does the current server support .htaccess files? * * @return int 0=No, 1=Yes, 2=Maybe */ public static function isHtaccessSupported() { // Get the server string $serverString = $_SERVER['SERVER_SOFTWARE']; // Not defined? Return maybe (2) if (empty($serverString)) { return 2; } // Apache? Yes if (strtoupper(substr($serverString, 0, 6)) == 'APACHE') { return 1; } // NginX? No if (strtoupper(substr($serverString, 0, 5)) == 'NGINX') { return 0; } // IIS? No if (strstr($serverString, 'IIS') !== false) { return 0; } // Anything else? Maybe. return 2; } /** * Does the current server supports NginX configuration files? * * @return int 0=No, 1=Yes, 2=Maybe */ public static function isNginxSupported() { // Get the server string $serverString = $_SERVER['SERVER_SOFTWARE']; // Not defined? Return maybe (2) if (empty($serverString)) { return 2; } // NginX? Yes if (strtoupper(substr($serverString, 0, 5)) == 'NGINX') { return 1; } // Anything else? No. return 0; } /** * Does the currect server support web.config files? * * @return int 0=No, 1=Yes, 2=Maybe */ public static function isWebConfigSupported() { // Get the server string $serverString = $_SERVER['SERVER_SOFTWARE']; // Not defined? Return maybe (2) if (empty($serverString)) { return 2; } // Apache? No if (strtoupper(substr($serverString, 0, 6)) == 'APACHE') { return 0; } // NginX? No if (strtoupper(substr($serverString, 0, 5)) == 'NGINX') { return 0; } // IIS? Yes if (strstr($serverString, 'IIS') !== false) { return 1; } // Anything else? No. return 0; } }
| ver. 1.4 |
Github
|
.
| PHP 7.4.33 | Генерация страницы: 7.99 |
proxy
|
phpinfo
|
Настройка