tanasi Posted December 8, 2012 Share Posted December 8, 2012 Hi all, i tried to duplicate a module according to this guide: http://alvinjiang.blogspot.gr/2011/01/prestashop-tips-how-to-duplicate.html Everything went ok, I installed the 2nd module (named blockadverts) and everything was ok. In the meantime i found another solution so I deleted the module but forgot to do uninstall. Checking the permissions menu I got a warning blockadverts: module is installed in database, but its files are missing or incompatible. So i searched in the database in the ps_module table and deleted its entry with id=78. But now i get :module is installed in database, but its files are missing or incompatible. So it seems that i deleted only the name and need to find and remove all the other related entries. Can anybody help? (I deleted the created module so unortunately I cannot install it again and then uninstall...) Link to comment Share on other sites More sharing options...
doubleD Posted January 18, 2013 Share Posted January 18, 2013 So it seems that i deleted only the name and need to find and remove all the other related entries. Can anybody help? Hi, You have to delete id='78' from other ps_module_* tables You can do it manually or by executing an sql query: 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'; 1 Link to comment Share on other sites More sharing options...
Lausli Posted October 25, 2016 Share Posted October 25, 2016 it dit not work on 1.6.1.7 any solution? Link to comment Share on other sites More sharing options...
Recommended Posts