Installation of KAE

1 reply [Last post]
Joined: 11/21/2009
Points: 1

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

Joined: 11/19/2009
Points: 4

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

<VirtualHost *:80>
        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>