GRAYBYTE WORDPRESS FILE MANAGER5104

Server IP : 162.213.255.40 / Your IP : 216.73.216.121
System : Linux server146.web-hosting.com 4.18.0-513.18.1.lve.el8.x86_64 #1 SMP Thu Feb 22 12:55:50 UTC 2024 x86_64
PHP Version : 8.0.30
Disable Function : NONE
cURL : ON | WGET : ON | Sudo : OFF | Pkexec : OFF

HOME

/home/hellrfbn/public_html/wp-content/plugins/updraftplus/includes/
Upload Files :
Current_dir [ Writeable ] Document_root [ Writeable ]

Command :


Current File : /home/hellrfbn/public_html/wp-content/plugins/updraftplus/includes//ftp.class.php
<?php

if (!defined('UPDRAFTPLUS_DIR')) die('No direct access allowed.');

/**
 * Adapted from http://www.solutionbot.com/2009/01/02/php-ftp-class/
 */
class UpdraftPlus_ftp_wrapper {

	private $conn_id;

	private $host;

	private $username;

	private $password;

	private $port;

	public $timeout = 60;

	public $passive = true;

	public $system_type = '';

	public $ssl = false;

	public $use_server_certs = false;

	public $disable_verify = true;

	public $login_type = 'non-encrypted';
 
	public function __construct($host, $username, $password, $port = 21) {
		$this->host     = $host;
		$this->username = $username;
		$this->password = $password;
		$this->port     = $port;
	}
 
	public function connect() {

		$time_start = time();
		$this->conn_id = ftp_connect($this->host, $this->port, 20);

		if ($this->conn_id) $result = ftp_login($this->conn_id, $this->username, $this->password);
 
		if (!empty($result)) {
			ftp_set_option($this->conn_id, FTP_TIMEOUT_SEC, $this->timeout);
			 ftp_pasv($this->conn_id, $this->passive);
			$this->system_type = ftp_systype($this->conn_id);
			return true;
		}

		if (time() - $time_start > 19) {
			global $updraftplus_admin;
			if (isset($updraftplus_admin->logged) && is_array($updraftplus_admin->logged)) {
				$updraftplus_admin->logged[] = sprintf(__('The %s connection timed out; if you entered the server correctly, then this is usually caused by a firewall blocking the connection - you should check with your web hosting company.', 'updraftplus'), 'FTP');
			} else {
				global $updraftplus;
				$updraftplus->log(sprintf(__('The %s connection timed out; if you entered the server correctly, then this is usually caused by a firewall blocking the connection - you should check with your web hosting company.', 'updraftplus'), 'FTP'), 'error');
			}
		}

		return false;
	}
 
	public function put($local_file_path, $remote_file_path, $mode = FTP_BINARY, $resume = false, $updraftplus = false) {

		$file_size = filesize($local_file_path);

		$existing_size = 0;
		if ($resume) {
			$existing_size = ftp_size($this->conn_id, $remote_file_path);
			if ($existing_size <=0) {
				$resume = false;
				$existing_size = 0;
			} else {
				if (is_a($updraftplus, 'UpdraftPlus')) $updraftplus->log("File already exists at remote site: size $existing_size. Will attempt resumption.");
				if ($existing_size >= $file_size) {
					if (is_a($updraftplus, 'UpdraftPlus')) $updraftplus->log("File is apparently already completely uploaded");
					return true;
				}
			}
		}

		// From here on, $file_size is only used for logging calculations. We want to avoid division by zero.
		$file_size = max($file_size, 1);

		if (!$fh = fopen($local_file_path, 'rb')) return false;
		if ($existing_size) fseek($fh, $existing_size);

		$ret = ftp_nb_fput($this->conn_id, $remote_file_path, $fh, $mode, $existing_size);

		// $existing_size can now be re-purposed

		while (FTP_MOREDATA == $ret) {
			if (is_a($updraftplus, 'UpdraftPlus')) {
				$new_size = ftell($fh);
				$record_after = 524288;
				if ($existing_size > 2097152) {
					$record_after = ($existing_size > 4194304) ? 2097152 : 1048576;
				}
				if ($new_size - $existing_size > $record_after) {
					$existing_size = $new_size;
					$percent = round(100*$new_size/$file_size, 1);
					$updraftplus->record_uploaded_chunk($percent, '', $local_file_path);
				}
			}
			// Continue upload
			$ret = ftp_nb_continue($this->conn_id);
		}

		fclose($fh);

		if (FTP_FINISHED != $ret) {
			if (is_a($updraftplus, 'UpdraftPlus')) $updraftplus->log("FTP upload: error ($ret)");
			return false;
		}

		return true;

	}
 
