http://wordpress.org/support/ then copy and paste the following information into your message:' ); ?>
";
}
/**
* Prints .htaccess component of step 2 for network settings.
*
* @since 3.0.0
*/
function step2_htaccess() {
global $base;
// remove ending slash from $base and $url
$htaccess = '';
if ( substr( $base, -1 ) == '/' )
$base = substr( $base, 0, -1 );
$htaccess_sample = ABSPATH . 'wp-admin/includes/htaccess.ms';
if ( ! file_exists( $htaccess_sample ) )
wp_die( sprintf( __( 'Sorry, I need a %s to work from. Please re-upload this file to your WordPress installation.' ), $htaccess_sample ) );
$htaccess_file = file( $htaccess_sample );
$fp = @fopen( $htaccess_sample, "r" );
if ( $fp ) {
while ( ! feof( $fp ) ) {
$htaccess .= fgets( $fp, 4096 );
}
fclose( $fp );
$htaccess_file = str_replace( "BASE", $base, $htaccess );
} else {
wp_die( sprintf( __( 'Sorry, I need to be able to read %s. Please check the permissions on this file.' ), $htaccess_sample ) );
}
?>
%s.htaccess with the following:' ), ABSPATH ); ?>
- README for further details." ); ?>
" . __( 'If the mod_rewrite
module is disabled ask your administrator to enable that module, or look at the Apache documentation or elsewhere for help setting it up.' ) . '';
if ( function_exists( 'apache_get_modules' ) ) {
$modules = apache_get_modules();
if ( ! in_array( 'mod_rewrite', $modules ) )
echo '' . __( 'Warning! It looks like mod_rewrite is not installed.' ) . '
' . $mod_rewrite_msg;
else
$rewrite_enabled = true;
} else {
echo '' . __( 'Please make sure mod_rewrite
is installed as it will be activated at the end of this install.' ) . '
' . $mod_rewrite_msg;
}
return $rewrite_enabled;
}
/**
* Prints most of step 1 for network settings.
*
* @since 3.0.0
* @param bool $rewrite_enabled Whether mod_rewrite is enabled. Default false.
*/
function printstep1form( $rewrite_enabled = false ) {
$weblog_title = sprintf( __( '%s Sites' ), ucfirst( get_option( 'blogname' ) ) );
$email = get_option( 'admin_email' );
$hostname = get_clean_basedomain();
$invalid_host = false;
if ( 'localhost' == $hostname || preg_match( '|[0-9]+\.[0-9]+\.[0-9]+\.[0-9]+|', $hostname, $match ) )
$invalid_host = true;
if ( substr( $hostname, 0, 4 ) == 'www.' )
$nowww = substr( $hostname, 4 );
wp_nonce_field( 'install-network-1' );
if ( network_domain_check() ) { ?>
Note It looks like mod_rewrite
is not installed.' ); ?>
%1$s before enabling the network feature. It will still be possible to visit your site using the "www" prefix with an address like %2$s
but any links will not have the "www" prefix.' ), $nowww, $hostname ); ?>
' />
deactivate your plugins before enabling WordPress Sites. Once WordPress Sites are enabled, you may reactivate your plugins.' ), admin_url( 'plugins.php' ) ); ?>
get_var( "SHOW TABLES LIKE '$wpdb->site'" ) == $wpdb->site )
return $wpdb->get_var( "SELECT domain FROM $wpdb->site ORDER BY id ASC LIMIT 1" );
return false;
}
/**
* Prints step 2 for network settings.
*
* @since 3.0.0
*/
function step2() {
?>
Note: We recommend you make a backup copy of your existing wp-config.php
and .htaccess
files.' ); ?>
- %s/blogs.dir directory. This directory is used to stored uploaded media for your additional sites and must be writeable by the web server.' ), WP_CONTENT_DIR ); ?>
base_prefix;
$config_sample = ABSPATH . 'wp-admin/includes/wp-config.ms';
if ( ! file_exists( $config_sample ) )
wp_die( sprintf( __( 'Sorry, I need a %s
to work from. Please re-upload this file to your WordPress installation.' ), $config_sample ) );
$wp_config_file = file( $config_sample );
?>
%swp-config.php with the following:' ), ABSPATH ); ?>