_partial
2 weeks ago
aios-salt-postfix-enabled.php
1 year ago
analytics-consent-failed.php
1 year ago
analytics-consent-refused.php
1 year ago
analytics-modal.php
1 month ago
backup-plugins-notice.php
7 months ago
beta.php
1 year ago
cache-directory-permission-problem.php
1 year ago
cli-integration-notice.php
1 week ago
cron-warning-notice.php
2 months ago
directory-listing-could-not-be-prevented.php
7 months ago
disabled-items-notice.php
1 year ago
disabled-optimizer-notice.php
1 year ago
elementor-cloud-notice.php
4 months ago
logs-directory-permission-problem.php
1 year ago
low-memory-limit.php
1 year ago
mu-plugin-directory-permission-problem.php
1 year ago
next-gen-engine-notice.php
1 week ago
no-db-prefix-notice.php
1 year ago
object-cache-skipped.php
11 months ago
outdated-wp-staging-hooks.php
1 year ago
outdated-wp-staging-version.php
1 year ago
pro-crons-notice.php
1 year ago
review-prompt-handlers.php
3 weeks ago
review-prompt-modal.php
3 weeks ago
settings_option_corrupt.php
1 year ago
staging-directory-permission-problem.php
1 year ago
staging-symlink-enabled-notice.php
10 months ago
table-tmp-prefix-conflict-notice.php
1 year ago
transient.php
1 year ago
uploads-outside-wp-root.php
1 year ago
vars-directory-permission-problem.php
1 year ago
wordfence-userini-renamed.php
6 months ago
wp-options-missing-pk.php
6 months ago
wp-version-compat-notice.php
4 months ago
wpe-permalink-issue-notice.php
1 year ago
wrong-scheme.php
1 year ago
next-gen-engine-notice.php
40 lines
| 1 | <?php |
| 2 | |
| 3 | /** |
| 4 | * @see \WPStaging\Framework\Notices\Notices::renderNotices |
| 5 | * |
| 6 | * @var object $this \WPStaging\Framework\Notices\Notices (Don't switch the order to avoid phpstan error) |
| 7 | */ |
| 8 | |
| 9 | use WPStaging\Framework\Notices\Notices; |
| 10 | |
| 11 | $articleUrl = 'https://wp-staging.com/next-gen-cloning-engine-known-issue/'; |
| 12 | |
| 13 | ?> |
| 14 | <div class="notice notice-error wpstg-next-gen-engine-notice"> |
| 15 | <p><strong><?php esc_html_e('WP STAGING - Important: Next-Gen Engine staging sites may be corrupted', 'wp-staging'); ?></strong></p> |
| 16 | <p> |
| 17 | <strong><?php esc_html_e('Your live website is not affected by this issue.', 'wp-staging'); ?></strong> |
| 18 | <?php esc_html_e('Only staging sites created with the Next-Gen (BETA) cloning engine can contain corrupted data.', 'wp-staging'); ?> |
| 19 | </p> |
| 20 | <p> |
| 21 | <?php esc_html_e('The Next-Gen (BETA) cloning engine has been temporarily disabled because it could corrupt data on the staging sites it creates. Your staging engine has been switched back to the Classic engine automatically.', 'wp-staging'); ?> |
| 22 | </p> |
| 23 | <p> |
| 24 | <?php esc_html_e('If you created any staging site with the Next-Gen engine, do not rely on it: it may contain corrupted content. Please delete that staging site and create a new one with the Classic engine.', 'wp-staging'); ?> |
| 25 | </p> |
| 26 | <p> |
| 27 | <a href="<?php echo esc_url($articleUrl); ?>" target="_blank" rel="noopener noreferrer"> |
| 28 | <?php esc_html_e('Read what happened and how to fix affected staging sites', 'wp-staging'); ?> |
| 29 | </a> |
| 30 | </p> |
| 31 | <p> |
| 32 | <?php Notices::renderNoticeDismissAction( |
| 33 | $this->viewsNoticesPath, |
| 34 | 'next_gen_engine', |
| 35 | '.wpstg_dismiss_next_gen_engine_notice', |
| 36 | '.wpstg-next-gen-engine-notice' |
| 37 | ) ?> |
| 38 | </p> |
| 39 | </div> |
| 40 |