Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: wp-signup.php is a blank page


Xevo
Participant

@xevo

Your supposed to go to “/register” not “wp-signup.php”.

Add this to your functions.php. Not sure who wrote this, but the creds go to that guy. :)

function rk_signup_redirect() {
if (strpos($_SERVER['REQUEST_URI'], 'wp-signup.php') !== false ) {
$url = 'http://domain.ext/register';
wp_redirect($url);
exit;
}
}
add_action('init', 'rk_signup_redirect');

Change $url = ‘http://domain.ext/register’; into your own domain.

@audiobookstef: Start looking for something like buddypress then, good luck! :)

Skip to toolbar