Copyright © 2011 Kaltura Inc.
All Rights Reserved. Designated trademarks and brands are the property of their respective owners.
Use of this web site constitutes acceptance of the Terms of Use and Privacy Policy.
EduVideo.org
I have created new playlist using addAction function. Here is the code:
$pl = $client->playlist->add($playlist, true);
"Add" function inserts $playlist->userId into puser_id field in database. Is there any opportunity to insert a value into kuser_id field to make relation kuser-playlist?
Hi Zohar,
listAction function doesn't return playlists without kuser and this playlists are not shown in KMC.
I had a look at the fuction listAction in file "kalturaCE\kaltura\api_v3\services\PlaylistService.php"
$count = entryPeer::doCount($c);
$list = entryPeer::doSelectJoinKuser( $c );
It counts all playlists, but selects only with kuser.
I've made
$count = entryPeer::doCount($c);
$list = entryPeer::doSelect( $c );
and everything became fine.
Hi,
This bug was already fixed in our internal svn.
It will be release in next CE version.
Thanks
kuser is a private key the Kaltura Server uses.. why would you like to use it?