How to verify logins and disable old accounts

Typically every so often I go and verify logins to make sure they are still owners.   Okay so here are my steps:

  • We will use 3 windows on your web browser.
    • The first will be on the users in WordPress
    • The next one is to log into the the webmasters site and navigate to the databae manager
    • The last one is to log into the Resource Management Portal

 

  • Next up use this sql string to map unit numbers to logins:

select b.user_value, a.id, a.user_login, a.user_email, a.display_name, a.user_registered
FROM
wp_users a, wp_prflxtrflds_user_field_data b
where a.id = b.user_id
and b.field_id = 1
ORDER BY b.user_Value, a.user_registered ASC

  • For each unit that has more than 1 unit, I compare the names to the Resource Management information. So in this example, I see 2 logins for 1002, comparing 1002 to Resource Management information I can see which one is the previous owner.

Also you can use the Pinellas County Property website ( https://www.pcpao.org/ ) to verify owner.

  • Once you have chosen the account, you can then disable the account by editing the account and selecting the checkbox to disable the login

  • Once done, you can also review other disabled accounts, and delete them as needed.