Hi,
I uploaded the Kaltura 6.x-1.4 folder to my modules directory
Enabled Kaltura and 3 others but 3 of them i can't enable

kaltura as CCK field
provides 2 new CCK fields based on the kaltura nodes
Depends on: Kaltura (enabled), Content (missing)

Kaltura Media Views 6.x-1.4
View your top videos, most viewed, users videos, etc'.
Depends on: Kaltura (enabled), Views (missing)

Kaltura Playlist 6.x-1.4
display kaltura views results with a nice playlist UI
Depends on: Kaltura (enabled), Views (missing), Jquery_update (missing)

Also,
I can't find Kaltura here:
Now go to Administer -> Site configuration -> Kaltura -> Server Integration Settings

Any help please?

Thanks later

Comments

sounds’s picture

Fixex, you need to have the cck module installed for other features to be enabled

amad’s picture

cck installed.. fixed cck thing, but.. >

Kaltura Media Views 6.x-1.4
View your top videos, most viewed, users videos, etc'.
Depends on: Kaltura (enabled), Views (missing)

Kaltura Playlist 6.x-1.4
display kaltura views results with a nice playlist UI
Depends on: Kaltura (enabled), Views (missing), Jquery_update (missing)

sounds’s picture

You also need Jquery_update module installed

lefnire’s picture

You have to install the whole Kaltura stack. I just had this problem -- "Kaltura Media Node" isn't a dependency of "kaltura as CCK field"; however, in code if node_kaltura_entry isn't installed, it just skips over providing cck functionality. (see field_kaltura.module line 39)

function field_kaltura_field_info() {
  $fields = array();
  if (module_exists('node_kaltura_entry'))
    $fields['Kaltura_Media'] = array(
      'label' => t('Kaltura Media'),
      'description' => t('Store text in the database.'),
    );
  if (module_exists('node_kaltura_mix'))
    $fields['Kaltura_Media_Remix'] = array(
      'label' => t('Kaltura Media Remix'),
      'description' => t('Store text in the database.'),
    );

  return $fields;
}

There was another instance of this "hidden dependency" issue in a Kaltura module that I can't remember right now. The solution: Just install all Kaltura modules. (I think they should all just be one module)