GRAYBYTE WORDPRESS FILE MANAGER7681

Server IP : 198.54.121.189 / Your IP : 216.73.216.112
System : Linux premium69.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
PHP Version : 7.4.33
Disable Function : NONE
cURL : ON | WGET : ON | Sudo : OFF | Pkexec : OFF
Directory : /home/giriqfky/trustyourlawyer.com/wp-content/plugins/backwpup/parts/sidebar/
Upload Files :
Current_dir [ Writeable ] Document_root [ Writeable ]

Command :


Current File : /home/giriqfky/trustyourlawyer.com/wp-content/plugins/backwpup/parts/sidebar//storage-FTP.php
<?php
use BackWPup\Utils\BackWPupHelpers;
$job_id = $job_id ?? null;
BackWPupHelpers::component("closable-heading", [
  'title' => __("FTP Settings", 'backwpup'),
  'type' => 'sidebar'
]);

if (null === $job_id || empty($job_id) ) {
	$ftpdir = trailingslashit(sanitize_title_with_dashes(get_bloginfo('name')));
	$ftpmaxbackups = 15;
	$is_in_form    = true;
} else {
  $ftpdir = BackWPup_Option::get($job_id, 'ftpdir', trailingslashit(sanitize_title_with_dashes(get_bloginfo('name'))));
  $ftpmaxbackups = esc_attr(BackWPup_Option::get($job_id, 'ftpmaxbackups', 15));
}
?>

<?php if (isset($is_in_form) && ( false === $is_in_form || 'false' === $is_in_form )) : ?>
  <p>
    <?php
    BackWPupHelpers::component("form/button", [
      "type" => "link",
      "label" => __("Back to Storages", 'backwpup'),
      "icon_name" => "arrow-left",
      "icon_position" => "before",
      "trigger" => "load-and-open-sidebar",
      "display" => "storages",
      "data"		=> ['job-id' => $job_id, 'block-type' => 'children', 'block-name' => 'sidebar/storages',  ]
    ]);
    ?>
  </p>
<?php endif; ?>

<?php BackWPupHelpers::component("containers/scrollable-start"); ?>

<div class="rounded-lg p-4 bg-grey-100">
  <?php
  BackWPupHelpers::component("heading", [
    "level" => 2,
    "title" => __("Server and Login", 'backwpup'),
    "font" => "small",
    "class" => "mb-4",
  ]);
  ?>

  <div class="flex flex-col gap-2">
    <div class="flex gap-2">
      <div class="flex-auto">
        <?php
        BackWPupHelpers::component("form/text", [
          "name" => "ftphost",
          "identifier" => "ftphost",
          "label" => __("FTP Server", 'backwpup'),
          "value" => esc_attr(BackWPup_Option::get($job_id, 'ftphost')),
          "required" => true,
        ]);
        ?>
      </div>
      <div class="w-[88px]">
        <?php
        BackWPupHelpers::component("form/text", [
					"type" => "number",
					"min" => 1,
					"max" => 66000,
          "name" => "ftphostport",
          "identifier" => "ftphostport",
          "label" => __("Port", 'backwpup'),
          "value" => esc_attr(BackWPup_Option::get($job_id, 'ftphostport', 21)),
          "required" => true,
        ]);
        ?>
      </div>
    </div>

    <?php
    BackWPupHelpers::component("form/text", [
      "name" => "ftpuser",
      "identifier" => "ftpuser",
      "label" => __("Username", 'backwpup'),
      "value" => esc_attr(BackWPup_Option::get($job_id, 'ftpuser')),
      "required" => true,
    ]);
    ?>

    <?php
    BackWPupHelpers::component("form/text", [
      "name" => "ftppass",
      "identifier" => "ftppass",
      "type" => "password",
      "label" => __("Password", 'backwpup'),
      "value" => esc_attr(
            BackWPup_Encryption::decrypt(BackWPup_Option::get($job_id, 'ftppass'))),
      "required" => true,
    ]);
    ?>

    <?php
    BackWPupHelpers::component("form/text", [
      "name" => "ftptimeout",
      "identifier" => "ftptimeout",
      "type" => "number",
			"min" => 1,
			"max" => 300,
      "label" => __("Timeout for FTP connection (in seconds)", 'backwpup'),
      "value" => esc_attr(BackWPup_Option::get($job_id, 'ftptimeout', 90)),
      "required" => true,
    ]);
    ?>

    <?php
    BackWPupHelpers::component("form/checkbox", [
      "name" => "ftpssl",
      "identifier" => "ftpssl",
			"disabled" => !function_exists('ftp_ssl_connect'),
      "checked" => BackWPup_Option::get($job_id, 'ftpssl', false),
      "label" => __("Use explicit SSL-FTP connexion", 'backwpup'),
			"tooltip" => __("This option is only available if your server supports SSL connections.", 'backwpup'),
    ]);
    ?>

    <?php
    BackWPupHelpers::component("form/checkbox", [
      "name" => "ftppasv",
      "identifier" => "ftppasv",
      "checked" => BackWPup_Option::get($job_id, 'ftppasv', true),
      "label" => __("Use FTP passive mode", 'backwpup'),
    ]);
    ?>
  </div>
