Luvmoomoo:
you know what... I found the .htaccess in the bmz_cache and it shows:
but now allow just certain necessary files:
<FilesMatch ".*.(jpe?g|JPE?G|gif|GIF|png|PNG|swf|SWF)$" >
Order Allow,Deny
Allow from all
</FilesMatch>
>
> Then i swapped a pic to GIF... it got displayed and the hover worked too.. except for the watermark..
> Do you think its got to do with the JPEG or any configs?
>
> I changed it to:
> ```
# but now allow just *certain* necessary files:
<FilesMatch ".*\.([B]jpeg|JPEG[/B]|gif|GIF|png|PNG|swf|SWF)$" >
Order Allow,Deny
Allow from all
</FilesMatch>
But no changes...
Here's how it looks like from the admin page:


Thank you sooo much...
-
If you turn off image handler, do the images show?
and
<FilesMatch ".*.(jpe?g|JPE?G|gif|GIF|png|PNG|swf|SWF)$" >
is the same as
<FilesMatch ".*.(jpeg|JPEG|jpg|JPG|gif|GIF|png|PNG|swf|SWF)$" >
the question mark means the e in jpeg is optional (as most jpegs end in jpg that handy)
You could try removing (temporarily) the .htaccess files on the images folder and the bmz_cache, but its pretty unlikely these are the problem.
Did those errors in your cache show up after you had altered the setting in your .htaccess file?