Jump to content

How to uninstall a module and its hooks directly using the database?


JoelWebsites

Recommended Posts

Simply delete it from  FTP /modules/your module.

 

To make sure it is not available anymore on database you can delete the module line on table ps_modules (if it is still available there).

Data the module added and also possible rows to the database you can delete only if you know what the module have added and where, this means to which table on database.

  • Like 1
Link to comment
Share on other sites

There is a similar thread here https://www.prestashop.com/forums/topic/209392-uninstalling-module-from-database-ps152/

 

it says to delete it from delete from ps_module

where id_module = '78';
delete from ps_module_access
where id_module = '78';
delete from ps_module_country
where id_module = '78';
delete from ps_module_currency
where id_module = '78';
delete from ps_module_group
where id_module = '78';
delete from ps_module_preference
where id_module = '78';
delete from ps_module_shop
where id_module = '78';

 

Thanks selectshop

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...