__( '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>.' ),
* 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.
define( 'WP_INSTALLING', true );
/** Sets up the WordPress Environment. */
require( dirname(__FILE__) . '/wp-load.php' );
require( dirname( __FILE__ ) . '/wp-blog-header.php' );
wp_redirect( wp_registration_url() );
if ( is_object( $wp_object_cache ) )
$wp_object_cache->cache_enabled = false;
$wp_query->is_404 = false;
* Fires before the Site Activation page is loaded.
do_action( 'activate_header' );
* Adds an action hook specific to this page.
* Fires on {@see 'wp_head'}.
function do_activate_header() {
* Fires before the Site Activation page is loaded.