
Originally Posted by
balihr
Yes, there's a very simple way to determine which version you're using. Take a look at the configuration options in admin. There are 3 possible situations:
1. If you have options to set width and height, you're using version 1.0.
2. If you don't have those options AND last config line doesn't mention slideshow version, you're using 2.0
3. If the last line in configuration shows slideshow version, well, try guessing which version you have...
Regards,
Leonard
OK, I've looked at the configuration options and I see that I have ZX Slideshow v.1 installed. I'm trying to upgrade to the latest version and I've tried to uninstall the current version by running the following MySQL query:
Code:
SET @configuration_group_id=0;
SELECT @configuration_group_id:=configuration_group_id
FROM configuration_group
WHERE configuration_group_title= 'ZX Slideshow Configuration'
LIMIT 1;
DELETE FROM configuration WHERE configuration_group_id = @configuration_group_id;
DELETE FROM configuration_group WHERE configuration_group_id = @configuration_group_id;
Unfortunately, it doesn't seem to make a difference. I can still access ZX Slideshow from admin as if nothing has changed.
Maybe I'm missing something very simple...?