Hi Philbert,
I’ve just updated Autogallery.inc.php on our server to include a [+name+] placeholder that should be the filename without extension. It works by finding the last dot in the full name, so it won’t help with double extensions etc.
To prevent the double extension business you can replace line 169, which looks like this:
$params['tnpath'] = $gallerypath . '/tn_' . $file;
with this:
$params['tnpath'] = $gallerypath . '/tn_' . $params['name'];
I’m still avoiding doing it by default since I think many people won’t look at the backend and would rather not have to try to work out why one of their mp3s has the same thumbnail as one of their flvs. Although I respect that this is probably quite a rare case, I find working out whats gone wrong in cases like that harder than in cases where the problem is obviously the filename having two extensions (and there now being a published fix).
Ramsay