- Locate your Joomla!/components/ folder. Delete the folder named com_rsform.
- Locate your Joomla!/administrator/components/ folder. Delete the folder named com_rsform.
- Connect to your MySQL database and remove all of the
_rsform tables. For example, if your Joomla! database prefix is "jos", remove all tables that start with jos_rsform.
For instance, use this SQL script:
DROP TABLE `jos_rsform_components`, `jos_rsform_component_types`, `jos_rsform_component_type_fields`, `jos_rsform_config`, `jos_rsform_forms`, `jos_rsform_mappings`, `jos_rsform_properties`, `jos_rsform_submissions`,`jos_rsform_submission_values`, `jos_rsform_emails`, `jos_rsform_submission_columns`, `jos_rsform_translations` - Browse the
_components table. Delete all records that have the value com_rsform in the option column. For instance, use this SQL script:
DELETE FROM `jos_components` WHERE `option`='com_rsform' - Joomla! 1.6 / 1.7 / 2.5: Browse the _extensions, _assets and _menus tables and erase all com_rsform entries. For instance, use this SQL queries:
DELETE FROM `jos_extensions` WHERE `element`='com_rsform'
DELETE FROM `jos_menus` WHERE `link` LIKE '%com_rsform%'
DELETE FROM `jos_assets` WHERE `name` LIKE '%com_rsform%'






