After moving Wordpress, login works, but no admin access anymore

后端 未结 7 1246
一个人的身影
一个人的身影 2021-02-04 08:41

After transferring a wordpress from an old ISP to a new ISP, I have trouble with the admin access / access to the dashboard.

The transfer was done by copying all files

7条回答
  •  慢半拍i
    慢半拍i (楼主)
    2021-02-04 09:00

    I have also encountered this message after a migration.

    Seems like database prefix is case-sensitive, and if it doesn't match exactly, this is what pops up when trying to access administration pages.

    Make sure you check your config.php and set it exactly as your table prefix.

    If you use phpMyAdmin to check the tables, you should note that all table names in database tree are displayed in lower case, while in my case the expected prefix was all upper cased.


    phpMyAdmin image: phpMyAdmin

    The right prefix in the image is the one that should be used.

    I used "_usermeta" table to get the prefix WP expected.

提交回复
热议问题