Thumbnails in file manager not shown on IE8

Permalink 1 user found helpful
Hello,

Untill today I have this problem.
All the thumbnails in the file manager are gone on IE
They appear like a pop-up on mouse over but not in the list.
Instead I have à small blank square with grey borders. (see attachment)

I tried on mozilla, chrome and Safari and it's working.
So problem is just on IE.

It's not really a problem for me but I 've installed concrete for many clients who are using IE.

Thank's for your help

1 Attachment

 
mhawke replied on at Permalink Reply
mhawke
Try something simple first. Try clearing your IE8 cache and refreshing the File Manager page by hitting CTRL-F5.
mesuva replied on at Permalink Best Answer Reply
mesuva
This is a known bug in 5.6.0.2
http://www.concrete5.org/developers/bugs/5-6-0-2/file-manager-in-ie...

The good news is that this has been fixed in github, so it won't be a problem in the next version. In the meantime, you can have a look at the github commit for the fix required (it's a very simple edit, I'd just edit your core file, no need to override in this case)
https://github.com/concrete5/concrete5/commit/f0bc8177bc8699e0849c97...
matfield replied on at Permalink Reply
Thanks a lot mhawke, but I've already tried this but without success.

Big thank you! mesuva for your solution... it works perfectly now with a simple change in concrete/elements/files/searchresults.php at line 81 by adding this :
style = "min-width:50px;"

(ok it's just a temporary solution, I know there's proper ways to do this like changing css files) :

BEFORE
... echo $f->getFileID()?>"><a h ref="javascript:void(0)" class="thumbnail">


AFTER
... echo $f->getFileID()?>" style="min-width:50px;"><a h ref="javascript:void(0)" class="thumbnail">


++
mhawke replied on at Permalink Reply
mhawke
Yeah, I should read the bug reports before saying something silly. Thanks mesuva!