wp-signup.php

Inactive
  • 67 points
    Serious WPMU DEV-ster
    I'm new here
    Doug

    Member  —  28th May 2010 (1 year ago)         

    I am trying to create a custom registration page and I found this article to help

    I followed the instructions but when I go to sign-up.php the page says it cannot be found. I think I am messing up somewhere toward the end but I am not sure as I do not know how to code

    Is this what sign-up.php is supposed to look like? I have it in the edu-clean theme folder and I have TOS installed (not sure if this would make a difference.

    ?php

    /** Sets up the WordPress Environment. */
    require( ‘../../../wp-load.php’ );

    add_action( 'wp_head', 'signuppageheaders' ) ;

    require( ‘../../../wp-blog-header.php’ );
    require_once( ABSPATH . WPINC . '/registration.php' );

    and this is what my .htaccess file looks like

    RewriteEngine On
    RewriteBase /
    RewriteRule ^wp-signup\.php(.*)$ wp-content/themes/edu-clean/wp-signup.php$1

    #uploaded files

    Thank you for looking at this and trying to help. I'm sure it is something small I overlooked, but if not does someone else know another way to create a custom signup?