• Hello

    I get an error page from my host after submiting a registration. The registration is taken into account and email is sent.

    I just don’t see the page saying an email has been sent.

    I believe this is handled by wp-logging

    and the code is

    <form name=”registerform” id=”registerform” action=”<?php echo site_url(‘wp-login.php?action=register’, ‘login_post’) ?>” method=”post”>
    <p>
    <label><?php _e(‘Username’) ?>
    <input type=”text” name=”user_login” id=”user_login” class=”input” value=”<?php echo attribute_escape(stripslashes($user_login)); ?>” size=”20″ tabindex=”10″ /></label>
    </p>
    <p>
    <label><?php _e(‘E-mail’) ?>
    <input type=”text” name=”user_email” id=”user_email” class=”input” value=”<?php echo attribute_escape(stripslashes($user_email)); ?>” size=”25″ tabindex=”20″ /></label>
    </p>
    <?php do_action(‘register_form’); ?>
    <p id=”reg_passmail”><?php _e(‘A password will be e-mailed to you.’) ?></p>
    <p class=”submit”><input type=”submit” name=”wp-submit” id=”wp-submit” value=”<?php _e(‘Register’); ?>” tabindex=”100″ /></p>
    </form>

    Can you help?

    Thanks

    Stan

  • The topic ‘Server Error 500 after registration’ is closed to new replies.