99.99%的可能性是您使用错误的数据库详细信息配置wordpress。
确保您在wp config中使用了正确的数据库详细信息。php文件
/** The name of the database for WordPress */
define(\'DB_NAME\', \'database_name_here\');
/** MySQL database username */
define(\'DB_USER\', \'username_here\');
/** MySQL database password */
define(\'DB_PASSWORD\', \'password_here\');
/** MySQL hostname */
define(\'DB_HOST\', \'localhost\');
根据我的经验,这里列出了一些可能性:
可能您没有在数据库名称或用户名中使用任何前缀,这是我们在联机服务器上创建数据库名称或用户名时默认添加的。
可能使用了错误的服务器详细信息。我们主要使用localhost 但有时可能会从外部使用数据库服务器。
可能是用户未分配给数据库。
希望这对你有帮助。祝您一切顺利;)