Manually uninstalling RSPageBuilder!

  1. Locate your Joomla!/components/ folder. Delete the folder named com_rspagebuilder.
  2. Locate your Joomla!/administrator/components/ folder. Delete the folder named com_rspagebuilder.
  3. Locate your Joomla!/media/com_rspagebuilder folder. Delete the folder named com_rspagebuilder.
  4. Connect to your MySQL database and remove the #__rspagebuilder table. For example, if your Joomla! database prefix is "jos", remove the table that starts with jos_rspagebuilder.
    For instance, use this SQL script:
  5.   DROP TABLE IF EXISTS `jos_rspagebuilder`;
    
  6. Finally, browse the _extensions, _assets and _menus tables and erase all com_rspagebuilder entries. For instance, use this SQL queries:
  7.   DELETE FROM `jos_extensions` WHERE `element`='com_rspagebuilder'
      DELETE FROM `jos_menu` WHERE `link` LIKE '%com_rspagebuilder%'
      DELETE FROM `jos_assets` WHERE `name` LIKE '%com_rspagebuilder%'
    

2 persons found this article helpful.


Was this article helpful?

Yes No
Sorry about that