HEX
Server: Apache
System: Linux ecngx285.inmotionhosting.com 4.18.0-553.79.1.lve.el8.x86_64 #1 SMP Wed Oct 15 17:59:35 UTC 2025 x86_64
User: zeusxp5 (3862)
PHP: 8.3.28
Disabled: NONE
Upload Files
File: /home/zeusxp5/lrliberia.com/wp-content/plugins/boldgrid-backup/includes/config/config.plugin.php
<?php
/**
 * File: config.plugin.php
 *
 * Plugin configuration file.
 *
 * @link https://www.boldgrid.com
 * @since 1.0
 *
 * @package    Boldgrid_Backup
 * @subpackage Boldgrid_Backup/includes
 * @copyright  BoldGrid
 * @author     BoldGrid <support@boldgrid.com>
 */

// Prevent direct calls.
if ( ! defined( 'WPINC' ) ) {
	header( 'Status: 403 Forbidden' );
	header( 'HTTP/1.1 403 Forbidden' );
	exit();
}

return [
	'urls'                 => [
		'compatibility'       => 'https://www.boldgrid.com/support/advanced-tutorials/backup-compatibility-guide',
		'possible_issues'     => 'https://www.boldgrid.com/support/advanced-tutorials/backup-userguide#possible-issues',
		'reduce_size_warning' => 'https://www.boldgrid.com/support/advanced-tutorials/backup-userguide#reduce-size-warning',
		'resource_usage'      => 'https://www.boldgrid.com/support/advanced-tutorials/backup-userguide#resource-usage',
		'upgrade'             => 'https://www.boldgrid.com/support/advanced-tutorials/backup-userguide#upgrade',
		'user_guide'          => 'https://www.boldgrid.com/support/advanced-tutorials/backup-userguide',
		'restore'             => 'https://www.boldgrid.com/support/advanced-tutorials/restoring-boldgrid-backup/',
		'setting_directory'   => 'https://www.boldgrid.com/support/advanced-tutorials/backup-userguide#setting-backup-directory',
		'plugin_renamed'      => 'https://www.boldgrid.com/support/total-upkeep-backup-plugin-product-guide/what-is-total-upkeep/',
	],
	'lang'                 => [
		// translators: 1: Number of seconds.
		'est_pause' => esc_html__( 'Estimated Pause: %s seconds', 'boldgrid-backup' ),
	],
	'public_link_lifetime' => '1 HOUR',
	'url_regex'            => '^https?:\/\/[a-z0-9\-\.]+(\.[a-z]{2,5})?(:[0-9]{1,5})?(\/.*)?$',

	/*
	 * When we login to a remote storage provider, we log the utc timestamp of that login. Sometimes
	 * we want to know if a remote storage provider is setup, and usually we check by trying to log
	 * in successfully. To skip having to log in, we can simply check the last time we logged in.
	 * For example, if we logged in 2 hours ago, usually we can say that the remote storage is setup
	 * correctly because we logged in successfully just 2 hours prior. last_login_lifetime specifies
	 * this time limit. If we logged in within 'last_login_lifetime' ago, assume the remote storage
	 * is still setup successfully. This is not across the board though, each storage provider must
	 * setup this last login cache and check against it.
	 */
	'last_login_lifetime'  => DAY_IN_SECONDS,

	/*
	 * An array of premium remote storage providers.
	 *
	 * This config is not needed for any premium features to work. Instead, it is holding the info
	 * we need to help inform users about the glory that awaits them after upgrading.
	 *
	 * @param array premium_remote {
	 * 		An array of premium remote storage providers.
	 *
	 * 		@type string title      The title of the provider.
	 * 		@type string logo_class The class used to display the logo, used in the following way:
	 *                              <span class="bgbkup-gdrive-logo" title="Google Drive"></span>
	 * }
	 */
	'premium_remote'       => [
		'google_drive' => [
			'title'      => __( 'Google Drive', 'boldgrid-backup' ),
			'logo_class' => 'bgbkup-gdrive-logo',
			'key'        => 'google_drive',
		],
		'amazon_s3'    => [
			'title'      => __( 'Amazon S3', 'boldgrid-backup' ),
			'logo_class' => 'amazon-s3-logo',
			'key'        => 'amazon_s3',
		],
		'dreamobjects' => [
			'title' => __( 'DreamObjects', 'boldgrid-backup' ),
			'key'   => 'dreamobjects',
		],
	],

	// The time, in seconds, that log files are kept for.
	'max_log_age'          => 30 * DAY_IN_SECONDS,

	/*
	 * Plugin_notices is used to add "unread" notice counts to various
	 * UI locations within boldgrid plugin. This config is used by
	 * Boldgrid\Library\Library\NoticeCounts
	 */
	'pages'                => [
		'boldgrid-backup-premium-features',
	],
	'page_notices'         => [
		[
			'id'      => 'bgbkup_database_encryption',
			'page'    => 'boldgrid-backup-premium-features',
			'version' => '1.13.0',
		],
		[
			'id'      => 'bgbkup_timely_auto_updates',
			'page'    => 'boldgrid-backup-premium-features',
			'version' => '1.14.0',
		],
	],

	/*
	 * An array of banned files.
	 *
	 * @see Boldgrid_Backup_Admin_Folder_Exclusion::is_banned()
	 */
	'banned'               => [
		/*
		 * The ea-php-cli cache symlink. This one has appeared several times, and therefore is now
		 * banned. The following description has been taken from the cPanel website:
		 *
		 * The first time you call one of the ea-php-cli binaries, the system creates the .ea-php-cli.cache
		 * symlink to the PHP version that the directory requires. This symlink provides a quick
		 * way for the system to determine the proper version of PHP and reads as broken by design.
		 * For example, if the PHP script requires PHP 7.0, then the symlink will point to ea-php70.
		 * cPanel creates broken symlinks by design and will recreate any removed symlinks the next
		 * time that you run the script. You can safely ignore them.
		 *
		 * @link https://wordpress.org/support/topic/total-upkeep-error-creating-backup/
		 */
		'.ea-php-cli.cache',
	],
	'cron_intervals'       => array(
		'*/5 * * * *'  => esc_html__( 'Every 5 Minutes', 'boldgrid-backup' ),
		'*/10 * * * *' => esc_html__( 'Every 10 Minutes', 'boldgrid-backup' ),
		'*/30 * * * *' => esc_html__( 'Every 30 Minutes', 'boldgrid-backup' ),
		'0 * * * *'    => esc_html__( 'Once Every Hour', 'boldgrid-backup' ),
	),
	'direct_transfer'      => array(
		'rest_api_namespace'          => 'boldgrid-backup/v1',
		'rest_api_prefix'             => 'direct-transfer',
		'batch_chunks'                => 10,
		'chunk_size'                  => 50,
		'stalled_timeout'             => 120,
		'cron_interval'               => 60,
		'conn_timeout'                => 600,
		'option_names'                => array(
			'transfers'           => 'boldgrid_backup_direct_transfers',
			'active_tx'           => 'boldgrid_backup_active_direct_tx',
			'file_lists'          => 'boldgrid_backup_xfer_file_lists',
			'open_batches'        => 'boldgrid_backup_open_xfer_batches',
			'authd_sites'         => 'boldgrid_backup_xfer_authd_sites',
			'heartbeat'           => 'boldgrid_backup_xfer_heartbeat',
			'cancelled_transfers' => 'boldgrid_backup_xfer_cancelled',
			'active_transfer'     => 'boldgrid_backup_active_transfer',
			'db_dump_status'      => 'boldgrid_backup_db_dump_status',
		)
	),
];