From d48e85e0ac5e675ca33fac173f30c75403d1033f Mon Sep 17 00:00:00 2001 From: donncha Date: Thu, 22 Jun 2006 18:31:50 +0000 Subject: Moved everything in wp-inst down a directory. Uses's Ryan Boren's htaccess rules and mods If you're upgrading, try this on a test server first! git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@591 7be80a69-a1ef-0310-a953-fb0f7c49ff36 --- wp-admin/wpmu-admin.php | 52 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 wp-admin/wpmu-admin.php (limited to 'wp-admin/wpmu-admin.php') diff --git a/wp-admin/wpmu-admin.php b/wp-admin/wpmu-admin.php new file mode 100644 index 0000000..d943761 --- /dev/null +++ b/wp-admin/wpmu-admin.php @@ -0,0 +1,52 @@ +You do not have permission to access this page.

') ); +} +if (isset($_GET['updated'])) { + ?>

+
+Site Stats + There are currently ".$stats[ 'blogs' ]." blogs running on this server and ".$stats[ 'users' ]." users.



+ "; + + print ""; + #$blogs = get_blog_list(); + #print "
blogs:
"; + #print_r( $blogs ); + + $most_active = get_most_active_blogs( 10, false ); + if( is_array( $most_active ) ) { + print ""; + print ""; + while( list( $key, $details ) = each( $most_active ) ) { + $class = ('alternate' == $class) ? '' : 'alternate'; + $url = "http://" . $details[ 'domain' ] . $details[ 'path' ]; + print ""; + } + } + print "
Most Active Blogs
IDAddressPosts
" . $details[ 'blog_id' ] . "$url" . $details[ 'postcount' ] . "
"; + + do_action( "wpmuadmindefaultpage", "" ); + */ + break; +} + +?> +
+ -- cgit