MyBB Community Forums

Full Version: Issues with logging in...
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I can get into the Admin CP, but once there I cannot do anything. Everything I click on it requires me to login again. Once I try logging in again it takes me back to the login screen and says "invalid administration session".

I have also had a member (or two) complain about not being able to login period.

Any idea whats going on?
Could possibly be an issue with your cookie settings. Take a look at the link below:

http://community.mybb.com/thread-126359.html
Just checked. My cookie paths are correct, but I cannot get into the ACP to check to make sure they're correct there.

Just cleared my cookies and now I cannot even log back in period.
What's the link to your forum and what are your cookie settings?
http://cfa-football.com/forum

cfa-football.com
/forum/
Your cookie domain should be the following:

$settings['cookiedomain'] = ".cfa-football.com";

And not

$settings['cookiedomain'] = "cfa-football.com";

You are basically missing a dot before cfa-football.com
No that is there, didn't know I had to include that when I typed it LOL...

$settings['cookiedomain'] = ".cfa-football.com/";
$settings['cookiedomain'] = ".cfa-football.com/";
$settings['cookiepath'] = "/forum/";
$settings['cookiepath'] = "/forum/";
$settings['cookieprefix'] = "";
$settings['cookieprefix'] = "";
Why are you repeating each variable twice? You should only have it once. Also, try removing the slash after .cfa-football.com so it becomes

$settings['cookiedomain'] = ".cfa-football.com";
I don't know why. All of my settings are posted twice! I thought was how it was supposed to be LOL... how do I fix that, then?

Removing the / worked! Thanks a LOT.
Download your .inc/settings.php and delete the one from your server. It should normally regenerate by itself.

Edited

Your welcome! I would still recommend you to fix your settings.php file.