Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: ADD NEW goes to 404 for logged out users

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–

Skip to toolbar