MyBB Community Forums

Full Version: Logging In Trouble
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Here is my site- http://golf.0hna.com/forum

I cannot log in, I have ftp access and have followed this http://community.mybb.com/thread-74904.html

Here is my setting.php
$settings['cookiedomain'] = "golf.0hna.com/forum/";
$settings['cookiepath'] = "/forum/";
$settings['cookieprefix'] = "";

What can I do? Can you help me?
A domain is not a URL. You have provided a URL.

$settings['cookiedomain'] = ".golf.0hna.com";
$settings['cookiepath'] = "/forum/";
$settings['cookieprefix'] = "";
(2012-03-29, 07:38 AM)Nathan Malcolm Wrote: [ -> ]A domain is not a URL. You have provided a URL.

$settings['cookiedomain'] = ".golf.0hna.com";
$settings['cookiepath'] = "/forum/";
$settings['cookieprefix'] = "";

That still didn't work.
I took a look at the page source, and found this:

	var cookieDomain = "golf.0hna.com/forum/index.php";
	var cookiePath = "/forum/index.php";

They're both wrong.

The settings should be:

$settings['cookiedomain'] = ".golf.0hna.com";
$settings['cookiepath'] = "/forum/";
$settings['cookieprefix'] = ""; 

See: http://community.mybb.com/thread-74904.html
(2012-03-29, 08:06 AM)Nathan Malcolm Wrote: [ -> ]I took a look at the page source, and found this:

	var cookieDomain = "golf.0hna.com/forum/index.php";
	var cookiePath = "/forum/index.php";

They're both wrong.

The settings should be:

$settings['cookiedomain'] = ".golf.0hna.com";
$settings['cookiepath'] = "/forum/";
$settings['cookieprefix'] = ""; 

See: http://community.mybb.com/thread-74904.html

I changed them to the exact way you posted, still did not work. After clearing my browser cache, still nothing.

I already viewed that thread.
Make sure you clear the old cookies out of your browser too — it tends to help me.