Changeset 12880
- Timestamp:
- 01/27/2010 07:13:00 PM (15 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/schema.php
r12862 r12880 631 631 632 632 // check for network collision 633 $existing_network = $wpdb->get_var( $wpdb->prepare( "SELECT id FROM {$wpdb->site}WHERE id = %d", $network_id ) );633 $existing_network = $wpdb->get_var( $wpdb->prepare( "SELECT id FROM $wpdb->site WHERE id = %d", $network_id ) ); 634 634 if ( $existing_network == $network_id ) 635 635 die( 'That network already exists!' ); … … 646 646 $allowed_themes = array( $stylesheet => true ); 647 647 648 if ( $network_id == 1 ) 649 $wpdb->query( $wpdb->prepare( "INSERT INTO ".$wpdb->site." ( id, domain, path ) VALUES ( NULL, %s, %s )", $domain, $path ) ); 650 else 651 $wpdb->query( $wpdb->prepare( "INSERT INTO ".$wpdb->site." ( id, domain, path ) VALUES ( %d, %s, %s )", $network_id, $domain, $path ) ); 652 653 $network_id = $wpdb->insert_id; 654 655 $wpdb->query( $wpdb->prepare( "INSERT INTO ".$wpdb->sitemeta." (meta_id, site_id, meta_key, meta_value) VALUES (NULL, %d, 'site_name', %s)", $network_id, $site_name ) ); 656 $wpdb->query( $wpdb->prepare( "INSERT INTO ".$wpdb->sitemeta." (meta_id, site_id, meta_key, meta_value) VALUES (NULL, %d, 'admin_email', %s)", $network_id, $site_user->user_email ) ); 657 $wpdb->query( $wpdb->prepare( "INSERT INTO ".$wpdb->sitemeta." (meta_id, site_id, meta_key, meta_value) VALUES (NULL, %d, 'admin_user_id', %d)", $network_id, $site_user->ID ) ); 658 $wpdb->query( $wpdb->prepare( "INSERT INTO ".$wpdb->sitemeta." (meta_id, site_id, meta_key, meta_value) VALUES (NULL, %d, 'registration', 'none')", $network_id ) ); 648 if ( 1 == $network_id ) { 649 $wpdb->insert( $wpdb->site, array( 'domain' => $domain, 'path' => $path ) ); 650 $network_id = $wpdb->insert_id; 651 } else { 652 $wpdb->insert( $wpdb->site, array( 'domain' => $domain, 'path' => $path, 'network_id' => $network_id ) ); 653 } 654 659 655 if ( !is_multisite() ) { 660 $wpdb->query( "INSERT INTO " . $wpdb->sitecategories . " ( cat_ID, cat_name, category_nicename, last_updated ) VALUES (1, 'Uncategorized', 'uncategorized', NOW())" ); 661 $wpdb->query( "INSERT INTO " . $wpdb->sitecategories . " ( cat_ID, cat_name, category_nicename, last_updated ) VALUES (2, 'Blogroll', 'blogroll', NOW())" ); 662 } 663 $wpdb->query( $wpdb->prepare( "INSERT INTO ".$wpdb->sitemeta." (meta_id, site_id, meta_key, meta_value) VALUES (NULL, %d, 'upload_filetypes', 'jpg jpeg png gif mp3 mov avi wmv midi mid pdf' )", $network_id ) ); 664 $wpdb->query( $wpdb->prepare( "INSERT INTO ".$wpdb->sitemeta." (meta_id, site_id, meta_key, meta_value) VALUES (NULL, %d, 'blog_upload_space', '10' )", $network_id ) ); 665 $wpdb->query( $wpdb->prepare( "INSERT INTO ".$wpdb->sitemeta." (meta_id, site_id, meta_key, meta_value) VALUES (NULL, %d, 'fileupload_maxk', '1500' )", $network_id ) ); 666 if ( !is_multisite() ) { 656 657 /* translators: Default category slug */ 658 $cat_slug = sanitize_title( _x( 'Uncategorized', 'Default category slug' ) ); 659 660 $wpdb->insert( $wpdb->sitecategories, array( 'site_id' => $network_id, 'cat_ID' => 1, 'cat_name' => __('Uncategorized'), 'category_nicename' => $cat_slug, 'last_updated' => current_time( 'mysql', true ) ) ); 661 662 /* translators: Default link category slug */ 663 $cat_slug = sanitize_title( _x( 'Blogroll', 'Default link category slug' ) ); 664 665 $wpdb->insert( $wpdb->sitecategories, array( 'site_id' => $network_id, 'cat_ID' => 2, 'cat_name' => __('Blogroll'), 'category_nicename' => $cat_slug, 'last_updated' => current_time( 'mysql', true ) ) ); 666 667 667 $site_admins = array( $site_user->user_login ); 668 668 $users = get_users_of_blog(); … … 676 676 $site_admins = get_site_option( 'site_admins' ); 677 677 } 678 $wpdb->query( $wpdb->prepare( "INSERT INTO ".$wpdb->sitemeta." (meta_id, site_id, meta_key, meta_value) VALUES (NULL, %d, 'site_admins', '" . serialize( $site_admins ) . "' )", $network_id ) ); 679 $wpdb->query( $wpdb->prepare( "INSERT INTO ".$wpdb->sitemeta." (meta_id, site_id, meta_key, meta_value) VALUES (NULL, %d, 'allowedthemes', '" . serialize( $allowed_themes ) . "' )", $network_id ) ); 680 $wpdb->query( $wpdb->prepare( "INSERT INTO ".$wpdb->sitemeta." (meta_id, site_id, meta_key, meta_value) VALUES (NULL, %d, 'illegal_names', '" . serialize( array( "www", "web", "root", "admin", "main", "invite", "administrator" ) ) . "' )", $network_id ) ); 681 $wpdb->query( $wpdb->prepare( "INSERT INTO ".$wpdb->sitemeta." (meta_id, site_id, meta_key, meta_value) VALUES (NULL, %d, 'wpmu_upgrade_site', '{$wp_db_version}')", $network_id ) ); 682 $wpdb->query( $wpdb->prepare( "INSERT INTO ".$wpdb->sitemeta." (meta_id, site_id, meta_key, meta_value) VALUES (NULL, %d, 'welcome_email', 'Dear User, 678 679 $welcome_email = __( 'Dear User, 683 680 684 681 Your new SITE_NAME blog has been successfully set up at: … … 693 690 Thanks! 694 691 695 --The Team @ SITE_NAME')", $network_id ) ); 696 $wpdb->query( $wpdb->prepare( "INSERT INTO ".$wpdb->sitemeta." (meta_id, site_id, meta_key, meta_value) VALUES (NULL, %d, 'first_post', 'Welcome to <a href=\"SITE_URL\">SITE_NAME</a>. This is your first post. Edit or delete it, then start blogging!' )", $network_id ) ); 697 //@todo - network admins should have a method of editing the network siteurl (used for cookie hash) 698 $wpdb->query( $wpdb->prepare( "INSERT INTO ".$wpdb->sitemeta." (meta_id, site_id, meta_key, meta_value) VALUES (NULL, %d, 'siteurl', %s)", $network_id, get_option( 'siteurl' ) ) ); 692 --The Team @ SITE_NAME' ); 693 694 $sitemeta = array( 695 'site_name' => $site_name, 696 'admin_email' => $site_user->user_email, 697 'admin_user_id' => $site_user->ID, 698 'registration' => 'none', 699 'upload_filetypes' => 'jpg jpeg png gif mp3 mov avi wmv midi mid pdf', 700 'blog_upload_space' => 10, 701 'fileupload_maxk' => 1500, 702 'site_admins' => $site_admins, 703 'allowedthemes' => $allowed_themes, 704 'illegal_names' => array( 'www', 'web', 'root', 'admin', 'main', 'invite', 'administrator' ), 705 'wpmu_upgrade_site' => $wp_db_version, 706 'welcome_email' => $welcome_email, 707 'first_post' => __( 'Welcome to <a href="SITE_URL">SITE_NAME</a>. This is your first post. Edit or delete it, then start blogging!' ), 708 // @todo - network admins should have a method of editing the network siteurl (used for cookie hash) 709 'siteurl' => get_option( 'siteurl' ) 710 ); 711 712 $insert = ''; 713 foreach ( $sitemeta as $meta_key => $meta_value ) { 714 $meta_key = $wpdb->escape( $meta_key ); 715 if ( is_array( $meta_value ) ) 716 $meta_value = serialize( $meta_value ); 717 $meta_value = $wpdb->escape( $meta_value ); 718 if ( !empty( $insert ) ) 719 $insert .= ', '; 720 $insert .= "( $network_id, '$meta_key', '$meta_value')"; 721 } 722 $wpdb->query( "INSERT INTO $wpdb->sitemeta ( site_id, meta_key, meta_value ) VALUES " . $insert ); 699 723 700 724 $current_site->domain = $domain; … … 703 727 704 728 if ( !is_multisite() ) { 705 $wpdb->query( $wpdb->prepare( "INSERT INTO {$wpdb->blogs} (site_id, domain, path) VALUES (%s, %s, %s)", $network_id, $domain, $path ) ); 729 $wpdb->insert( $wpdb->blogs, array( 'site_id' => $network_id, 'domain' => $domain, 'path' => $path ) ); 730 706 731 update_usermeta( $site_user->ID, 'source_domain', $domain ); 707 732 update_usermeta( $site_user->ID, 'primary_blog', 1 ); … … 727 752 } 728 753 if ( !$vhost_ok ) { 729 $msg = "<h2>Warning! Wildcard DNS may not be configured correctly!</h2>"; 730 $msg .= "<p>To use the subdomain feature of WordPress MU you must have a wildcard entry in your dns. The installer attempted to contact a random hostname ($hostname) on your domain but failed. It returned this error message:<br /> <strong>$errstr</strong></p><p>From the README.txt:</p>"; 731 $msg .= "<p><blockquote> If you want to host blogs of the form http://blog.domain.tld/ where domain.tld is the domain name of your machine then you must add a wildcard record to your DNS records.<br /> 732 This usually means adding a '*' hostname record pointing at your webserver in your DNS configuration tool. Matt has a more detailed <a href='http://ma.tt/2003/10/10/wildcard-dns-and-sub-domains/'>explanation</a> on his blog. If you still have problems, these <a href='http://mu.wordpress.org/forums/tags/wildcard'>forum messages</a> may help.</blockquote></p>"; 733 $msg .= "<p>You can still use your site but any subdomain you create may not be accessible. This check is not foolproof so ignore if you know your dns is correct.</p>"; 754 // @todo Update this to reflect the merge. Also: Multisite readme file, or remove the <blockquote> tags. 755 $msg = '<h2>' . esc_html__( 'Warning! Wildcard DNS may not be configured correctly!' ) . '</h2>'; 756 $msg .= '<p>' . __( 'To use the subdomain feature of WordPress MU you must have a wildcard entry in your dns. The installer attempted to contact a random hostname ($hostname) on your domain but failed. It returned this error message:' ) . '<br />'; 757 $msg .= '<br/><strong>' . $errstr . '</strong></p>'; 758 $msg .= '<p>' . __( 'From the README.txt:' ) . '</p>'; 759 $msg .= '<blockquote><p>' . __( "If you want to host blogs of the form http://blog.domain.tld/ where domain.tld is the domain name of your machine then you must add a wildcard record to your DNS records. This usually means adding a '*' hostname record pointing at your webserver in your DNS configuration tool. Matt has a more detailed <a href='http://ma.tt/2003/10/10/wildcard-dns-and-sub-domains/'>explanation</a> on his blog. If you still have problems, these <a href='http://mu.wordpress.org/forums/tags/wildcard'>forum messages</a> may help." ) . '</p></blockquote>'; 760 $msg .= '<p>' . __( 'You can still use your site but any subdomain you create may not be accessible. This check is not foolproof so ignore if you know your dns is correct.' ) . '</p>'; 734 761 } 735 762 } -
trunk/wp-includes/load.php
r12848 r12880 299 299 'parent' => '%d', 'count' => '%d','object_id' => '%d', 'term_order' => '%d', 'ID' => '%d', 'commment_ID' => '%d', 'comment_post_ID' => '%d', 'comment_parent' => '%d', 300 300 'user_id' => '%d', 'link_id' => '%d', 'link_owner' => '%d', 'link_rating' => '%d', 'option_id' => '%d', 'blog_id' => '%d', 'meta_id' => '%d', 'post_id' => '%d', 301 'user_status' => '%d', 'umeta_id' => '%d', 'comment_karma' => '%d', 'comment_count' => '%d' ); 301 'user_status' => '%d', 'umeta_id' => '%d', 'comment_karma' => '%d', 'comment_count' => '%d', 302 // multisite: 303 'active' => '%d', 'cat_id' => '%d', 'deleted' => '%d', 'lang_id' => '%d', 'mature' => '%d', 'public' => '%d', 'site_id' => '%d', 'spam' => '%d', 304 ); 302 305 303 306 $prefix = $wpdb->set_prefix( $table_prefix ); -
trunk/wp-includes/ms-functions.php
r12879 r12880 1467 1467 $welcome_email = stripslashes( get_site_option( 'welcome_email' ) ); 1468 1468 if ( $welcome_email == false ) 1469 $welcome_email = stripslashes( __( "Dear User,1469 $welcome_email = stripslashes( __( 'Dear User, 1470 1470 1471 1471 Your new SITE_NAME blog has been successfully set up at: … … 1477 1477 Login Here: BLOG_URLwp-login.php 1478 1478 1479 We hope you enjoy your new weblog.1479 We hope you enjoy your new blog. 1480 1480 Thanks! 1481 1481 1482 --The WordPress Team 1483 SITE_NAME" ) ); 1482 --The Team @ SITE_NAME' ) ); 1484 1483 1485 1484 $url = get_blogaddress_by_id($blog_id);
Note: See TracChangeset
for help on using the changeset viewer.