	public function get($local_file_path, $remote_file_path, $mode = FTP_BINARY, $resume = false, $updraftplus = false) {

		$file_last_size = 0;

		if ($resume) {
			if (!$fh = fopen($local_file_path, 'ab')) return false;
			clearstatcache($local_file_path);// phpcs:ignore PHPCompatibility.FunctionUse.NewFunctionParameters.clearstatcache_clear_realpath_cacheFound -- The function clearstatcache() does not have a parameter "clear_realpath_cache" in PHP version 5.2 or earlier
			$file_last_size = filesize($local_file_path);
		} else {
			if (!$fh = fopen($local_file_path, 'wb')) return false;
		}

		$ret = ftp_nb_fget($this->conn_id, $fh, $remote_file_path, $mode, $file_last_size);

		if (false == $ret) return false;

		while (FTP_MOREDATA == $ret) {

			if ($updraftplus) {
				$file_now_size = filesize($local_file_path);
				if ($file_now_size - $file_last_size > 524288) {
					$updraftplus->log("FTP fetch: file size is now: ".sprintf("%0.2f", filesize($local_file_path)/1048576)." Mb");
					$file_last_size = $file_now_size;
				}
				clearstatcache($local_file_path);// phpcs:ignore PHPCompatibility.FunctionUse.NewFunctionParameters.clearstatcache_clear_realpath_cacheFound -- The function clearstatcache() does not have a parameter "clear_realpath_cache" in PHP version 5.2 or earlier
			}

			$ret = ftp_nb_continue($this->conn_id);
		}

		fclose($fh);

		if (FTP_FINISHED == $ret) {
			if ($updraftplus) $updraftplus->log("FTP fetch: fetch complete");
			return true;
		} else {
			if ($updraftplus) $updraftplus->log("FTP fetch: fetch failed");
			return false;
		}

	}

	public function chmod($permissions, $remote_filename) {
		if ($this->is_octal($permissions)) {
			$result = ftp_chmod($this->conn_id, $permissions, $remote_filename);
			if ($result) {
				return true;
			} else {
				return false;
			}
		} else {
			throw new Exception('$permissions must be an octal number');
		}
	}
 
	public function chdir($directory) {
		ftp_chdir($this->conn_id, $directory);
	}
 
	public function delete($remote_file_path) {
		if (ftp_delete($this->conn_id, $remote_file_path)) {
			return true;
		} else {
			return false;
		}
	}
 
	public function make_dir($directory) {
		if (ftp_mkdir($this->conn_id, $directory)) {
			return true;
		} else {
			return false;
		}
	}
 
	public function rename($old_name, $new_name) {
		if (ftp_rename($this->conn_id, $old_name, $new_name)) {
			return true;
		} else {
			return false;
		}
	}
 
	public function remove_dir($directory) {
		if (ftp_rmdir($this->conn_id, $directory)) {
			return true;
		} else {
			return false;
		}
	}
 
	public function dir_list($directory) {
		return ftp_nlist($this->conn_id, $directory);
	}
 
	public function cdup() {
		ftp_cdup($this->conn_id);
	}
 
	public function size($f) {
		return ftp_size($this->conn_id, $f);
	}

	public function current_dir() {
		return ftp_pwd($this->conn_id);
	}
 
