Forums

Join
bbPress Support ForumsTroubleshootingInvalid email address

Info

Invalid email address

  1. can't register any users, replies "Invalid email addres",
    please help

  2. I found the offending code that I added in my BBconfig file in order to pull the same header as the rest of the site.
    here's the offending code:

    if (file_exists('../wp-blog-header.php'))
    require_once('../wp-blog-header.php');
    else
    if (file_exists('../../wp-blog-header.php'))
    require_once('../../wp-blog-header.php');

    which is place at the end like so:

    /**
    * bbPress Database Table prefix.
    *
    * You can have multiple installations in one database if you give each a unique
    * prefix. Only numbers, letters, and underscores please!
    */
    $bb_table_prefix = 'bb_';

    /**
    * bbPress Localized Language, defaults to English.
    *
    * Change this to localize bbPress. A corresponding MO file for the chosen
    * language must be installed to a directory called "my-languages" in the root
    * directory of bbPress. For example, install de.mo to "my-languages" and set
    * BB_LANG to 'de' to enable German language support.
    */
    define( 'BB_LANG', '' );

    $bb->WP_BB = true;
    if (file_exists('../wp-blog-header.php'))
    require_once('../wp-blog-header.php');
    else
    if (file_exists('../../wp-blog-header.php'))
    require_once('../../wp-blog-header.php');

    ?>

    anything glaringly wrong with this?

  3. What makes that code offending? I don't follow.

    If you take that out of the bb-config.php, can you register without the email validation problem?

  4. After many unsuccessful tries I've reinstalled, started everything from scratch.

    Now I can register on the forum OK and I can log in OK,
    new registered forum users appear in both my WP admin and BB admin, that's OK too.

    Only problem now is if I'm logged in to the forum I am not logged in to WP and vice-versa.

  5. Sounds like a classic integration issue.

    Start a new thread with the details... make sure to include the version numbers of both bbPress and WordPress, along with whatever techniques you've used to integrate the two!

  6. ...if the email address/domain tested against the DNS? that might be a problem for users on a windows host

  7. You must log in to post.