我从SVN检查了一个Wordpress站点,在本地运行它,并在phpMyAdmin中上传了SQL文件。但是当我要去http://localhost/projectName/index.php时,它正在带我设置新的wordpress,这显然是我没想到的。谁能说出我做错了什么?
答案 0 :(得分:2)
wordpress根目录中是否有wp-config.php?如果没有,请将wp-config-sample.php复制到wp-config.php并编辑它以反映mysql设置
// ** MySQL settings - You can get this info from your web host ** //
/** The name of the database for WordPress */
define('DB_NAME', 'my_database_name');
/** MySQL database username */
define('DB_USER', 'mydatabase_user');
/** MySQL database password */
define('DB_PASSWORD', 'my_database_password');
/** MySQL hostname */
define('DB_HOST', 'localhost');
/** Database Charset to use in creating database tables. */
define('DB_CHARSET', 'utf8');
/** The Database Collate type. Don't change this if in doubt. */
define('DB_COLLATE', '');
/**
* WordPress Database Table prefix.
*
* You can have multiple installations in one database if you give each a unique
* prefix. Only numbers, letters, and underscores please!
*/
$table_prefix = 'wp_';
在phpmyadmin中,确保有一个具有正确名称的数据库,并且数据库表已正确上载(例如,不是空白数据库)
同样在phpmyadmin中选择数据库用户并确保他们有权访问此数据库。如果以上内容修复它,请告诉我,谢谢