at path:
ROOT
/
wp-content
/
plugins
/
jetpack
/
3rd-party
/
vaultpress.php
run:
R
W
Run
debug-bar
DIR
2026-04-17 06:07:54
R
W
Run
3rd-party.php
2.9 KB
2026-04-17 06:07:54
R
W
Run
Delete
Rename
amp.php
792 By
2026-04-17 06:07:54
R
W
Run
Delete
Rename
atomic.php
1.04 KB
2026-04-17 06:07:54
R
W
Run
Delete
Rename
bbpress.php
2.08 KB
2026-04-17 06:07:54
R
W
Run
Delete
Rename
beaverbuilder.php
524 By
2026-04-17 06:07:54
R
W
Run
Delete
Rename
bitly.php
1 KB
2026-04-17 06:07:54
R
W
Run
Delete
Rename
buddypress.php
550 By
2026-04-17 06:07:54
R
W
Run
Delete
Rename
class-domain-mapping.php
4.17 KB
2026-04-17 06:07:54
R
W
Run
Delete
Rename
class-jetpack-bbpress-rest-api.php
4.39 KB
2026-04-17 06:07:54
R
W
Run
Delete
Rename
class.jetpack-amp-support.php
16 KB
2026-04-17 06:07:54
R
W
Run
Delete
Rename
creative-mail.php
3.26 KB
2026-04-17 06:07:54
R
W
Run
Delete
Rename
debug-bar.php
780 By
2026-04-17 06:07:54
R
W
Run
Delete
Rename
jetpack-backup.php
2.75 KB
2026-04-17 06:07:54
R
W
Run
Delete
Rename
jetpack-boost.php
2.8 KB
2026-04-17 06:07:54
R
W
Run
Delete
Rename
qtranslate-x.php
681 By
2026-04-17 06:07:54
R
W
Run
Delete
Rename
vaultpress.php
2.15 KB
2026-04-17 06:07:54
R
W
Run
Delete
Rename
web-stories.php
979 By
2026-04-17 06:07:54
R
W
Run
Delete
Rename
woocommerce-services.php
3.45 KB
2026-04-17 06:07:54
R
W
Run
Delete
Rename
woocommerce.php
3.82 KB
2026-04-17 06:07:54
R
W
Run
Delete
Rename
wpcom-reader.php
1.79 KB
2026-04-17 06:07:54
R
W
Run
Delete
Rename
wpml.php
1.64 KB
2026-04-17 06:07:54
R
W
Run
Delete
Rename
error_log
up
📄
vaultpress.php
Save
<?php /** * Handles VaultPress->Rewind transition by deactivating VaultPress when needed. * * @package automattic/jetpack */ use Automattic\Jetpack\Redirect; if ( ! defined( 'ABSPATH' ) ) { exit( 0 ); } /** * Notify user that VaultPress has been disabled. Hide VaultPress notice that requested attention. * * @since 5.8 */ function jetpack_vaultpress_rewind_enabled_notice() { // The deactivation is performed here because there may be pages that admin_init runs on, // such as admin_ajax, that could deactivate the plugin without showing this notification. deactivate_plugins( 'vaultpress/vaultpress.php' ); // Remove WP core notice that says that the plugin was activated. unset( $_GET['activate'] ); // phpcs:ignore WordPress.Security.NonceVerification $message = sprintf( wp_kses( /* Translators: variable is the full URL to the new dashboard */ __( '<p style="margin-bottom: 0.25em;"><strong>Jetpack is now handling your backups.</strong></p><p>VaultPress is no longer needed and has been deactivated. You can access your backups at <a href="%s" target="_blank" rel="noopener noreferrer">this dashboard</a>.</p>', 'jetpack' ), array( 'a' => array( 'href' => array(), 'target' => array(), 'rel' => array(), ), 'p' => array( 'style' => array(), ), 'strong' => array(), ) ), esc_url( Redirect::get_url( 'calypso-backups' ) ) ); wp_admin_notice( $message, array( 'type' => 'success', 'dismissible' => true, 'additional_classes' => array( 'vp-deactivated' ), 'paragraph_wrap' => false, ) ); ?> <style>#vp-notice{display:none;}</style> <?php } /** * If Backup & Scan is enabled, remove its entry in sidebar, deactivate VaultPress, and show a notification. * * @since 5.8 */ function jetpack_vaultpress_rewind_check() { if ( Jetpack::is_connection_ready() && Jetpack::is_plugin_active( 'vaultpress/vaultpress.php' ) && Jetpack::is_rewind_enabled() ) { remove_submenu_page( 'jetpack', 'vaultpress' ); add_action( 'admin_notices', 'jetpack_vaultpress_rewind_enabled_notice' ); } } add_action( 'admin_init', 'jetpack_vaultpress_rewind_check', 11 );