虚拟主机安装discuz与WordPress注意地方

WordPress



上传服务器之前需要配置下“wp-config-sample.php”,

以下信息修改为虚拟主机服务后台给出的信息,注意全部都要改!

// ** MySQL 设置 - 具体信息来自您正在使用的主机 ** //
/** WordPress数据库的名称 */
define('DB_NAME', 'database_name_here');

/** MySQL数据库用户名 */
define('DB_USER', 'username_here');

/** MySQL数据库密码 */
define('DB_PASSWORD', 'password_here');

/** MySQL主机 */
define('DB_HOST', 'localhost');

/** 创建数据表时默认的文字编码 */
define('DB_CHARSET', 'utf8');

/** 数据库整理类型。如不确定请勿更改 */
define('DB_COLLATE', '');

/**#@+
 * 身份认证密钥与盐。
 *
 * 修改为任意独一无二的字串!
 * 或者直接访问{@link https://api.wordpress.org/secret-key/1.1/salt/
 * WordPress.org密钥生成服务}
 * 任何修改都会导致所有cookies失效,所有用户将必须重新登录。
 *
 * @since 2.6.0
 */
define('AUTH_KEY',         'put your unique phrase here');
define('SECURE_AUTH_KEY',  'put your unique phrase here');
define('LOGGED_IN_KEY',    'put your unique phrase here');
define('NONCE_KEY',        'put your unique phrase here');
define('AUTH_SALT',        'put your unique phrase here');
define('SECURE_AUTH_SALT', 'put your unique phrase here');
define('LOGGED_IN_SALT',   'put your unique phrase here');
define('NONCE_SALT',       'put your unique phrase here');

/**#@-*/

上面修改完之后把wp-config-sample.php重命名为wp-config.php,并和之前wp-config-sample.php放在一个目录下上传,然后地址栏输入服务商给出的域名按照提示安装即可



discuz

把下载的discuz包解压,只上传upload文件夹下的文件到虚拟主机中,使用fileZilla登录您的服务器,将服务器上以下目录、以及该目录下面的所有文件的属性设置为 777,Win 主机请设置 internet 来宾帐户可读写属性。

./config/config_global.php 
./config/config_ucenter.php 
./config 
./data 
./data/avatar


然后地址栏输入服务商给出的域名按照提示安装即可

猜你喜欢

转载自blog.csdn.net/fan7983377/article/details/80488675