Message boards :
Number crunching :
Cannot reach account page
Message board moderation
Author | Message |
---|---|
Send message Joined: 22 Feb 14 Posts: 3 Credit: 5,039,427 RAC: 0 |
When I go to my account page, I receive this output: . require_once("../inc/util.inc"); require_once("../inc/user.inc"); require_once("../inc/boinc_db.inc"); require_once("../inc/forum.inc"); check_get_args(array()); // show the home page of logged-in user $user = get_logged_in_user(); BoincForumPrefs::lookup($user); $user = get_other_projects($user); $init = isset($_COOKIE['init']); $via_web = isset($_COOKIE['via_web']); if ($via_web) { clear_cookie('via_web'); } $cache_control_extra = "no-store,"; if ($init) { clear_cookie('init'); page_head(tra("Welcome to %1", PROJECT)); echo " ".tra("View and edit your account preferences using the links below.")." \n"; if ($via_web) { echo " " .tra("If you have not already done so, %1 download BOINC client software %2.", "", "")." "; } } else { page_head(tra("Your account")); } show_account_private($user); page_tail(); ?> Any clues? It has been going on for about a day now. Anyone else seeing this? |
Send message Joined: 8 Jul 11 Posts: 1346 Credit: 548,098,678 RAC: 633,720 |
Sorry to hear that. This is not happening to me. I even logged out and then tried it, and it still worked. Maybe there is something going on with cookies. Try logging out and back in. Also clear your cache and then try. We upgraded the server OS to the latest version yesterday (about 12 hours ago), this included an upgrade of php from 7.0 to 7.2. I wonder if this could be part of the problem. |
Send message Joined: 22 Feb 14 Posts: 3 Credit: 5,039,427 RAC: 0 |
As usual, user error. Clear cache and stop/restart of browser did the trick and I should have tried that first. Must be getting forgetful ;-) Thanks Eric! g |