• Resolved Mikko Saari

    (@msaari)


    I uninstalled wpForo from the WordPress plugins page, and it left everything behind: all the database tables are still in the database, and all the wpForo settings in the wp_options table are still there.

    The plugin should remove all traces of itself when uninstalled from the admin dashboard.

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author gVectors Team

    (@gvectors-team)

    Hi Mikko,
    Please make sure you use the Uninstall button instead of Deactivate. wpForo cleanup all tables and options when you click on Uninstall button.
    In some cases PHP script doesn’t have permission to execute “DROP TABLE…” sql query. This is a server configuration specific issue.
    In this case you should execute these SQLs whether using some plugin like ARI Adminer or in Hosting Service cPanel > phpMAdmin > Your WP Database > SQL Tab (make sure the table prefix is correct, this example is with wp_ ):

    DROP TABLE wp_wpforo_forums; 
    DROP TABLE wp_wpforo_languages; 
    DROP TABLE wp_wpforo_likes; 
    DROP TABLE wp_wpforo_phrases; 
    DROP TABLE wp_wpforo_polls; 
    DROP TABLE wp_wpforo_posts; 
    DROP TABLE wp_wpforo_profiles; 
    DROP TABLE wp_wpforo_subscribes; 
    DROP TABLE wp_wpforo_topics; 
    DROP TABLE wp_wpforo_usergroups; 
    DROP TABLE wp_wpforo_views; 
    DROP TABLE wp_wpforo_visits; 
    DROP TABLE wp_wpforo_votes;

    If you have installed addons you may need to execute these SQLs too:

    DROP TABLE wp_wpforo_ads; 
    DROP TABLE wp_wpforo_attachments; 
    DROP TABLE wp_wpforo_pmfolders; 
    DROP TABLE wp_wpforo_pms; 

    To remove all options of wpForo, execute this SQL:
    DELETE FROM wp_options WHERE option_name LIKE '%wpforo_%'

    In any case please don’t forget to backup wp_options table.

    • This reply was modified 6 years, 11 months ago by gVectors Team.
    Thread Starter Mikko Saari

    (@msaari)

    Sorry, this was a false alarm. For some reason, the plugin uninstallation hadn’t gone through even though I assumed it had.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Plugin doesn’t clean up after uninstall’ is closed to new replies.