http://wordpress.org/support/ then copy and paste the following information into your message:'); ?>
";
}
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 ) );
}
//@todo: check for super-cache in use
?>
.htaccess with the following:'); ?>
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;
}
function printstep1form( $rewrite_enabled = false ) {
$weblog_title = sprintf( __('%s Sites'), ucfirst( get_option( 'blogname' ) ) );
$email = get_option( 'admin_email' );
$hostname = get_clean_basedomain();
if( substr( $hostname, 0, 4 ) == 'www.' )
$nowww = substr( $hostname, 4 );
wp_nonce_field( 'install-network-1' );
?>
Note It looks like mod_rewrite
is not installed.'); ?>
/> blog1.example.com)' ); ?>
/> example.com/blog1) '); ?>
%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 ); ?>
' />
Note: We recommend you make a backup copy of your existing wp-config.php
and .htaccess
files.' ); ?>
blogs.dir directory in your wp-content
directory. This directory is used to stored uploaded media for your additional sites and must be writeable by the web server.' ); ?>
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 );
?>
wp-config.php with the following:' ); ?>