True, but that doesn’t address the other issue of reInstalling WP; the other issue is wp-config.php where you edit DBname as desired, creating dB & userName,adding the allow true statement and ending up with this:
<?php
/* compressed - no comments - from Sample */
define( 'DB_NAME', 'xxx' );
define( 'DB_USER', 'xxx' );
define( 'DB_PASSWORD', 'xxx' );
define( 'DB_HOST', '162.241.253.150' );
define( 'DB_CHARSET', 'utf8' );
define( 'DB_COLLATE', '' );
define( 'AUTH_KEY', ? ? ? ? 'xxx');
define( 'SECURE_AUTH_KEY', ?'xxx' );
define( 'LOGGED_IN_KEY', ? ?'xxx');
define( 'NONCE_KEY', ? ? ? ?'xxx');
define( 'AUTH_SALT', ? ? ? ?'xxx');
define( 'SECURE_AUTH_SALT', 'xxx');
define( 'LOGGED_IN_SALT', ? 'xxx');
define( 'NONCE_SALT', ? ? ? 'xxx');
$table_prefix = 'wp_';
define( 'WP_DEBUG', false );
/* Multisite */
define('WP_ALLOW_MULTISITE', true);
/* That's all, stop editing! Happy publishing. */
if ( ! defined( 'ABSPATH' ) ) {
define( 'ABSPATH', __DIR__ . '/' );
require_once ABSPATH . 'wp-settings.php';
?
-
This reply was modified 4 years, 6 months ago by Yui.