I am using WAMP to test my site on windows. I have below folder structure

|---images
| |---Folder1
| | |---Sub1
| | |---Sub2
| | |---Sub3
| |---videos
| | |---Vid1
| | |---Vid2

I have spot1.wmv and spot1.wmv.screenshot.jpg inside videos\vid1 folder but I don't see my thumbnails. I have enabled/disabled clean urls, cleared the cache and imagecache, chose image cache presets etc. but it didn't make any difference.

Comments

tutumlum’s picture

is is because fast_gallery.module on line 362 array_pop() is used
spot1.screenshot.jpg should be used (file extension for video should not be added)

or

fast_gallery.module line 363-364:

$tmp = implode('.', $tmp_ar);
$thumbpath = $tmp.'.screenshot.jpg';

change to:

$thumbpath = $value->path.'.screenshot.jpg';

or

fast_gallery.module line 362:
$path_ext = strtolower(array_pop($tmp_ar));

change to

$path_ext = strtolower(end($tmp_ar));

rapsli’s picture

Status: Active » Closed (won't fix)
tutumlum’s picture

so, documentation should be cleared about it.

rapsli’s picture

so far documentation is very slim... feel free to contribute. The module should now be in a pretty stable version. I'm planing some work on some more granular permission options, but this is going to take a while an will not change existing functionality. Community would be very glad if you start something. Let me know what your plans are.

tutumlum’s picture

Here is my plan: http://drupal.org/node/531440. I didn't mention it before, because I thought that is was too early. I'm really happy that I will be a member of Drupal community. Thank you..