X7ROOT File Manager
Current Path:
/home/notabjze/caribbeansee.com/wp-admin
home
/
notabjze
/
caribbeansee.com
/
wp-admin
/
ðŸ“
..
📄
about.php
(24.38 KB)
📄
admin-ajax.php
(4.83 KB)
📄
admin-footer.php
(2.76 KB)
📄
admin-functions.php
(406 B)
📄
admin-header.php
(8.8 KB)
📄
admin-post.php
(2 KB)
📄
admin.php
(12.26 KB)
📄
async-upload.php
(4.56 KB)
📄
authorize-application.php
(10.02 KB)
📄
comment.php
(11.25 KB)
📄
credits.php
(3.69 KB)
ðŸ“
css
📄
custom-background.php
(416 B)
📄
custom-header.php
(426 B)
📄
customize.php
(10.6 KB)
📄
edit-comments.php
(13.97 KB)
📄
edit-form-advanced.php
(28.36 KB)
📄
edit-form-blocks.php
(10.83 KB)
📄
edit-form-comment.php
(8.34 KB)
📄
edit-link-form.php
(6.16 KB)
📄
edit-tag-form.php
(10.41 KB)
📄
edit-tags.php
(21.87 KB)
📄
edit.php
(19.01 KB)
📄
erase-personal-data.php
(7.36 KB)
📄
export-personal-data.php
(7.76 KB)
📄
export.php
(10.99 KB)
📄
freedoms.php
(4.42 KB)
ðŸ“
images
📄
import.php
(7.4 KB)
ðŸ“
includes
📄
index.php
(7.65 KB)
📄
install-helper.php
(6.8 KB)
📄
install.php
(16.82 KB)
ðŸ“
js
📄
link-add.php
(742 B)
📄
link-manager.php
(4.16 KB)
📄
link-parse-opml.php
(2.59 KB)
📄
link.php
(2.7 KB)
📄
load-scripts.php
(1.66 KB)
📄
load-styles.php
(2.47 KB)
ðŸ“
maint
📄
media-new.php
(3.18 KB)
📄
media-upload.php
(3.49 KB)
📄
media.php
(5.49 KB)
📄
menu-header.php
(9.82 KB)
📄
menu.php
(16.84 KB)
📄
moderation.php
(307 B)
📄
ms-admin.php
(196 B)
📄
ms-delete-site.php
(4.19 KB)
📄
ms-edit.php
(216 B)
📄
ms-options.php
(223 B)
📄
ms-sites.php
(215 B)
📄
ms-themes.php
(217 B)
📄
ms-upgrade-network.php
(219 B)
📄
ms-users.php
(215 B)
📄
my-sites.php
(4.65 KB)
📄
nav-menus.php
(46.67 KB)
ðŸ“
network
📄
network.php
(5.35 KB)
📄
options-discussion.php
(15.58 KB)
📄
options-general.php
(16.57 KB)
📄
options-head.php
(492 B)
📄
options-media.php
(6.35 KB)
📄
options-permalink.php
(21.09 KB)
📄
options-privacy.php
(9.93 KB)
📄
options-reading.php
(9.92 KB)
📄
options-writing.php
(8.58 KB)
📄
options.php
(12.67 KB)
📄
plugin-editor.php
(13.13 KB)
📄
plugin-install.php
(6.78 KB)
📄
plugins.php
(28.6 KB)
📄
post-new.php
(2.64 KB)
📄
post.php
(9.86 KB)
📄
press-this.php
(2.33 KB)
📄
privacy-policy-guide.php
(3.61 KB)
📄
privacy.php
(2.42 KB)
📄
profile.php
(283 B)
📄
revision.php
(5.45 KB)
📄
setup-config.php
(16.93 KB)
📄
site-editor.php
(4.6 KB)
📄
site-health-info.php
(3.93 KB)
📄
site-health.php
(10.01 KB)
📄
term.php
(2.2 KB)
📄
theme-editor.php
(14.91 KB)
📄
theme-install.php
(23.23 KB)
📄
themes.php
(45.64 KB)
📄
tools.php
(3.43 KB)
📄
update-core.php
(43.86 KB)
📄
update.php
(12.43 KB)
📄
upgrade-functions.php
(341 B)
📄
upgrade.php
(5.54 KB)
📄
upload.php
(14.56 KB)
ðŸ“
user
📄
user-edit.php
(38.73 KB)
📄
user-new.php
(23.69 KB)
📄
users.php
(21.36 KB)
📄
widgets-form-blocks.php
(2.48 KB)
📄
widgets-form.php
(19.05 KB)
📄
widgets.php
(1.09 KB)
Editing: upgrade.php
<?php /** * Upgrade WordPress Page. * * @package WordPress * @subpackage Administration */ /** * We are upgrading WordPress. * * @since 1.5.1 * @var bool */ define( 'WP_INSTALLING', true ); /** Load WordPress Bootstrap */ require dirname( __DIR__ ) . '/wp-load.php'; nocache_headers(); require_once ABSPATH . 'wp-admin/includes/upgrade.php'; delete_site_transient( 'update_core' ); if ( isset( $_GET['step'] ) ) { $step = $_GET['step']; } else { $step = 0; } // Do it. No output. if ( 'upgrade_db' === $step ) { wp_upgrade(); die( '0' ); } /** * @global string $wp_version The WordPress version string. * @global string $required_php_version The required PHP version string. * @global string $required_mysql_version The required MySQL version string. * @global wpdb $wpdb WordPress database abstraction object. */ global $wp_version, $required_php_version, $required_mysql_version, $wpdb; $step = (int) $step; $php_version = PHP_VERSION; $mysql_version = $wpdb->db_version(); $php_compat = version_compare( $php_version, $required_php_version, '>=' ); if ( file_exists( WP_CONTENT_DIR . '/db.php' ) && empty( $wpdb->is_mysql ) ) { $mysql_compat = true; } else { $mysql_compat = version_compare( $mysql_version, $required_mysql_version, '>=' ); } header( 'Content-Type: ' . get_option( 'html_type' ) . '; charset=' . get_option( 'blog_charset' ) ); ?> <!DOCTYPE html> <html <?php language_attributes(); ?>> <head> <meta name="viewport" content="width=device-width" /> <meta http-equiv="Content-Type" content="<?php bloginfo( 'html_type' ); ?>; charset=<?php echo get_option( 'blog_charset' ); ?>" /> <meta name="robots" content="noindex,nofollow" /> <title><?php _e( 'WordPress › Update' ); ?></title> <?php wp_admin_css( 'install', true ); ?> </head> <body class="wp-core-ui"> <p id="logo"><a href="<?php echo esc_url( __( 'https://wordpress.org/' ) ); ?>"><?php _e( 'WordPress' ); ?></a></p> <?php if ( (int) get_option( 'db_version' ) === $wp_db_version || ! is_blog_installed() ) : ?> <h1><?php _e( 'No Update Required' ); ?></h1> <p><?php _e( 'Your WordPress database is already up to date!' ); ?></p> <p class="step"><a class="button button-large" href="<?php echo get_option( 'home' ); ?>/"><?php _e( 'Continue' ); ?></a></p> <?php elseif ( ! $php_compat || ! $mysql_compat ) : $version_url = sprintf( /* translators: %s: WordPress version. */ esc_url( __( 'https://wordpress.org/support/wordpress-version/version-%s/' ) ), sanitize_title( $wp_version ) ); $php_update_message = '</p><p>' . sprintf( /* translators: %s: URL to Update PHP page. */ __( '<a href="%s">Learn more about updating PHP</a>.' ), esc_url( wp_get_update_php_url() ) ); $annotation = wp_get_update_php_annotation(); if ( $annotation ) { $php_update_message .= '</p><p><em>' . $annotation . '</em>'; } if ( ! $mysql_compat && ! $php_compat ) { $message = sprintf( /* translators: 1: URL to WordPress release notes, 2: WordPress version number, 3: Minimum required PHP version number, 4: Minimum required MySQL version number, 5: Current PHP version number, 6: Current MySQL version number. */ __( 'You cannot update because <a href="%1$s">WordPress %2$s</a> requires PHP version %3$s or higher and MySQL version %4$s or higher. You are running PHP version %5$s and MySQL version %6$s.' ), $version_url, $wp_version, $required_php_version, $required_mysql_version, $php_version, $mysql_version ) . $php_update_message; } elseif ( ! $php_compat ) { $message = sprintf( /* translators: 1: URL to WordPress release notes, 2: WordPress version number, 3: Minimum required PHP version number, 4: Current PHP version number. */ __( 'You cannot update because <a href="%1$s">WordPress %2$s</a> requires PHP version %3$s or higher. You are running version %4$s.' ), $version_url, $wp_version, $required_php_version, $php_version ) . $php_update_message; } elseif ( ! $mysql_compat ) { $message = sprintf( /* translators: 1: URL to WordPress release notes, 2: WordPress version number, 3: Minimum required MySQL version number, 4: Current MySQL version number. */ __( 'You cannot update because <a href="%1$s">WordPress %2$s</a> requires MySQL version %3$s or higher. You are running version %4$s.' ), $version_url, $wp_version, $required_mysql_version, $mysql_version ); } echo '<p>' . $message . '</p>'; ?> <?php else : switch ( $step ) : case 0: $goback = wp_get_referer(); if ( $goback ) { $goback = sanitize_url( $goback ); $goback = urlencode( $goback ); } ?> <h1><?php _e( 'Database Update Required' ); ?></h1> <p><?php _e( 'WordPress has been updated! Next and final step is to update your database to the newest version.' ); ?></p> <p><?php _e( 'The database update process may take a little while, so please be patient.' ); ?></p> <p class="step"><a class="button button-large button-primary" href="upgrade.php?step=1&backto=<?php echo $goback; ?>"><?php _e( 'Update WordPress Database' ); ?></a></p> <?php break; case 1: wp_upgrade(); $backto = ! empty( $_GET['backto'] ) ? wp_unslash( urldecode( $_GET['backto'] ) ) : __get_option( 'home' ) . '/'; $backto = esc_url( $backto ); $backto = wp_validate_redirect( $backto, __get_option( 'home' ) . '/' ); ?> <h1><?php _e( 'Update Complete' ); ?></h1> <p><?php _e( 'Your WordPress database has been successfully updated!' ); ?></p> <p class="step"><a class="button button-large" href="<?php echo $backto; ?>"><?php _e( 'Continue' ); ?></a></p> <?php break; endswitch; endif; ?> </body> </html>
Upload File
Create Folder