本帖最后由 jason 于 2012-10-27 21:25 编辑
你是不是俩wp用的同一个数据库了?把前缀"wp_"改一下- /** MySQL 数据库用户名 */
- define('DB_USER', 'username_here');
- /** MySQL 数据库密码 */
- define('DB_PASSWORD', 'password_here');
- /** MySQL 主机 */
- define('DB_HOST', 'localhost');
复制代码 还有身份密匙最好也改一下,不过应该和这个没关系- 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');
复制代码 在这生成随机的
https://api.wordpress.org/secret-key/1.1/salt/ |