	private function is_octal($i) {
		return decoct(octdec($i)) == $i;
	}
 
	public function __destruct() {
		if ($this->conn_id) ftp_close($this->conn_id);
	}
}

[ Back ]
Name
Size
Last Modified
Owner / Group
Permissions
Options
..
--
July 23 2025 07:38:28
hellrfbn / hellrfbn
0755
Dropbox2
--
July 23 2025 07:38:28
hellrfbn / hellrfbn
0755
Google
--
July 23 2025 07:38:28
hellrfbn / hellrfbn
0755
blockui
--
July 23 2025 07:38:28
hellrfbn / hellrfbn
0755
checkout-embed
--
July 23 2025 07:38:28
hellrfbn / hellrfbn
0755
cloudfiles
--
July 23 2025 07:38:28
hellrfbn / hellrfbn
0755
handlebars
--
July 23 2025 07:38:28
hellrfbn / hellrfbn
0755
images
--
July 23 2025 07:38:28
hellrfbn / hellrfbn
0755
jquery-ui.dialog.extended
--
July 23 2025 07:38:28
hellrfbn / hellrfbn
0755
jquery.serializeJSON
--
July 23 2025 07:38:28
hellrfbn / hellrfbn
0755
jstree
--
July 23 2025 07:38:28
hellrfbn / hellrfbn
0755
labelauty
--
July 23 2025 07:38:28
hellrfbn / hellrfbn
0755
pcloud
--
July 23 2025 07:38:28
hellrfbn / hellrfbn
0755
tether
--
July 23 2025 07:38:28
hellrfbn / hellrfbn
0755
tether-shepherd
--
July 23 2025 07:38:28
hellrfbn / hellrfbn
0755
updraftclone
--
July 23 2025 07:38:28
hellrfbn / hellrfbn
0755
.htaccess
0.41 KB
July 23 2025 07:38:28
hellrfbn / hellrfbn
0644
S3.php
76.423 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
S3compat.php
30.841 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
cacert.pem
216.279 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
class-backup-history.php
39.482 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
class-commands.php
48.606 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
class-database-utility.php
36.452 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
class-filesystem-functions.php
40.292 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
class-http-error-descriptions.php
11.396 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
class-job-scheduler.php
10.305 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
class-manipulation-functions.php
16.737 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
class-partialfileservlet.php
7.381 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
class-remote-send.php
30.175 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
class-search-replace.php
20.088 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
class-semaphore.php
6.273 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
class-storage-methods-interface.php
18.227 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
class-updraft-dashboard-news.php
8.049 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
class-updraft-semaphore.php
7.513 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
class-updraftcentral-updraftplus-commands.php
1.813 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
class-updraftplus-encryption.php
13.635 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
class-wpadmin-commands.php
36.302 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
class-zip.php
17.876 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
ftp.class.php
6.503 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
get-cpanel-quota-usage.pl
0.398 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
google-extensions.php
9.274 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
jquery-ui.custom-v1.11.4-1-25-1.min.css
37.843 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
jquery-ui.custom-v1.11.4-1-25-1.min.css.map
57.006 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
jquery-ui.custom-v1.11.4.css
42.181 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
jquery-ui.custom-v1.12.1-1-25-1.min.css
39.548 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
jquery-ui.custom-v1.12.1-1-25-1.min.css.map
59.413 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
jquery-ui.custom-v1.12.1.css
44.033 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
migrator-lite.php
52.476 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
updraft-admin-common-1-25-1.min.js
153.627 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
updraft-admin-common.js
254.165 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
updraft-restorer-skin-compatibility.php
0.441 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
updraft-restorer-skin.php
1.683 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
updraftcentral.php
2.743 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
updraftplus-clone.php
7.018 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
updraftplus-login.php
4.266 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
updraftplus-notices.php
20.961 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
updraftplus-tour.php
13.077 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644
updraftvault.php
1.992 KB
February 05 2025 15:45:31
hellrfbn / hellrfbn
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2025
CONTACT ME
Static GIF