__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
/*
Plugin Name: Backuply
Plugin URI: http://wordpress.org/plugins/backuply/
Description: Backuply is a Wordpress Backup plugin. Backups are the best form of security and safety a website can have.
Version: 1.5.3
Author: Softaculous
Author URI: https://backuply.com
License: LGPL v2.1
License URI: http://www.gnu.org/licenses/lgpl-2.1.html
*/
// We need the ABSPATH
if (!defined('ABSPATH')) exit;
if(!function_exists('add_action')){
echo 'You are not allowed to access this page directly.';
exit;
}
$backuply_plugin = 'backuply-pro/backuply-pro.php';
// Get site-level active plugins
$backuply_tmp_plugins = get_option('active_plugins', []);
// Get network-level active plugins (keys are plugin paths)
$backuply_network_plugins = is_multisite() ? get_site_option('active_sitewide_plugins', []) : [];
// Check if plugin is active (either site or network)
$backuply_is_active = in_array($backuply_plugin, $backuply_tmp_plugins) || isset($backuply_network_plugins[$backuply_plugin]);
if ($backuply_is_active) {
// The following variable was not there prior to 1.2.1 in the pro version
$backuply_pro_version = get_option('backuply_pro_version');
if (empty($backuply_pro_version)) {
return;
}
}
// If BACKUPLY_VERSION exists then the plugin is loaded already !
if(defined('BACKUPLY_VERSION')) {
return;
}
define('BACKUPLY_FILE', __FILE__);
include_once(dirname(__FILE__).'/init.php');
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| assets | Folder | 0755 |
|
|
| lib | Folder | 0755 |
|
|
| main | Folder | 0755 |
|
|
| backup_ins.php | File | 64.48 KB | 0644 |
|
| backuply.php | File | 1.44 KB | 0644 |
|
| backuplytar.php | File | 52.32 KB | 0644 |
|
| functions.php | File | 49.92 KB | 0644 |
|
| index.html | File | 0 B | 0644 |
|
| init.php | File | 9.05 KB | 0644 |
|
| license.txt | File | 25.91 KB | 0644 |
|
| readme.txt | File | 23.35 KB | 0644 |
|
| restore_ins.php | File | 99.83 KB | 0644 |
|
| status_logs.php | File | 1.75 KB | 0644 |
|