options page") ); update_site_option( "WPLANG", $_POST['WPLANG'] ); if( is_email( $_POST['admin_email'] ) ) update_site_option( "admin_email", $_POST['admin_email'] ); $illegal_names = split( ' ', $_POST['illegal_names'] ); foreach( (array) $illegal_names as $name ) { $name = trim( $name ); if( $name != '' ) $names[] = trim( $name ); } update_site_option( "illegal_names", $names ); update_site_option( "registration", $_POST['registration'] ); update_site_option( "registrationnotification", $_POST['registrationnotification'] ); update_site_option( "add_new_users", $_POST['add_new_users'] ); if( $_POST['limited_email_domains'] != '' ) { $limited_email_domains = str_replace( ' ', "\n", $_POST[ 'limited_email_domains' ] ); $limited_email_domains = split( "\n", stripslashes( $limited_email_domains ) ); foreach( (array) $limited_email_domains as $domain ) { $limited_email[] = trim( $domain ); } update_site_option( "limited_email_domains", $limited_email ); } else { update_site_option( "limited_email_domains", '' ); } if( $_POST['banned_email_domains'] != '' ) { $banned_email_domains = split( "\n", stripslashes( $_POST[ 'banned_email_domains' ] ) ); foreach( (array) $banned_email_domains as $domain ) { $banned[] = trim( $domain ); } update_site_option( "banned_email_domains", $banned ); } else { update_site_option( "banned_email_domains", '' ); } update_site_option( 'default_user_role', $_POST[ 'default_user_role' ] ); if( trim( $_POST[ 'dashboard_blog_orig' ] ) == '' ) $_POST[ 'dashboard_blog_orig' ] = $current_site->blog_id; if( trim( $_POST[ 'dashboard_blog' ] ) == '' ) { $_POST[ 'dashboard_blog' ] = $current_site->blog_id; $dashboard_blog_id = $current_site->blog_id; } else { $dashboard_blog = sanitize_user( str_replace( '.', '', str_replace( $current_site->domain . $current_site->path, '', $_POST[ 'dashboard_blog' ] ) ) ); $blog_details = get_blog_details( $dashboard_blog ); if ( false === $blog_details ) { if ( is_numeric( $dashboard_blog ) ) wp_die( 'Dashboard blog_id must be a blog that already exists' ); if ( constant( 'VHOST' ) == 'yes' ) { $domain = $dashboard_blog . '.' . $current_site->domain; $path = $current_site->path; } else { $domain = $current_site->domain; $path = trailingslashit( $current_site->path . $dashboard_blog ); } $wpdb->hide_errors(); $dashboard_blog_id = wpmu_create_blog( $domain, $path, __( 'My Dashboard' ), $current_user->id , array( "public" => 0 ), $current_site->id ); $wpdb->show_errors(); } else { $dashboard_blog_id = $blog_details->blog_id; } } if( $_POST[ 'dashboard_blog_orig' ] != $_POST[ 'dashboard_blog' ] ) { $users = get_users_of_blog( get_site_option( 'dashboard_blog' ) ); $move_users = array(); foreach ( (array)$users as $user ) { if( array_pop( array_keys( unserialize( $user->meta_value ) ) ) == 'subscriber' ) $move_users[] = $user->user_id; } if ( false == empty( $move_users ) ) { foreach ( (array)$move_users as $user_id ) { remove_user_from_blog($user_id, get_site_option( 'dashboard_blog' ) ); add_user_to_blog( $dashboard_blog_id, $user_id, get_site_option( 'default_user_role', 'subscriber' ) ); update_usermeta( $user_id, 'primary_blog', $dashboard_blog_id ); } } } update_site_option( "dashboard_blog", $dashboard_blog_id ); update_site_option( "menu_items", $_POST['menu_items'] ); update_site_option( "mu_media_buttons", $_POST['mu_media_buttons'] ); update_site_option( "blog_upload_space", $_POST['blog_upload_space'] ); update_site_option( "upload_filetypes", trim( $_POST['upload_filetypes'] ) ); update_site_option( "site_name", $_POST['site_name'] ); update_site_option( "first_post", $_POST['first_post'] ); update_site_option( "welcome_email", $_POST['welcome_email'] ); update_site_option( "fileupload_maxk", $_POST['fileupload_maxk'] ); update_site_option( "admin_notice_feed", clean_url( $_POST['admin_notice_feed'] ) ); $site_admins = explode( ' ', str_replace( ",", " ", $_POST['site_admins'] ) ); if ( is_array( $site_admins ) ) { $mainblog_id = $wpdb->get_var( "SELECT blog_id FROM {$wpdb->blogs} WHERE domain='{$current_site->domain}' AND path='{$current_site->path}'" ); if( $mainblog_id ) { reset( $site_admins ); foreach( (array) $site_admins as $site_admin ) { $uid = $wpdb->get_var( "SELECT ID FROM {$wpdb->users} WHERE user_login='{$site_admin}'" ); if( $uid ) add_user_to_blog( $mainblog_id, $uid, 'administrator' ); } } update_site_option( 'site_admins' , $site_admins ); } // Update more options here do_action( 'update_wpmu_options' ); wp_redirect( add_query_arg( "updated", "true", $_SERVER['HTTP_REFERER'] ) ); exit(); break; // Blogs case "addblog": check_admin_referer('add-blog'); $blog = $_POST['blog']; $domain = sanitize_user( str_replace( '/', '', $blog[ 'domain' ] ) ); $email = sanitize_email( $blog[ 'email' ] ); $title = $blog[ 'title' ]; if ( empty($domain) || empty($email)) wp_die( __('Missing blog address or email address.') ); if( !is_email( $email ) ) wp_die( __('Invalid email address') ); if( constant('VHOST') == 'yes' ) { $newdomain = $domain.".".$current_site->domain; $path = $base; } else { $newdomain = $current_site->domain; $path = $base.$domain.'/'; } $password = 'N/A'; $user_id = email_exists($email); if( !$user_id ) { $password = generate_random_password(); $user_id = wpmu_create_user( $domain, $password, $email ); if(false == $user_id) { wp_die( __('There was an error creating the user') ); } else { wp_new_user_notification($user_id, $password); } } $wpdb->hide_errors(); $id = wpmu_create_blog($newdomain, $path, $title, $user_id , array( "public" => 1 ), $current_site->id); $wpdb->show_errors(); if( !is_wp_error($id) ) { if( get_user_option( $user_id, 'primary_blog' ) == 1 ) update_user_option( $user_id, 'primary_blog', $id, true ); $content_mail = sprintf( __( "New blog created by %1s\n\nAddress: http://%2s\nName: %3s"), $current_user->user_login , $newdomain.$path, stripslashes( $title ) ); wp_mail( get_site_option('admin_email'), sprintf(__('[%s] New Blog Created'), $current_site->site_name), $content_mail, 'From: "Site Admin" <' . get_site_option( 'admin_email' ) . '>' ); wpmu_welcome_notification( $id, $user_id, $password, $title, array( "public" => 1 ) ); wp_redirect( add_query_arg( array('updated' => 'true', 'action' => 'add-blog'), $_SERVER['HTTP_REFERER'] ) ); exit(); } else { wp_die( $id->get_error_message() ); } break; case "updateblog": check_admin_referer('editblog'); if( empty( $_POST ) ) wp_die( __('You probably need to go back to the blogs page') ); // themes if( is_array( $_POST['theme'] ) ) { $_POST['option']['allowedthemes'] = $_POST['theme']; } else { $_POST['option']['allowedthemes'] = ''; } if( is_array( $_POST['option'] ) ) { $c = 1; $count = count( $_POST['option'] ); foreach ( (array) $_POST['option'] as $key => $val ) { if( $c == $count ) { update_blog_option( $id, $key, $val ); } else { update_blog_option( $id, $key, $val, false ); // no need to refresh blog details yet } $c++; } } if( $_POST['update_home_url'] == 'update' ) { if( get_blog_option( $id, 'siteurl' ) != 'http://' . $_POST['blog']['domain'] . $_POST['blog']['path'] ) update_blog_option( $id, 'siteurl', 'http://' . $_POST['blog']['domain'] . $_POST['blog']['path'] ); if( get_blog_option( $id, 'home' ) != 'http://' . $_POST['blog']['domain'] . $_POST['blog']['path'] ) update_blog_option( $id, 'home', 'http://' . $_POST['blog']['domain'] . $_POST['blog']['path'] ); } $wp_rewrite->flush_rules(); // update blogs table $result = $wpdb->query("UPDATE {$wpdb->blogs} SET domain = '".$_POST['blog']['domain']."', path = '".$_POST['blog']['path']."', registered = '".$_POST['blog']['registered']."', public = '".$_POST['blog']['public']."', archived = '".$_POST['blog']['archived']."', mature = '".$_POST['blog']['mature']."', deleted = '".$_POST['blog']['deleted']."', spam = '".$_POST['blog']['spam']."' WHERE blog_id = '$id'"); update_blog_status( $id, 'spam', $_POST['blog']['spam'] ); update_blog_option( $id, 'blog_public', $_POST['blog']['public'] ); // user roles if( is_array( $_POST['role'] ) == true ) { $newroles = $_POST['role']; reset( $newroles ); foreach ( (array) $newroles as $userid => $role ) { $role_len = strlen( $role ); $existing_role = $wpdb->get_var( "SELECT meta_value FROM $wpdb->usermeta WHERE user_id = '$userid' AND meta_key = '" . $wpdb->base_prefix . $id . "_capabilities'" ); if( false == $existing_role ) { $wpdb->query( "INSERT INTO " . $wpdb->usermeta . "( `umeta_id` , `user_id` , `meta_key` , `meta_value` ) VALUES ( NULL, '$userid', '" . $wpdb->base_prefix . $id . "_capabilities', 'a:1:{s:" . strlen( $role ) . ":\"" . $role . "\";b:1;}')" ); } elseif( $existing_role != "a:1:{s:" . strlen( $role ) . ":\"" . $role . "\";b:1;}" ) { $wpdb->query( "UPDATE $wpdb->usermeta SET meta_value = 'a:1:{s:" . strlen( $role ) . ":\"" . $role . "\";b:1;}' WHERE user_id = '$userid' AND meta_key = '" . $wpdb->base_prefix . $id . "_capabilities'" ); } } } // remove user if( is_array( $_POST['blogusers'] ) ) { reset( $_POST['blogusers'] ); foreach ( (array) $_POST['blogusers'] as $key => $val ) remove_user_from_blog( $key, $id ); } // change password if( is_array( $_POST['user_password'] ) ) { reset( $_POST['user_password'] ); $newroles = $_POST['role']; foreach ( (array) $_POST['user_password'] as $userid => $pass ) { unset( $_POST['role'] ); $_POST['role'] = $newroles[ $userid ]; if( $pass != '' ) { $cap = $wpdb->get_var( "SELECT meta_value FROM {$wpdb->usermeta} WHERE user_id = '{$userid}' AND meta_key = '{$wpdb->base_prefix}{$wpdb->blogid}_capabilities' AND meta_value = 'a:0:{}'" ); $userdata = get_userdata($userid); $_POST['pass1'] = $_POST['pass2'] = $pass; $_POST['email'] = $userdata->user_email; $_POST['rich_editing'] = $userdata->rich_editing; edit_user( $userid ); if( $cap == null ) $wpdb->query( "DELETE FROM {$wpdb->usermeta} WHERE user_id = '{$userid}' AND meta_key = '{$wpdb->base_prefix}{$wpdb->blogid}_capabilities' AND meta_value = 'a:0:{}'" ); } } unset( $_POST['role'] ); $_POST['role'] = $newroles; } // add user? if( $_POST['newuser'] != '' ) { $newuser = $_POST['newuser']; $userid = $wpdb->get_var( $wpdb->prepare( "SELECT ID FROM " . $wpdb->users . " WHERE user_login = %s", $newuser ) ); if( $userid ) add_user_to_blog( $id, $userid, $_POST['new_role'] ); } do_action( 'wpmu_update_blog_options' ); wpmu_admin_do_redirect( "wpmu-blogs.php?action=editblog&updated=true&id=".$id ); break; case "deleteblog": check_admin_referer('deleteblog'); if( $id != '0' && $id != '1' ) wpmu_delete_blog( $id, true ); wp_redirect( add_query_arg( array('updated' => 'true', 'action' => 'delete'), $_POST[ 'ref' ] ) ); exit(); break; case "allblogs": check_admin_referer('allblogs'); foreach ( (array) $_POST['allblogs'] as $key => $val ) { if( $val != '0' && $val != '1' ) { if ( isset($_POST['allblog_delete']) ) { $blogfunction = 'all_delete'; wpmu_delete_blog( $val, true ); } elseif ( isset($_POST['allblog_spam']) ) { $blogfunction = 'all_spam'; update_blog_status( $val, "spam", '1', 0 ); set_time_limit(60); } elseif ( isset($_POST['allblog_notspam']) ) { $blogfunction = 'all_notspam'; update_blog_status( $val, "spam", '0', 0 ); set_time_limit(60); } } } wp_redirect( add_query_arg( array('updated' => 'true', 'action' => $blogfunction), $_SERVER['HTTP_REFERER'] ) ); exit(); break; case "archiveblog": check_admin_referer('archiveblog'); update_blog_status( $id, "archived", '1' ); do_action( "archive_blog", $id ); wp_redirect( add_query_arg( array('updated' => 'true', 'action' => 'archive'), $_POST['ref'] ) ); exit(); break; case "unarchiveblog": check_admin_referer('unarchiveblog'); do_action( "unarchive_blog", $id ); update_blog_status( $id, "archived", '0' ); wp_redirect( add_query_arg( array('updated' => 'true', 'action' => 'unarchive'), $_POST['ref'] ) ); exit(); break; case "activateblog": check_admin_referer('activateblog'); update_blog_status( $id, "deleted", '0' ); do_action( "activate_blog", $id ); wp_redirect( add_query_arg( "updated", array('updated' => 'true', 'action' => 'activate'), $_POST['ref'] ) ); exit(); break; case "deactivateblog": check_admin_referer('deactivateblog'); do_action( "deactivate_blog", $id ); update_blog_status( $id, "deleted", '1' ); wp_redirect( add_query_arg( array('updated' => 'true', 'action' => 'deactivate'), $_POST['ref'] ) ); exit(); break; case "unspamblog": check_admin_referer('unspamblog'); update_blog_status( $id, "spam", '0' ); do_action( "unspam_blog", $id ); wp_redirect( add_query_arg( array('updated' => 'true', 'action' => 'unspam'), $_POST['ref'] ) ); exit(); break; case "spamblog": check_admin_referer('spamblog'); update_blog_status( $id, "spam", '1' ); do_action( 'make_spam_blog', $id ); wp_redirect( add_query_arg( array('updated' => 'true', 'action' => 'spam'), $_POST['ref'] ) ); exit(); break; case "mature": update_blog_status( $id, 'mature', '1' ); do_action( 'mature_blog', $id ); wp_redirect( add_query_arg( array('updated' => 'true', 'action' => 'mature'), $_POST['ref'] ) ); exit(); break; case "unmature": update_blog_status( $id, 'mature', '0' ); do_action( 'unmature_blog', $id ); wp_redirect( add_query_arg( array('updated' => 'true', 'action' => 'umature'), $_POST['ref'] ) ); exit(); break; // Themes case "updatethemes": if( is_array( $_POST['theme'] ) ) { $themes = get_themes(); reset( $themes ); foreach( (array) $themes as $key => $theme ) { if( $_POST['theme'][ wp_specialchars( $theme['Stylesheet'] ) ] == 'enabled' ) $allowed_themes[ wp_specialchars( $theme['Stylesheet'] ) ] = true; } update_site_option( 'allowedthemes', $allowed_themes ); } wp_redirect( add_query_arg( array('updated' => 'true', 'action' => 'themes'), $_SERVER['HTTP_REFERER'] ) ); exit(); break; // Common case "confirm": $referrer = ( isset($_GET['ref']) ) ? stripslashes($_GET['ref']) : $_SERVER['HTTP_REFERER']; $referrer = clean_url($referrer); if( !headers_sent() ){ nocache_headers(); header( 'Content-Type: text/html; charset=utf-8' ); } ?> >