MyBB Community Forums

Full Version: Login/Logout problems? PLEASE READ
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I'm having problems logging into my site as admin my username / password is not recognised.
http://creativeuk.webuda.com/
The site looks as if it set up fine, I've checked chmod for settings is 666 and followed
the other chmod instructions.

http://creativeuk.webuda.com/ I have tried the cookie path as / and as /myforum/ (using the word "myforum" ) but non works.
I'm using Firefox and have cleared the cookies for these sites and again the login does not work.

Any suggestions ?

Are there any issues with the free web host http://www.000webhost.com/
It should work as /
Could you specify your other settings?
I really can't understand more what to do, in 2 days i have tried really everything but i still have the problem with cookie settings

now the settings are: $settings['cookiedomain'] = ".letsplanmywedding.com";
$settings['cookiepath'] = "/forums/";
$settings['cookieprefix'] = "";

but i can't login into ACP
(2013-01-17, 07:37 PM)pilinko Wrote: [ -> ]I really can't understand more what to do, in 2 days i have tried really everything but i still have the problem with cookie settings

now the settings are: $settings['cookiedomain'] = ".letsplanmywedding.com";
$settings['cookiepath'] = "/forums/";
$settings['cookieprefix'] = "";

but i can't login into ACP

Your cookie domain is blank.

<!--
	var cookieDomain = "";
	var cookiePath = "/forums/";
	var cookiePrefix = "";
...
(2013-01-17, 07:53 PM)Nathan Malcolm Wrote: [ -> ]
(2013-01-17, 07:37 PM)pilinko Wrote: [ -> ]I really can't understand more what to do, in 2 days i have tried really everything but i still have the problem with cookie settings

now the settings are: $settings['cookiedomain'] = ".letsplanmywedding.com";
$settings['cookiepath'] = "/forums/";
$settings['cookieprefix'] = "";

but i can't login into ACP

Your cookie domain is blank.

<!--
	var cookieDomain = "";
	var cookiePath = "/forums/";
	var cookiePrefix = "";
...

yes, but on inc/settings.php it show this:

$settings['cookiedomain'] = ".letsplanmywedding.com";
$settings['cookiepath'] = "/forums/";
$settings['cookieprefix'] = "";

and i have tried to delete settngs.ph, after re upload it but nothing

what i must to do now?
You also must change the records in AdminCP -> Configuration -> General Configuration after you've changed it in ./inc/settings.php Smile
(2013-01-17, 10:38 PM)Vernier Wrote: [ -> ]You also must change the records in AdminCP -> Configuration -> General Configuration after you've changed it in ./inc/settings.php Smile
Yes i know, but i can't log into ACP yet..
Do you know how to run SQL queries? Look at this thread for help: http://community.mybb.com/thread-44380.html
UPDATE `mybb_settings` SET `cookiedomain` = '.letsplanmywedding.com', `cookiepath` = '/forums/', `cookieprefix` = ''
[attachment=28336]Well when im trying to do this, and click on update and after on run and it show me this:

#1064 - You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '[value-1],name=[value-2],title=[value-3],description=[value-4],`optionscod' at line 1
OK try running this:
UPDATE `mybb_settings` SET `cookiedomain` = '.letsplanmywedding.com'
UPDATE `mybb_settings` SET `cookiepath` = '/forums/'
UPDATE `mybb_settings` SET `cookieprefix` = ''
Or put one at a time if all at once doesn't work.