
Originally Posted by
shoulders
Hello,
can someone reverse engineer the install.sql file, i need to uninstall lightbox but am unsure which tables etc to unistall through my admin. (deleting the appropiate files is the easy bit).
thanks
shoulders
i got this from the install.txt file
Code:
SET @t4=0;
SELECT (@t4:=configuration_group_id) as t4
FROM configuration_group
WHERE configuration_group_title= 'Zen Lightbox';
DELETE FROM configuration WHERE configuration_group_id = @t4;
DELETE FROM configuration_group WHERE configuration_group_id = @t4;
my sql patcher in the admin section is a bit wiered on my local webserver so i manually added my prefix 'zen_' and ran the code below in phpmyadmin ( with the shop database selected).
Code:
SET @t4=0;
SELECT (@t4:=configuration_group_id) as t4
FROM configuration_group
WHERE configuration_group_title= 'Zen Lightbox';
DELETE FROM configuration WHERE configuration_group_id = @t4;
DELETE FROM configuration_group WHERE configuration_group_id = @t4;
This does appear to remove lightbox. can someone confirm this is correct before i use it on my live site.
thanks
shoulders
Bookmarks