Buggin-out
views( 13 ) likes( 0 ) shares( 0 )
:: 1 day ago
Wordpress manual Migration from php 7.x to php 8.x
I lost a day on this searched the web after chat gpt kept telling me the same thing "Sorry, you are not allowed to access this page" wordpress kept telling me. chat gpt said "SELECT * FROM wp_usermeta WHERE user_id=1 AND meta_key=wp_capabilities;" This was the key to finding the issue. The table names we in caps which mysql does not like. so the config file was looking for lowercase all the tables were lowercase but the names of the fields in the tables were uppercase.. this failed the admin login as described. Hoper this helps some one!