Drupal client module integration problem

2 replies [Last post]
Joined: 06/04/2009
Points: 22

Hello,

I have tried to upload a couple of videos (form Youtube) using the client module for Drupal. Everything seems to work fine, I can login into the KMC and I see the videos correctly.

But Drupal doesn't play them, this is an snippet of HTML that comes with the page of the recently created node:

<div id="node-88204" class="node">
     <span class="submitted">Vie, 05/06/2009 - 10:07 — Anónimo</span>
    <div class="content">
          <div class="kaltura_thumb"><img src="/width/120/height/90"  /></div>
    </div>
    <div class="meta">
    </div>
</div>

It is quite weird because the upload was not submitted by the anonymous user.

How can I trace this problems to find out what is going wrong ?

Joined: 04/05/2009
Points: 42

could you give some more details:
Are you uploading from drupal or from KMC?
what are your settings of Kaltura module in your drupal? are server notifications enabled?
check out these threads as well http://kaltura.org/video-not-showing
http://kaltura.org/nodes-are-not-created
Ariel

Joined: 06/04/2009
Points: 22

My node_id is greater than 65535.

I think the error is that the table kaltura entry does not allow a value greater than 65535.

mysql> describe kaltura_entry;
ERROR 1146 (42S02): Table 'beta.kaltura_entry' doesn't exist
mysql> describe node_kaltura;
+-----------------------+----------------------+------+-----+---------+-------+
| Field | Type | Null | Key | Default | Extra |
+-----------------------+----------------------+------+-----+---------+-------+
| vid | smallint(5) unsigned | NO | PRI | 0 | |
| nid | smallint(5) unsigned | NO | | | |

Could you please check this ?
Thanks!