MyBB Community Forums

Full Version: Is there a way?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Is there a way to change the cookie domain from file because it wont let me log into the ACP to change it in there as i have just migrated my forum to a different domain and they need to be changed.

Thanks.
open ./inc/settings.php by using a code editor (eg. notepad++) ;
around line 80 find code similar to below & change as required.
$settings['cookiedomain'] = "";
$settings['cookiepath'] = "/mybb/";
$settings['cookieprefix'] = "";


see also : login logout problems ...
(2011-07-30, 10:10 AM)ranjani Wrote: [ -> ]open ./inc/settings.php by using a code editor (eg. notepad++) ;
around line 80 find code similar to below & change as required.
$settings['cookiedomain'] = "";
$settings['cookiepath'] = "/mybb/";
$settings['cookieprefix'] = "";


see also : login logout problems ...

Thank you!