Manually uninstall RSFeedback!

If for some reason the automatic uninstallation fails, follow these steps to manually remove RSFeedback! from your Joomla!:

  1. Locate your Joomla! /administrator/components/ folder. Delete the folder named com_rsfeedback.
  2. Locate your Joomla! /components/ folder. Delete the folder named com_rsfeedback.
  3. Connect to your MySQL database and remove all of the _rsfeedback tables. For example, if your Joomla! database prefix is "jos", remove all tables that start with jos_rsfeedback.
  4. For instance, use this SQL script:
      DROP TABLE `jos_rsfeedback_auto_moderation`, `jos_rsfeedback_categories`, `jos_rsfeedback_comments`, `jos_rsfeedback_feedbacks`,
      `jos_rsfeedback_flags`, `jos_rsfeedback_groups`, `jos_rsfeedback_statuses`, `jos_rsfeedback_subscriptions`,
      `jos_rsfeedback_user_flags`, `jos_rsfeedback_user_votes`
    
  5. For Joomla! 3.x: Browse the _extensions, _assets and _menus tables and erase all com_rsfeedback entries. For instance, use these SQL queries:
  6.   DELETE FROM `jos_extensions` WHERE `element`='com_rsfeedback'
      DELETE FROM `jos_menus` WHERE `link` LIKE '%com_rsfeedback%'
      DELETE FROM `jos_assets` WHERE `name` LIKE '%com_rsfeedback%'
    

Was this article helpful?

Yes No
Sorry about that