Copyright © 2012 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
Hi,
I try to install KAE on Deb Squeeze and it is pretty challenging. Some documentation for dummies would be much appreciated.
And to the current problem: The following error appears when using the php files located in html-template directory from the latest KAE package):
Array ( [result] => [error] => Array ( [0] => failed to serialize server result ) )
The parameters defined are:
$uid = "XXXX";
$uname = "XXXXX";
$pid = "1";
$spid = "100";
$secret = "XXXXXXXXXXXXXXXXXXXXX";
$adminsecret = "XXXXXXXXXXXXXXXXXXXXXXXX";
$entryid = @$_GET["entryId"];
$entryversion = "-1";
$host = "xxxxxxxx";
$debugmode = "1";
$uiConfId = "kae_generic_generic.xml";
Thanks,
Eddie
This means your local user hasnt been created during installation.
I had the problem when I didnt allow the override in my vhost file.
Make sure you have AllowOverride All in your vhost file. Here is mine as example.
You ll need to reinstall The KCE
ServerName kalturace
DirectoryIndex index.php
DocumentRoot /var/www/kalturaCE
<Directory /var/www/kalturaCE>
AllowOverride All
Order allow,deny
Allow from all
Options Indexes FollowSymLinks ExecCGI Includes
</Directory>
ErrorLog /var/log/apache2/kalturace-error.log
CustomLog /var/log/apache2/kalturace-access.log combined
</VirtualHost>