summaryrefslogtreecommitdiffstats
path: root/index-install.php
diff options
context:
space:
mode:
authordonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2007-01-14 21:10:03 +0000
committerdonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2007-01-14 21:10:03 +0000
commitd19c5c05d1a2b66347a4eeb1e21f02878c0cd1ed (patch)
treeb260c563a02d9086ff8e92e40b9f7a8c666c36ed /index-install.php
parent3c4bd86c143db30af453982eecd2d88a06dd301e (diff)
downloadwordpress-mu-d19c5c05d1a2b66347a4eeb1e21f02878c0cd1ed.tar.gz
wordpress-mu-d19c5c05d1a2b66347a4eeb1e21f02878c0cd1ed.tar.xz
wordpress-mu-d19c5c05d1a2b66347a4eeb1e21f02878c0cd1ed.zip
spaces -> tabs
define VHOST during install. (fixes #216) git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@843 7be80a69-a1ef-0310-a953-fb0f7c49ff36
Diffstat (limited to 'index-install.php')
-rw-r--r--index-install.php444
1 files changed, 218 insertions, 226 deletions
diff --git a/index-install.php b/index-install.php
index 612d359..f9979fc 100644
--- a/index-install.php
+++ b/index-install.php
@@ -70,170 +70,162 @@ text-align: center; border-top: 1px solid #ccc; padding-top: 1em; font-style: it
}
function check_writeable_dir( $dir, $ret ) {
- if( is_writeable( $dir ) == false ) {
- print $dir." : <b style='color: #f55'>FAILED</b><br />Quick Fix: <code>chmod 777 $dir</code><br />";
- return false;
- } else {
- if( $ret == true ) {
- return true;
- } else {
- return false;
- }
- }
+ if( is_writeable( $dir ) == false ) {
+ print $dir." : <b style='color: #f55'>FAILED</b><br />Quick Fix: <code>chmod 777 $dir</code><br />";
+ return false;
+ } else {
+ if( $ret == true ) {
+ return true;
+ } else {
+ return false;
+ }
+ }
}
function filestats( $err ) {
- print "<h1>Server Summary</h1>";
- print "<p>If you post a message to the MU support forum at <a target='_blank' href='http://mu.wordpress.org/forums/'>http://mu.wordpress.org/forums/</a> then copy and paste the following information into your message:</p>";
-
- print "<blockquote style='background: #eee; border: 1px solid #333; padding: 5px;'>";
- print "<br /><strong>ERROR: $err</strong></br >";
- clearstatcache();
- $files = array( "htaccess.dist", ".htaccess" );
- while( list( $key, $val ) = each( $files ) ) {
- $stats = @stat( $val );
- if( $stats ) {
- print "<h2>$val</h2>";
- print "&nbsp;&nbsp;&nbsp;&nbsp;uid/gid: " . $stats[ 'uid' ] . "/" . $stats[ 'gid' ] . "<br />\n";
- print "&nbsp;&nbsp;&nbsp;&nbsp;size: " . $stats[ 'size' ] . "<br />";
- print "&nbsp;&nbsp;&nbsp;&nbsp;perms: " . substr( sprintf('%o', fileperms( $val ) ), -4 ) . "<br />";
- print "&nbsp;&nbsp;&nbsp;&nbsp;readable: ";
- print is_readable( $val ) == true ? "yes" : "no";
- print "<br />";
- print "&nbsp;&nbsp;&nbsp;&nbsp;writeable: ";
- print is_writeable( $val ) == true ? "yes" : "no";
- print "<br />";
-
- } elseif( file_exists( $val ) == false ) {
- print "<h2>$val</h2>";
- print "&nbsp;&nbsp;&nbsp;&nbsp;FILE NOT FOUND: $val<br>";
+ print "<h1>Server Summary</h1>";
+ print "<p>If you post a message to the MU support forum at <a target='_blank' href='http://mu.wordpress.org/forums/'>http://mu.wordpress.org/forums/</a> then copy and paste the following information into your message:</p>";
+
+ print "<blockquote style='background: #eee; border: 1px solid #333; padding: 5px;'>";
+ print "<br /><strong>ERROR: $err</strong></br >";
+ clearstatcache();
+ $files = array( "htaccess.dist", ".htaccess" );
+ while( list( $key, $val ) = each( $files ) ) {
+ $stats = @stat( $val );
+ if( $stats ) {
+ print "<h2>$val</h2>";
+ print "&nbsp;&nbsp;&nbsp;&nbsp;uid/gid: " . $stats[ 'uid' ] . "/" . $stats[ 'gid' ] . "<br />\n";
+ print "&nbsp;&nbsp;&nbsp;&nbsp;size: " . $stats[ 'size' ] . "<br />";
+ print "&nbsp;&nbsp;&nbsp;&nbsp;perms: " . substr( sprintf('%o', fileperms( $val ) ), -4 ) . "<br />";
+ print "&nbsp;&nbsp;&nbsp;&nbsp;readable: ";
+ print is_readable( $val ) == true ? "yes" : "no";
+ print "<br />";
+ print "&nbsp;&nbsp;&nbsp;&nbsp;writeable: ";
+ print is_writeable( $val ) == true ? "yes" : "no";
+ print "<br />";
+ } elseif( file_exists( $val ) == false ) {
+ print "<h2>$val</h2>";
+ print "&nbsp;&nbsp;&nbsp;&nbsp;FILE NOT FOUND: $val<br>";
+ }
}
- }
- print "</blockquote>";
-
+ print "</blockquote>";
}
-function do_htaccess( $oldfilename, $newfilename, $base, $url )
-{
- // remove ending slash from $base and $url
- $htaccess = '';
- if( substr($base, -1 ) == '/') {
- $base = substr($base, 0, -1);
- }
-
- if( substr($url, -1 ) == '/') {
- $url = substr($url, 0, -1);
- }
- $err = '';
- if( is_file( $oldfilename ) ) {
- $fp = @fopen( $oldfilename, "r" );
- if( $fp ) {
- while( !feof( $fp ) )
- {
- $htaccess .= fgets( $fp, 4096 );
- }
- fclose( $fp );
- $htaccess = str_replace( "BASE", $base, $htaccess );
- if( touch( $newfilename ) ) {
- $fp = fopen( $newfilename, "w" );
- if( $fp ) {
- fwrite( $fp, $htaccess );
- fclose( $fp );
- } else {
- $err = "could not open $newfilename for writing";
- }
- } else {
- $err = "could not open $newfilename for writing";
- }
- } else {
- $err = "could not open $oldfilename for reading";
+function do_htaccess( $oldfilename, $newfilename, $base, $url ) {
+ // remove ending slash from $base and $url
+ $htaccess = '';
+ if( substr($base, -1 ) == '/') {
+ $base = substr($base, 0, -1);
}
- } else {
- $err = "$oldfilename not found";
- }
-
- if( $err != '' ) {
- print "<h1>Warning!</h1>";
- print "<p><strong>There was a problem creating the .htaccess file.</strong> </p>";
- print "<p style='color: #900'>Error: ";
- if( $err == "could not open $newfilename for writing" ) {
- print "Could Not Write To $newfilename.";
- } elseif( $err == "could not open $oldfilename for reading" ) {
- print "I could not read from $oldfilename. ";
- } elseif( $err == "$oldfilename not found" ) {
- print "The file, $oldfilename, is missing.";
- }
- print "</p>";
- filestats( $err );
-
- print "<p>Please ensure that the webserver can write to this directory.</p>";
- print "<p>If you use Cpanel then read <a href='http://mu.wordpress.org/forums/topic/99'>this post</a>. Cpanel creates files that I need to overwrite and you have to fix that.</p>";
- print "<p>If all else fails then you'll have to create it by hand:";
- print "<ul><li> Download htaccess.dist to your computer and open it in your favourite text editor.</li>
+
+ if( substr($url, -1 ) == '/') {
+ $url = substr($url, 0, -1);
+ }
+ $err = '';
+ if( is_file( $oldfilename ) ) {
+ $fp = @fopen( $oldfilename, "r" );
+ if( $fp ) {
+ while( !feof( $fp ) )
+ {
+ $htaccess .= fgets( $fp, 4096 );
+ }
+ fclose( $fp );
+ $htaccess = str_replace( "BASE", $base, $htaccess );
+ if( touch( $newfilename ) ) {
+ $fp = fopen( $newfilename, "w" );
+ if( $fp ) {
+ fwrite( $fp, $htaccess );
+ fclose( $fp );
+ } else {
+ $err = "could not open $newfilename for writing";
+ }
+ } else {
+ $err = "could not open $newfilename for writing";
+ }
+ } else {
+ $err = "could not open $oldfilename for reading";
+ }
+ } else {
+ $err = "$oldfilename not found";
+ }
+
+ if( $err != '' ) {
+ print "<h1>Warning!</h1>";
+ print "<p><strong>There was a problem creating the .htaccess file.</strong> </p>";
+ print "<p style='color: #900'>Error: ";
+ if( $err == "could not open $newfilename for writing" ) {
+ print "Could Not Write To $newfilename.";
+ } elseif( $err == "could not open $oldfilename for reading" ) {
+ print "I could not read from $oldfilename. ";
+ } elseif( $err == "$oldfilename not found" ) {
+ print "The file, $oldfilename, is missing.";
+ }
+ print "</p>";
+ filestats( $err );
+
+ print "<p>Please ensure that the webserver can write to this directory.</p>";
+ print "<p>If you use Cpanel then read <a href='http://mu.wordpress.org/forums/topic/99'>this post</a>. Cpanel creates files that I need to overwrite and you have to fix that.</p>";
+ print "<p>If all else fails then you'll have to create it by hand:";
+ print "<ul><li> Download htaccess.dist to your computer and open it in your favourite text editor.</li>
<li> Replace the following text:<ul><li>BASE by '$base'</li><li>HOST by '$url'</li></li>
<li> Rename htaccess.dist to .htaccess and upload it back to the same directory.</li></ul>";
- die( "Installation Aborted!" );
- }
+ die( "Installation Aborted!" );
+ }
}
function checkdirs() {
- $ret = true;
- $ret = check_writeable_dir( dirname(__FILE__), $ret );
- $ret = check_writeable_dir( dirname(__FILE__) . "/wp-content/", $ret );
-
- if( $ret == false )
- {
- print "<h2>Warning!</h2>";
- print "<div style='border: 1px solid #ccc'>";
- print "<p style='font-weight: bold; padding-left: 10px'>One or more of the above directories must be made writeable by the webserver.<br>";
- print "Please <code>chmod 777 <q>directory-name</q></code> or <code>chown</code> that directory to the user the web server runs as (usually nobody, apache, or www-data)<br>";
- print "Refresh this page when you're done!<br></p>";
- print "</div>";
- }
- if( file_exists( "./.htaccess" ) && is_writeable( "./.htaccess" ) == false ) {
- $ret = false;
- print "<h2>Warning! .htaccess already exists.</h2>";
- print "<div style='border: 1px solid #ccc'>";
- print "<p style='font-weight: bold; padding-left: 10px'>A file with the name '.htaccess' already exists in this directory and I cannot write to it. Please ftp to the server and delete this file from this directory!<br />";
- print "Offending file: " . realpath( '.htaccess' ) . "</p>";
- print "</div>";
- }
-
-
- return $ret;
+ $ret = true;
+ $ret = check_writeable_dir( dirname(__FILE__), $ret );
+ $ret = check_writeable_dir( dirname(__FILE__) . "/wp-content/", $ret );
+
+ if( $ret == false ) {
+ print "<h2>Warning!</h2>";
+ print "<div style='border: 1px solid #ccc'>";
+ print "<p style='font-weight: bold; padding-left: 10px'>One or more of the above directories must be made writeable by the webserver.<br>";
+ print "Please <code>chmod 777 <q>directory-name</q></code> or <code>chown</code> that directory to the user the web server runs as (usually nobody, apache, or www-data)<br>";
+ print "Refresh this page when you're done!<br></p>";
+ print "</div>";
+ }
+ if( file_exists( "./.htaccess" ) && is_writeable( "./.htaccess" ) == false ) {
+ $ret = false;
+ print "<h2>Warning! .htaccess already exists.</h2>";
+ print "<div style='border: 1px solid #ccc'>";
+ print "<p style='font-weight: bold; padding-left: 10px'>A file with the name '.htaccess' already exists in this directory and I cannot write to it. Please ftp to the server and delete this file from this directory!<br />";
+ print "Offending file: " . realpath( '.htaccess' ) . "</p>";
+ print "</div>";
+ }
+ return $ret;
}
function step1() {
print "<h2>Installing WP&micro;</h2>";
$mod_rewrite_msg = "<p>If the <code>mod_rewrite</code> module is disabled ask your administrator to enable that module, or look at the <a href='http://httpd.apache.org/docs/mod/mod_rewrite.html'>Apache documentation</a> or <a href='http://www.google.com/search?q=apache+mod_rewrite'>elsewhere</a> for help setting it up.</p>";
- if( function_exists( "apache_get_modules" ) ) {
- $modules = apache_get_modules();
+ if( function_exists( "apache_get_modules" ) ) {
+ $modules = apache_get_modules();
if( in_array( "mod_rewrite", $modules ) == false ) {
echo "<p><strong>Warning!</strong> It looks like mod_rewrite is not installed.</p>" . $mod_rewrite_msg;
}
} else {
?><p>Please make sure <code>mod_rewrite</code> is installed as it will be activated at the end of this install.</p><?php
- echo $mod_rewrite_msg;
- }
- if( checkdirs() == false ) {
- return false;
- }
-
- // Create Blogs living area.
- @mkdir( dirname(__FILE__) . "/wp-content/blogs.dir", 0777 );
-
-
- $url = stripslashes( "http://".$_SERVER["SERVER_NAME"] . dirname( $_SERVER[ "SCRIPT_NAME" ] ) );
- if( substr( $url, -1 ) == '/' )
- $url = substr( $url, 0, -1 );
- $base = stripslashes( dirname( $_SERVER["SCRIPT_NAME"] ) );
- if( $base != "/")
- {
- $base .= "/";
- }
- $realpath = dirname(__FILE__);
-
- return true;
+ echo $mod_rewrite_msg;
+ }
+ if( checkdirs() == false ) {
+ return false;
+ }
+
+ // Create Blogs living area.
+ @mkdir( dirname(__FILE__) . "/wp-content/blogs.dir", 0777 );
+
+ $url = stripslashes( "http://".$_SERVER["SERVER_NAME"] . dirname( $_SERVER[ "SCRIPT_NAME" ] ) );
+ if( substr( $url, -1 ) == '/' )
+ $url = substr( $url, 0, -1 );
+ $base = stripslashes( dirname( $_SERVER["SCRIPT_NAME"] ) );
+ if( $base != "/") {
+ $base .= "/";
+ }
+ $realpath = dirname(__FILE__);
+
+ return true;
}
function printstep1form( $dbname = 'wordpress', $uname = 'username', $pwd = 'password', $dbhost = 'localhost', $prefix = 'wp_' ) {
@@ -290,66 +282,66 @@ function printstep1form( $dbname = 'wordpress', $uname = 'username', $pwd = 'pas
function step2() {
global $wpdb, $table_prefix, $base, $blog_id;
- $dbname = $_POST['dbname'];
- $uname = $_POST['uname'];
- $passwrd = $_POST['pwd'];
- $dbhost = $_POST['dbhost'];
- $vhost = $_POST['vhost' ];
- $prefix = 'wp_';
- $base = stripslashes( dirname( $_SERVER["SCRIPT_NAME"] ) );
- if( $base != "/") {
- $base .= "/";
- }
-
- // Test the db connection.
- define('DB_NAME', $dbname);
- define('DB_USER', $uname);
- define('DB_PASSWORD', $passwrd);
- define('DB_HOST', $dbhost);
-
- if (!file_exists('wp-config-sample.php'))
- die('Sorry, I need a wp-config-sample.php file to work from. Please re-upload this file from your WordPress installation.');
-
- $configFile = file('wp-config-sample.php');
- // We'll fail here if the values are no good.
- require_once('wp-includes/wp-db.php');
- printheader();
-
- print "Creating Database Config File: ";
-
- $handle = fopen('wp-config.php', 'w');
-
- foreach ($configFile as $line_num => $line) {
- switch (trim( substr($line,0,16) )) {
- case "define('DB_NAME'":
- fwrite($handle, str_replace("wordpress", $dbname, $line));
- break;
- case "define('DB_USER'":
- fwrite($handle, str_replace("'username'", "'$uname'", $line));
- break;
- case "define('DB_PASSW":
- fwrite($handle, str_replace("'password'", "'$passwrd'", $line));
- break;
- case "define('DB_HOST'":
- fwrite($handle, str_replace("localhost", $dbhost, $line));
- break;
- case "define('VHOST',":
- fwrite($handle, str_replace("VHOSTSETTING", $vhost, $line));
- break;
- case '$table_prefix =':
- fwrite($handle, str_replace('wp_', $prefix, $line));
- break;
- case '$base = \'BASE\';':
- fwrite($handle, str_replace('BASE', $base, $line));
- break;
- default:
- fwrite($handle, $line);
- break;
+ $dbname = $_POST['dbname'];
+ $uname = $_POST['uname'];
+ $passwrd = $_POST['pwd'];
+ $dbhost = $_POST['dbhost'];
+ $vhost = $_POST['vhost' ];
+ $prefix = 'wp_';
+ $base = stripslashes( dirname( $_SERVER["SCRIPT_NAME"] ) );
+ if( $base != "/")
+ $base .= "/";
+
+ // Test the db connection.
+ define('DB_NAME', $dbname);
+ define('DB_USER', $uname);
+ define('DB_PASSWORD', $passwrd);
+ define('DB_HOST', $dbhost);
+
+ if (!file_exists('wp-config-sample.php'))
+ die('Sorry, I need a wp-config-sample.php file to work from. Please re-upload this file from your WordPress installation.');
+
+ $configFile = file('wp-config-sample.php');
+ // We'll fail here if the values are no good.
+ require_once('wp-includes/wp-db.php');
+ printheader();
+
+ print "Creating Database Config File: ";
+
+ $handle = fopen('wp-config.php', 'w');
+
+ foreach ($configFile as $line_num => $line) {
+ switch (trim( substr($line,0,16) )) {
+ case "define('DB_NAME'":
+ fwrite($handle, str_replace("wordpress", $dbname, $line));
+ break;
+ case "define('DB_USER'":
+ fwrite($handle, str_replace("'username'", "'$uname'", $line));
+ break;
+ case "define('DB_PASSW":
+ fwrite($handle, str_replace("'password'", "'$passwrd'", $line));
+ break;
+ case "define('DB_HOST'":
+ fwrite($handle, str_replace("localhost", $dbhost, $line));
+ break;
+ case "define('VHOST',":
+ fwrite($handle, str_replace("VHOSTSETTING", $vhost, $line));
+ break;
+ case '$table_prefix =':
+ fwrite($handle, str_replace('wp_', $prefix, $line));
+ break;
+ case '$base = \'BASE\';':
+ fwrite($handle, str_replace('BASE', $base, $line));
+ break;
+ default:
+ fwrite($handle, $line);
+ break;
+ }
}
- }
- fclose($handle);
- chmod('wp-config.php', 0644);
- print "<b style='color: #00aa00; font-weight: bold'>DONE</b><br />";
+ fclose($handle);
+ chmod('wp-config.php', 0644);
+ print "<b style='color: #00aa00; font-weight: bold'>DONE</b><br />";
+ define( 'VHOST', $vhost );
}
function printuserdetailsform( $weblog_title = 'My new Blog', $username = '', $email = '' ) {
@@ -365,31 +357,31 @@ function printuserdetailsform( $weblog_title = 'My new Blog', $username = '', $e
}
function step3() {
- global $wpdb, $current_site;
- $base = stripslashes( dirname( $_SERVER["SCRIPT_NAME"] ) );
- if( $base != "/") {
- $base .= "/";
- }
- $domain = $wpdb->escape( $_POST[ 'basedomain' ] );
- if( substr( $domain, 0, 4 ) == 'www.' )
+ global $wpdb, $current_site;
+ $base = stripslashes( dirname( $_SERVER["SCRIPT_NAME"] ) );
+ if( $base != "/") {
+ $base .= "/";
+ }
+ $domain = $wpdb->escape( $_POST[ 'basedomain' ] );
+ if( substr( $domain, 0, 4 ) == 'www.' )
$domain = substr( $domain, 4 );
- $email = $wpdb->escape( $_POST[ 'email' ] );
- $weblog_title = $wpdb->escape( $_POST[ 'weblog_title' ] );
-
- // set up site tables
- $wpdb->query( "INSERT INTO ".$wpdb->sitemeta." (meta_id, site_id, meta_key, meta_value) VALUES (NULL, 1, 'admin_email', '".$email."')" );
- $wpdb->query( "INSERT INTO ".$wpdb->sitemeta." (meta_id, site_id, meta_key, meta_value) VALUES (NULL, 1, 'admin_user_id', '1')" );
- $wpdb->query( "INSERT INTO ".$wpdb->site." ( id, domain, path ) VALUES ( NULL, '$domain', '$base' )" );
- $wpdb->query( "INSERT INTO " . $wpdb->sitecategories . " VALUES (1, 'Uncategorized', 'uncategorized', NOW())" );
- $wpdb->query( "INSERT INTO " . $wpdb->sitecategories . " VALUES (2, 'Blogroll', 'blogroll', NOW())" );
- $wpdb->query( "INSERT INTO ".$wpdb->sitemeta." (meta_id, site_id, meta_key, meta_value) VALUES (NULL, 1, 'upload_filetypes', 'jpg jpeg png gif mp3 mov avi wmv midi mid pdf' )" );
- $wpdb->query( "INSERT INTO ".$wpdb->sitemeta." (meta_id, site_id, meta_key, meta_value) VALUES (NULL, 1, 'blog_upload_space', '10' )" );
- $wpdb->query( "INSERT INTO ".$wpdb->sitemeta." (meta_id, site_id, meta_key, meta_value) VALUES (NULL, 1, 'fileupload_maxk', '1500' )" );
- $wpdb->query( "INSERT INTO ".$wpdb->sitemeta." (meta_id, site_id, meta_key, meta_value) VALUES (NULL, 1, 'site_admins', '" . serialize( array( 'admin' ) ) . "' )" );
- $wpdb->query( "INSERT INTO ".$wpdb->sitemeta." (meta_id, site_id, meta_key, meta_value) VALUES (NULL, 1, 'allowed_themes', '" . serialize( array( 'WordPress Classic', 'WordPress Default' ) ) . "' )" );
- $wpdb->query( "INSERT INTO ".$wpdb->sitemeta." (meta_id, site_id, meta_key, meta_value) VALUES (NULL, 1, 'illegal_names', '" . serialize( array( "www", "web", "root", "admin", "main", "invite", "administrator" ) ) . "' )" );
- $wpdb->query( "INSERT INTO ".$wpdb->sitemeta." (meta_id, site_id, meta_key, meta_value) VALUES (NULL, 1, 'welcome_email', 'Dear User,
+ $email = $wpdb->escape( $_POST[ 'email' ] );
+ $weblog_title = $wpdb->escape( $_POST[ 'weblog_title' ] );
+
+ // set up site tables
+ $wpdb->query( "INSERT INTO ".$wpdb->sitemeta." (meta_id, site_id, meta_key, meta_value) VALUES (NULL, 1, 'admin_email', '".$email."')" );
+ $wpdb->query( "INSERT INTO ".$wpdb->sitemeta." (meta_id, site_id, meta_key, meta_value) VALUES (NULL, 1, 'admin_user_id', '1')" );
+ $wpdb->query( "INSERT INTO ".$wpdb->site." ( id, domain, path ) VALUES ( NULL, '$domain', '$base' )" );
+ $wpdb->query( "INSERT INTO " . $wpdb->sitecategories . " VALUES (1, 'Uncategorized', 'uncategorized', NOW())" );
+ $wpdb->query( "INSERT INTO " . $wpdb->sitecategories . " VALUES (2, 'Blogroll', 'blogroll', NOW())" );
+ $wpdb->query( "INSERT INTO ".$wpdb->sitemeta." (meta_id, site_id, meta_key, meta_value) VALUES (NULL, 1, 'upload_filetypes', 'jpg jpeg png gif mp3 mov avi wmv midi mid pdf' )" );
+ $wpdb->query( "INSERT INTO ".$wpdb->sitemeta." (meta_id, site_id, meta_key, meta_value) VALUES (NULL, 1, 'blog_upload_space', '10' )" );
+ $wpdb->query( "INSERT INTO ".$wpdb->sitemeta." (meta_id, site_id, meta_key, meta_value) VALUES (NULL, 1, 'fileupload_maxk', '1500' )" );
+ $wpdb->query( "INSERT INTO ".$wpdb->sitemeta." (meta_id, site_id, meta_key, meta_value) VALUES (NULL, 1, 'site_admins', '" . serialize( array( 'admin' ) ) . "' )" );
+ $wpdb->query( "INSERT INTO ".$wpdb->sitemeta." (meta_id, site_id, meta_key, meta_value) VALUES (NULL, 1, 'allowed_themes', '" . serialize( array( 'WordPress Classic', 'WordPress Default' ) ) . "' )" );
+ $wpdb->query( "INSERT INTO ".$wpdb->sitemeta." (meta_id, site_id, meta_key, meta_value) VALUES (NULL, 1, 'illegal_names', '" . serialize( array( "www", "web", "root", "admin", "main", "invite", "administrator" ) ) . "' )" );
+ $wpdb->query( "INSERT INTO ".$wpdb->sitemeta." (meta_id, site_id, meta_key, meta_value) VALUES (NULL, 1, 'welcome_email', 'Dear User,
Your new SITE_NAME blog has been successfully set up at:
BLOG_URL
@@ -403,7 +395,7 @@ We hope you enjoy your new weblog.
Thanks!
--The Team @ SITE_NAME')" );
- $wpdb->query( "INSERT INTO ".$wpdb->sitemeta." (meta_id, site_id, meta_key, meta_value) VALUES (NULL, 1, 'first_post', 'Welcome to <a href=\"SITE_URL\">SITE_NAME</a>. This is your first post. Edit or delete it, then start blogging!' )" );
+ $wpdb->query( "INSERT INTO ".$wpdb->sitemeta." (meta_id, site_id, meta_key, meta_value) VALUES (NULL, 1, 'first_post', 'Welcome to <a href=\"SITE_URL\">SITE_NAME</a>. This is your first post. Edit or delete it, then start blogging!' )" );
$pass = substr( md5( rand() ), 5, 12 );
$user_id = wpmu_create_user( 'admin', $pass, $email);
@@ -411,7 +403,7 @@ We hope you enjoy your new weblog.
$current_site->domain = $domain;
$current_site->path = $base;
$current_site->site_name = ucfirst( $domain );
-
+
wpmu_create_blog( $domain, $base, $weblog_title, $user_id, array() );
update_blog_option( 1, 'template', 'home');
update_blog_option( 1, 'stylesheet', 'home');