Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Contributor kaggdesign

    (@kaggdesign)

    You can delete the following options via wp-cli.

    wp option delete hcaptcha_settings
    wp option delete hcaptcha_versions
    wp option delete hcaptcha_login_data
    Thread Starter techiebraj

    (@techiebraj)

    Thanks for the details ??

    When i paste this command in PhpMyadmin>SQL, its showing one error; https://prnt.sc/fbUAIaZ7o7HN

    Can you please provide me the SQL query to wipe all the hCaptcha database entries?

    Plugin Contributor kaggdesign

    (@kaggdesign)

    Assuming that your tables’ prefix is wp_, the following MySQL request should work

    DELETE FROM wp_options 
    WHERE option_name IN ('hcaptcha_settings', 'hcaptcha_versions', 'hcaptcha_login_data');
    Thread Starter techiebraj

    (@techiebraj)

    Thanks. So, the above query cleaned up the wp-options entries. I see the:-

    wp_hcaptcha_events (table), hcaptcha_settings_network_wide (Options)

    Still there. Needs complete cleaning please ??

    • This reply was modified 2 months, 1 week ago by techiebraj.
    • This reply was modified 2 months, 1 week ago by techiebraj.
    • This reply was modified 2 months, 1 week ago by techiebraj.
    • This reply was modified 2 months, 1 week ago by techiebraj.
    Plugin Contributor kaggdesign

    (@kaggdesign)

    Oh, I forgot about the last option and the table. ?? Nothing else, you are done.

    Thanks.

    Plugin Contributor kaggdesign

    (@kaggdesign)

    I will add the code to cleanup data upon deletion of the plugin.

    Thread Starter techiebraj

    (@techiebraj)

    Thant would be great, thank you ??

Viewing 7 replies - 1 through 7 (of 7 total)
  • You must be logged in to reply to this topic.