IP : 3.128.188.223Hostname : server86.web-hosting.comKernel : Linux server86.web-hosting.com 4.18.0-513.18.1.lve.el8.x86_64 #1 SMP Thu Feb 22 12:55:50 UTC 2024 x86_64Disable Function : None :) OS : Linux
PATH:
/
home/
servlmvm/
./
spekkshealth.com/
../
www/
wp-activate.php/
/
<?php /** * Confirms that the activation key that is sent in an email after a user signs * up for a new site matches the key for that user and then displays confirmation. * * @package WordPress */
define( 'WP_INSTALLING', true );
/** Sets up the WordPress Environment. */ require __DIR__ . '/wp-load.php';
/** * Fires before the Site Activation page is loaded. * * @since 3.0.0 */ do_action( 'activate_header' );
/** * Adds an action hook specific to this page. * * Fires on {@see 'wp_head'}. * * @since MU (3.0.0) */ function do_activate_header() { /** * Fires within the `<head>` section of the Site Activation page. * * Fires on the {@see 'wp_head'} action. * * @since 3.0.0 */ do_action( 'activate_wp_head' ); } add_action( 'wp_head', 'do_activate_header' );
<?php } else { if ( is_wp_error( $result ) && in_array( $result->get_error_code(), $valid_error_codes, true ) ) { $signup = $result->get_error_data(); ?> <h2><?php _e( 'Your account is now active!' ); ?></h2> <?php echo '<p class="lead-in">'; if ( '' === $signup->domain . $signup->path ) { printf( /* translators: 1: Login URL, 2: Username, 3: User email address, 4: Lost password URL. */ __( 'Your account has been activated. You may now <a href="%1$s">log in</a> to the site using your chosen username of “%2$s”. Please check your email inbox at %3$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href="%4$s">reset your password</a>.' ), esc_url( network_site_url( $blog_details->path . 'wp-login.php', 'login' ) ), esc_html( $signup->user_login ), esc_html( $signup->user_email ), esc_url( wp_lostpassword_url() ) ); } else { printf( /* translators: 1: Site URL, 2: Username, 3: User email address, 4: Lost password URL. */ __( 'Your site at %1$s is active. You may now log in to your site using your chosen username of “%2$s”. Please check your email inbox at %3$s for your password and login instructions. If you do not receive an email, please check your junk or spam folder. If you still do not receive an email within an hour, you can <a href="%4$s">reset your password</a>.' ), sprintf( '<a href="http://%1$s">%1$s</a>', esc_url( $signup->domain . $blog_details->path ) ), esc_html( $signup->user_login ), esc_html( $signup->user_email ), esc_url( wp_lostpassword_url() ) ); } echo '</p>'; } elseif ( null === $result || is_wp_error( $result ) ) { ?> <h2><?php _e( 'An error occurred during the activation' ); ?></h2> <?php if ( is_wp_error( $result ) ) : ?> <p><?php echo esc_html( $result->get_error_message() ); ?></p> <?php endif; ?> <?php } else { $url = isset( $result['blog_id'] ) ? esc_url( get_home_url( (int) $result['blog_id'] ) ) : ''; $user = get_userdata( (int) $result['user_id'] ); ?> <h2><?php _e( 'Your account is now active!' ); ?></h2>