. require_once("../inc/db_ops.inc"); require_once("../inc/util_ops.inc"); require_once("../inc/uotd.inc"); require_once("../project/project.inc"); $config = get_config(); $stripchart_cgi_url = parse_config($config, ""); db_init(); $title = "Project Management"; admin_page_head($title); // Notification area echo "\n"; if (function_exists('admin_index_extra')) { admin_index_extra(); } echo "

Browse database: Computing User management
"; // Result Summaries: $show_deprecated = get_str("show_deprecated", true); $show_only = array("all"); // Add all appids you want to display, or "all" $apps = BoincApp::enum(""); foreach ($apps as $app) { if (in_array($app->id, $show_only) || ( in_array("all", $show_only) && (!$app->deprecated || $show_deprecated) )) { echo " Results for $app->name:

"; } } if ($show_deprecated) { echo "Hide deprecated applications"; } else { echo "Show deprecated applications"; } echo "

Periodic tasks

The following scripts should be run as periodic tasks, not via this web page (see http://boinc.berkeley.edu/trac/wiki/ProjectTasks):
    update_forum_activities.php, update_profile_pages.php, update_uotd.php

Repair tasks

The following scripts do one-time repair operations. Run them manually on the command line as needed (i.e. php scriptname.php):
forum_repair.php, team_repair.php, repair_validator_problem.php

Cleanup tasks

You can run the following as a periodic task, on the command line, or by clicking here: "; admin_page_tail(); $cvs_version_tracker[]="\$Id$"; //Generated automatically - do not edit ?>