So I am having this issue where when I want to customize my site I don’t get to see my frontpage but the login page of the site. Even when I log in on that page the same login page keeps appearing. See screenshot below. Any tips are appreciated.
Hi @julian2001,
Thanks for posting in.
Looks like it’s session/cookie issue. Please check this http://www.wpbeginner.com/wp-tutorials/how-to-fix-wordpress-keeps-logging-out-problem/ and implement the suggested solution.
Thanks!
Thanks for the suggestion @Rad,
I’m running a multisite installation so any of the options shown in the article are not applicable as these settings do not exist in my installation. Any other suggestions?
Update: I solved the issue by adding the following code to my wp-config.php. In case there are more people facing this issue
define(‘ADMIN_COOKIE_PATH’, ‘/’);
define(‘COOKIE_DOMAIN’, ‘’);
define(‘COOKIEPATH’, ‘’);
define(‘SITECOOKIEPATH’, ‘’);
Glad that you fixed it and thanks for the information too.
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.