• Hi!
    I’d deactivated admin profile by chance, and I don’t know what to do now. How can I log in to my profile or cancel changes?

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Plugin Author Chad Butler

    (@cbutlerjr)

    Hmmm… that’s the first time I’ve heard of that happening.

    You should have direct db access through your hosting setup. Use that to update the user meta value “active” to “1” (for your specific user ID).

    UPDATE wp_usermeta SET meta_value = 1 WHERE meta_key = "active" AND user_id = 123;

    (Where “123” in the example is the user id you’re trying change) If you don’t know the specific user ID, you can look that up in the wp_users table.

    • This reply was modified 6 years, 3 months ago by Chad Butler.
Viewing 1 replies (of 1 total)

The topic ‘Deactivated admin profile’ is closed to new replies.