Hi,

I am having an issue with thumbnails not being available. I noticed it first when I created a view and the thumbnails wouldn't show up and then I went to the kaltura/entries page and there were no thumbs there either. The little blue boxes are there, just no thumbnails.

Now at some point in the past I did have thumbnails. I don't know at what point they stopped showing up. Actually, I don't know if they are just not showing up or if they weren't created to begin with. I looked through all of the settings and I don't see anything about thumbnails except setting width and height.

One thing I would like to know is: where are the thumbnails stored? In my files folder or on the Kaltura server. I am guessing the Kaltura server because if I log into the Kaltura cms, I see thumbnails there for each item.

thanks.

Comments

chadcross’s picture

I am getting this for each li on the kaltura/entries page:

<li class="kentry">
<div class="kentry_title">
<a href="/content/title_here" target="_blank">Title Here</a>
</div>
<div class="kentry_thumb">
</div>
</li>
Zohar.Babin’s picture

Status: Active » Postponed (maintainer needs more info)

Hi chadcross,

do you still have the theme override implemented ?
http://community.kaltura.org/viewtopic.php?f=6&t=206

If you take a look at the theme_list_of_entries() function (which is responsible for building the kaltura/entries page), you can see it calls

theme('node_'. $dets->type .'_thumbnail_url', $dets, 0, $nosize = TRUE)

so if you override the *_thumbnail_url function in your theme, and return empty string, this page will be affected as well.

chadcross’s picture

Status: Postponed (maintainer needs more info) » Fixed

Ahhh, of course. That has to be it. So I need to change that override to be more specific. Thanks!

Zohar.Babin’s picture

Status: Fixed » Closed (works as designed)