• Greetings mates,

    I have this plugin both on my production server and test server.

    Of course the wordpress app was deployed to production to test.

    How do identify what this plugin is called in mySQL database and where do I find it?

    For some reason, I can find all our wordpress plugins installed on the database but not the User Role Editor plugin.

    Thanks in advance

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter webuser1

    (@webuser1)

    I found the plugin I was looking for.

    Open up wp_options and query the table for instances of ure or wp_user roles.

    Something like:

    SELECT * FROM wp_options where option_name LILE ‘%ure%’

    OR

    SELECT * FROM wp_options where option_name LILE ‘%wp_%’

    Plugin Author Vladimir Garagulya

    (@shinephp)

    Little update: record with option_name ‘wp_user_roles’ belongs to WordPress itself. ‘wp_’ here is the database prefix defined at wp-config.php

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘How do you find this plugin in the database?’ is closed to new replies.