MyBB Community Forums

Full Version: Cookie problems on MyBB website.
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
When I goto http://community.mybboard.net, it automatically logs me in, how ever, when I goto http://community.mybboard.com, it requires me to log in, but it doesnt save cookie information.

I just thought I might let you all know. I dont know if anyone else members and staff alike are having this problem, or if MyBB Staff know of this issue, but, again, just thought I would let you all know.
http://community.mybboard.net and http://community.mybboard.com are different (cookie) domains.. so it's normal.. you cannot have an unique login..

Big Grin
Our recommendation is that you always login using http://community.mybboard.net and never use the .com domain. Just update your bookmarks and always type mybboard.net instead of .com. You shouldn't encounter any login difficulties after that.

Regards,
Peter
I have seen this as well.

But perhaps instead of telling everybody to update their bookmarks and such, it should just automatically redirect users?

This could be done with a .htaccess file by adding the following code to it.

RewriteEngine on
RewriteCond %{HTTP_HOST} ^community.mybboard\.com
RewriteRule (.*) http://community.mybboard.net/$1 [R=permanent,L]

That would clear up this issue.