Message boards : The Lounge : The Seti is Slumbering Cafe
Message board moderation
Previous · 1 . . . 37 · 38 · 39 · 40 · 41 · 42 · 43 . . . 508 · Next
Author | Message |
---|---|
Send message Joined: 21 Nov 13 Posts: 641 |
Posting to check my Avatar status... Now, ZS's fish bowl is the only Avatar working... Your's, mine, and everyone else's is gone. Have TARDIS, will travel... Come along K-9! Join Calm Chaos Pluto is still a planet |
Send message Joined: 10 Dec 12 Posts: 323 |
Hmm ths strange case of the missing avatars! PS I can see all of them except Annie's |
Send message Joined: 21 Nov 13 Posts: 641 |
Hmm ths strange case of the missing avatars! Hit "F5" on your keyboard, and they will ALL disappear, Bernie. :-( Have TARDIS, will travel... Come along K-9! Join Calm Chaos Pluto is still a planet |
Send message Joined: 15 Jan 13 Posts: 766 |
I can only see Jord's and Zappy's avatars. Now, is anyone going through Einstein withdrawal? signature |
Send message Joined: 21 Nov 13 Posts: 641 |
I can only see Jord's and Zappy's avatars. Yes, I'm going through Einstein withdrawal! :-( Have TARDIS, will travel... Come along K-9! Join Calm Chaos Pluto is still a planet |
Send message Joined: 29 Aug 05 Posts: 15563 |
I can only see Jord's and Zappy's avatars.It's because we use the external http://Gravatar.com website. The avatars there aren't stored on the BOINC server. Now, is anyone going through Einstein withdrawal?Didn't know they were down, but at least they're back up. Checking emergency emails about that, there's only the possibility that the scheduler doesn't work yet. |
Send message Joined: 5 Oct 06 Posts: 5129 |
I can only see Jord's and Zappy's avatars.It's because we use the external http://Gravatar.com website. The avatars there aren't stored on the BOINC server. It works, but you have to get the new url first. 4-5 clicks on the 'update' button should do it. |
Send message Joined: 29 Aug 05 Posts: 15563 |
David Anderson, head-honcho BOINC and such wrote: We're fiddling with Apache issues; avatars don't work for the moment.Well, that explains that. :) |
Send message Joined: 15 Jan 13 Posts: 766 |
Yes, Einstein is back (from a scheduled maintenance outrage), but no one has posted in the LPTP thread yet. :( Also, the forums are running really slow. signature |
Send message Joined: 5 Oct 06 Posts: 5129 |
David Anderson, head-honcho BOINC and such wrote:We're fiddling with Apache issues; avatars don't work for the moment.Well, that explains that. :) boinc_alpha mailing list seems to be broken too. |
Send message Joined: 12 Jun 09 Posts: 2103 |
Just logged in & can get the main index page and board index but clicking on any topic gets this... . // display the threads in a forum. require_once('../inc/util.inc'); require_once('../inc/time.inc'); require_once('../inc/forum.inc'); require_once('../inc/pm.inc'); check_get_args(array("id", "sort", "start")); $id = get_int("id"); $sort_style = get_int("sort", true); $start = get_int("start", true); if (!$start) $start = 0; $forum = BoincForum::lookup_id($id); if (!$forum) error_page("forum ID not found"); $user = get_logged_in_user(false); BoincForumPrefs::lookup($user); if (DISABLE_FORUMS && !is_admin($user)) { error_page("Forums are disabled"); } if (!is_forum_visible_to_user($forum, $user)) { if ($user) { remove_subscriptions_forum($user->id, $id); } error_page(tra("Not visible to you")); } if (!$sort_style) { // get the sort style either from the logged in user or a cookie if ($user){ $sort_style = $user->prefs->forum_sorting; } else { list($sort_style, $thread_style) = parse_forum_cookie(); } } else { // set the sort style if ($user){ $user->prefs->forum_sorting = $sort_style; $user->prefs->update("forum_sorting=$sort_style"); } else { list($old_style, $thread_style) = parse_forum_cookie(); send_cookie( 'sorting', implode("|", array($sort_style, $thread_style)), true ); } } switch ($forum->parent_type) { case 0: $category = BoincCategory::lookup_id($forum->category); if ($category->is_helpdesk) { page_head(tra("Questions and Answers").' : '.$forum->title); } else { page_head(tra("Message boards").' : '.$forum->title); } show_forum_header($user); show_forum_title($category, $forum, NULL); break; case 1: $team = BoincTeam::lookup_id($forum->category); page_head(tra("Team message board for %1", "id>$team->name")); show_forum_header($user); show_team_forum_title($forum); break; } echo ' '; if (user_can_create_thread($user, $forum)) { show_button( "forum_post.php?id=$id", tra("New thread"), tra("Add a new thread to this forum") ); } echo " id\"> "; echo select_from_array("sort", $forum_sort_styles, $sort_style); echo " "; show_forum($forum, $start, $sort_style, $user); echo " ". tra("This message board is available as an %1RSS feed%2", "id&setup=1>", " "); page_tail(); // This function shows the threads for the given forum // Starting from $start, // using the given $sort_style (as defined in forum.php) // and using the features for the logged in user in $user. // function show_forum($forum, $start, $sort_style, $user) { $page_nav = page_links( "forum_forum.php?id=$forum->id&sort=$sort_style", $forum->threads, THREADS_PER_PAGE, $start ); echo $page_nav; start_forum_table(array( "", tra("Threads"), tra("Posts"), tra("Author"), tra("Views"), "".tra("Last post")."" )); $sticky_first = !$user || !$user->prefs->ignore_sticky_posts; // Show hidden threads if logged in user is a moderator // $show_hidden = is_moderator($user, $forum); $threads = get_forum_threads( $forum->id, $start, THREADS_PER_PAGE, $sort_style, $show_hidden, $sticky_first ); if ($user) { $subs = BoincSubscription::enum("userid=$user->id"); } // Run through the list of threads, displaying each of them // $n = 0; $i=0; foreach ($threads as $thread) { $owner = BoincUser::lookup_id($thread->owner); if (!$owner) continue; $unread = thread_is_unread($user, $thread); //if ($thread->status==1){ // This is an answered helpdesk thread if ($user && is_subscribed($thread, $subs)) { echo ''; } else { // Just a standard thread. echo ''; } echo ""; if ($thread->hidden) { show_image(IMAGE_HIDDEN, tra("This thread is hidden"), tra("hidden")); } else if ($unread) { if ($thread->sticky) { if ($thread->locked) { show_image(NEW_IMAGE_STICKY_LOCKED, tra("This thread is sticky and locked, and you haven't read it yet"), tra("sticky/locked/unread")); } else { show_image(NEW_IMAGE_STICKY, tra("This thread is sticky and you haven't read it yet"), tra("sticky/unread")); } } else { if ($thread->locked) { show_image(NEW_IMAGE_LOCKED, tra("You haven't read this thread yet, and it's locked"), tra("unread/locked")); } else { show_image(NEW_IMAGE, tra("You haven't read this thread yet"), tra("unread")); } } } else { if ($thread->sticky) { if ($thread->locked) { show_image(IMAGE_STICKY_LOCKED, tra("This thread is sticky and locked"), tra("sticky/locked")); } else { show_image(IMAGE_STICKY, tra("This thread is sticky"), tra("sticky")); } } else { if ($thread->locked) { show_image(IMAGE_LOCKED, tra("This thread is locked"), tra("locked")); } else { show_image(IMAGE_POST, tra("You read this thread"), tra("read")); } } } echo ""; $title = cleanup_title($thread->title); //$titlelength = 9999; //if (strlen($title) > $titlelength) { // $title = substr($title, 0, $titlelength)."..."; //} echo "id\">$title "; $n = ($n+1)%2; echo ' '.($thread->replies+1).' '.user_links($owner, BADGE_HEIGHT_SMALL).' '.$thread->views.' '.time_diff_str($thread->timestamp, time()).' '; flush(); } end_table(); echo " $page_nav"; // show page links } ?> |
Send message Joined: 23 Feb 08 Posts: 2493 |
Now the home page is toast. Just when the Google bot will drop by and index it! \n"; include('schedulers.txt'); echo "\n"; include('header.php'); $stopped = web_stopped(); if (!$stopped) { db_init(); } function no_pres($fixstring) { $replacearray = array('[pre]',''); return(str_replace($replacearray,"",$fixstring)); } echo " ".tra("Get started")." "; echo "" .tra("Read our rules and policies"). "" ; echo " "; printf( tra("%sDownload%s, install and run the BOINC software used by SETI@home. When prompted, enter the URL: http://setiathome.berkeley.edu"), "", "" ); echo " "; printf( tra("Have questions or need help? Contact a volunteer using %sBOINC online help%s."), "", "" ); echo " "; printf(tra( "Special instructions: %s For SETI@home Classic participants %s %s For users of command-line and pre-5.0 clients %s . "), "", "", "", "", "", "" ); echo " "; printf(tra("Keep your computer busy when SETI@home has no work - %sparticipate in other BOINC-based projects%s. "), "", "" ); echo " "; if ($stopped) { echo " "; } else { echo " "; } echo " ".tra("Project database is offline")." ".tra("Our database is temporarily offline. Many website functions are not available. Please try again later.")." ".tra("User of the day")." "; show_uotd(get_current_uotd()); echo " ".tra("News")." "; include("motd.php"); if (!web_stopped()) { show_news(0, 5); } echo " "; include('footer.php'); if ($caching) { end_cache(INDEX_PAGE_TTL); } ?> [/pre] |
Send message Joined: 19 Nov 11 Posts: 115 |
Hmm, missing avatars and now crazy text... :) |
Send message Joined: 23 Feb 08 Posts: 2493 |
Hmm, missing avatars and now crazy text... :) Dr. A at work on live systems ..... or is it UFO lights over Beserkeley? Film at 11:00 |
Send message Joined: 12 Jun 09 Posts: 2103 |
Home page okay here, but the account page has gone gaga... ...& now avatar disappears, Guy Fawkes must have been a naughty boy :-) |
Send message Joined: 19 Nov 11 Posts: 115 |
Hmm, missing avatars and now crazy text... :) On the plus side it's still early over there :) |
Send message Joined: 5 Oct 06 Posts: 5129 |
Oops, now my home page at SETI is garbage, I don't have permission to view the forum_index, and several of my posts have disappeared. There wasn't a full moon over Berkeley tonight, was there, by any chance? |
Send message Joined: 19 Mar 10 Posts: 223 |
I get the 403 and 405 error msg here |
Send message Joined: 19 Mar 10 Posts: 223 |
Oops, now my home page at SETI is garbage, I don't have permission to view the forum_index, and several of my posts have disappeared. There wasn't a full moon over Berkeley tonight, was there, by any chance? Yep, full moon tonight alright, and a big ass moon too:) |
Send message Joined: 19 Mar 10 Posts: 223 |
It's fixed:) I only get the forum index page... Forum pages seem to work ok, account page is a no go I'm afraid... |
Copyright © 2024 University of California.
Permission is granted to copy, distribute and/or modify this document
under the terms of the GNU Free Documentation License,
Version 1.2 or any later version published by the Free Software Foundation.