travis07 (@travis07)

Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • I am having the same issue. I am running 1.0.2 sharing cookies with WP 2.8.5. If a user is not logged in, and selects “add new”, they are routed to my WP 404 screen. Instead of using the hack above, I’ve done the following hack so that the redirect is maintained. Note that it just strips the “http://” out of the redirect. Hopefully a real fix can be put in place for this.

    I’ve done some limited testing and this seems to work.

    In functions.bb-template.php I created the following function:

    function hackfixurl ($url){

    $url= str_replace(“http://”, “”, $url);

    $url= str_replace($_SERVER[“HTTP_HOST”], “”, $url);

    return $url;

    }

    Then, on line 1590 of the same file, wrap the url with the new function like:

    $url = bb_get_uri(‘bb-login.php’, array(‘re’ => hackfixurl($url)), BB_URI_CONTEXT_A_HREF + BB_URI_CONTEXT_BB_USER_FORMS);

    Regards–

    Resolved. I had created and was working on a development instance (copied db and code) instead of doing an install from scratch. I had missed changing one of the database url’s that was still pointed to Prod instance.

Viewing 2 replies - 1 through 2 (of 2 total)