</div>

<div class="rounded-lg p-4 bg-grey-100">
  <?php
  BackWPupHelpers::component("heading", [
    "level" => 2,
    "title" => __("Backup Settings", 'backwpup'),
    "font" => "small",
    "class" => "mb-4",
  ]);
  ?>

  <div class="flex flex-col gap-2">
    <?php
    BackWPupHelpers::component("form/text", [
      "name" => "ftpdir",
      "identifier" => "ftpdir",
      "label" => __("Folder to store files in", 'backwpup'),
      "value" => $ftpdir,
      "required" => true,
    ]);
    ?>

    <?php
    BackWPupHelpers::component("form/text", [
      "name" => "ftpmaxbackups",
      "identifier" => "ftpmaxbackups",
      "type" => "number",
      "min" => 1,
      "label" => __("Max backups to retain", 'backwpup'),
      "value" => $ftpmaxbackups,
      "required" => true,
    ]);
    ?>

    <?php
    BackWPupHelpers::component("alerts/info", [
      "type" => "alert",
      "font" => "xs",
      "content" => __("When this limit is exceeded, the oldest backup will be deleted.", 'backwpup'),
    ]);
    ?>

		<?php
    BackWPupHelpers::component("alerts/info", [
      "type" => "alert",
      "font" => "xs",
      "content" => __("Files belonging to this job are now tracked. Old backup archives which are untracked will not be automatically deleted.", 'backwpup'),
    ]);
    ?>
  </div>
</div>

<?php BackWPupHelpers::component("containers/scrollable-end"); ?>

<div class="flex flex-col gap-2">
  <?php
  BackWPupHelpers::component("form/button", [
    "type" => "primary",
    "label" => __("Save & Test connection", 'backwpup'),
    "full_width" => true,
    "trigger" => "test-FTP-storage",
    "data" => [
      "storage" => "sftp",
      "job-id" => $job_id,
    ],
  ]);
  ?>
</div>

[ Back ]
Name
Size
Last Modified
Owner / Group
Permissions
Options
..
--
July 10 2025 04:32:37
giriqfky / giriqfky
0755
dropbox-parts
--
July 10 2025 04:32:37
giriqfky / giriqfky
0755
parts
--
July 10 2025 04:32:37
giriqfky / giriqfky
0755
sugar-sync-parts
--
July 10 2025 04:32:37
giriqfky / giriqfky
0755
.htaccess
0.41 KB
July 10 2025 04:32:37
giriqfky / giriqfky
0644
advanced-settings.php
2.051 KB
February 04 2025 14:50:44
giriqfky / giriqfky
0644
edit-title.php
1.173 KB
April 07 2025 18:31:08
giriqfky / giriqfky
0644
frequency.php
4.867 KB
April 29 2025 17:34:12
giriqfky / giriqfky
0644
select-files-free.php
1.038 KB
February 04 2025 14:50:44
giriqfky / giriqfky
0644
select-files.php
1.602 KB
April 07 2025 18:31:08
giriqfky / giriqfky
0644
select-tables.php
2.505 KB
April 07 2025 18:31:08
giriqfky / giriqfky
0644
settings-jobs.php
3.994 KB
April 23 2025 14:14:02
giriqfky / giriqfky
0644
settings-logs.php
3.402 KB
February 04 2025 14:50:44
giriqfky / giriqfky
0644
settings-network.php
2.636 KB
February 04 2025 14:50:44
giriqfky / giriqfky
0644
storage-DROPBOX.php
3.406 KB
April 07 2025 18:31:08
giriqfky / giriqfky
0644
storage-FOLDER.php
2.6 KB
April 07 2025 18:31:08
giriqfky / giriqfky
0644
storage-FTP.php
5.507 KB
April 07 2025 18:31:08
giriqfky / giriqfky
0644
storage-MSAZURE.php
5.207 KB
April 07 2025 18:31:08
giriqfky / giriqfky
0644
storage-RSC.php
5.088 KB
April 07 2025 18:31:08
giriqfky / giriqfky
0644
storage-S3.php
9.357 KB
April 07 2025 18:31:08
giriqfky / giriqfky
0644
storage-SUGARSYNC.php
3.08 KB
April 07 2025 18:31:08
giriqfky / giriqfky
0644
storages.php
1.381 KB
April 07 2025 18:31:08
giriqfky / giriqfky
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2025
CONTACT ME
Static GIF