NextGen Gallery template cache [closed]

NextGEN Gallery 2.0 caches galleries and albums in transients (plus their own custom transient expiration time record). You can clear the cache by deleting all transients.

Easiest way is to install a plugin like Delete Expired Transients and delete all transients from the Tools menu — that plugin has an option for deleting either expired transients or all transients, and will delete NextGEN Gallery’s custom expiration record too.

Or you can just run this in MySQL:

delete from wp_options
where option_name like '\_transient\_%'
or option_name like '\_site\_transient\_%'
or option_name like 'displayed\_galleries\_%'