ramblings, rants and red pills
I have a small, Gallery2 based Image collection on my website. For some time now, I had problems generating scaled versions of the images when uploading new images. Smaller sizes of images with already correct derivatives were generated corrctly, though.
After much fiddling around, reinstalling plugins, deleting caches, upgrading Gallery and more, I finally found the — simple(!) — solution:
DELETE FROM g2_Derivative;
DELETE FROM g2_DerivativeImage;
Update 27.12.2007: As you can read in the comments of this post and in this thread, there is actually a better way to achieve the same result, all while keeping the database integrity (Something that my approach obviously didn’t
). It goes along the following lines:
g_isBroken Flag in the “Derivative”-Table to 1 for all entries:
UPDATE g2_Derivative SET g_isBroken = '1';http://www.example.com/gallery/lib/support/index.phpThis fixed the problem I had. Your mileage may vary.
This is my electronic home with lots of different stuff about Mac's, the Life, Blogs, Quotes and more.