I'm still trying to install and I started getting this while uploading wp-config.php
It happened with an identical file that I had already used, and with everything since.
<?php
// ** MySQL settings ** //
define('DB_NAME', 'mysticwo_wp_5'); // The name of the database
define('DB_USER', 'mysticwo_wp_1'); // Your MySQL username
define('DB_PASSWORD', 'xxxx'); // ...and password
define('DB_HOST', 'localhost'); // 99% chance you won't need to change this value
define('VHOST', 'VHOSTSETTING');
$base = '/';
// double check $base
if( $base == 'BASE' )
die( 'Problem in wp-config.php - $base is set to BASE when it should be the path like "/" or "/blogs/"! Please fix it!' );
// Change the prefix if you want to have multiple blogs in a single database.
$table_prefix = 'wp_'; // example: 'wp_' or 'b2' or 'mylogin_'
// Change this to localize WordPress. A corresponding MO file for the
// chosen language must be installed to wp-includes/languages.
// For example, install de.mo to wp-includes/languages and set WPLANG to 'de'
// to enable German language support.
define ('WPLANG', '');
define( "WP_USE_MULTIPLE_DB", false );
/* Stop editing */
define('ABSPATH', dirname(__FILE__).'/');
require_once(ABSPATH.'wp-settings.php');
?>
Thanks,
Robert