failed to serialize server result

Hello,

When I try enter Kaltura Management Console (KMC) Email & password, partnet ID. I get this message: failed to serialize server result.

In apache log error it said:

[Wed Oct 28 22:39:41 2009] [error] *** FATAL EXCEPTION *** : exception 'Exception' with message 'failed to serialize server result\n' in /home/site/public_html/mod/kaltura_video/kaltura/api_client/KalturaClientBase.php:125\nStack trace:\n#0 /home/site/public_html/mod/kaltura_video/kaltura/api_client/KalturaClient.php(4232): KalturaClientBase->doQueue()\n#1 /home/site/public_html/mod/kaltura_video/kaltura/api_client/kaltura_helpers.php(172): KalturaPartnerService->getSecrets('123456', 'smdir@gmai...', 'jhd9ad5')\n#2 /home/site/public_html/mod/kaltura_video/kaltura/api_client/kaltura_helpers.php(97): KalturaModel->getSecrets('123456', 'smdir@gmai...', 'jhd9ad5')\n#3 /home/site/public_html/mod/kaltura_video/start.php(104): kaltura_partner_processing(Array)\n#4 /home/site/public_html/engine/lib/elgglib.php(1511): kaltura_video_init('init', 'system', NULL)\n#5 /home/site/public_html/engine/lib/elgglib.php(1578): events()\n#6 /home/site/public_html/engine/start.php(192): trigger_elgg_event('init', 'system', '', NULL, true, NULL)\n#7 /home/site/public_html/engine/handlers/action_handler.php(17): require_once('/home/site/...')\n#8 {main}

I am using elgg1.6.1

Thank you

  • Well, I do not know exactly what was the cause.

    All I did, I enabled  this php fonction in php.ini: curl_exec, and issue is gone.

    Thank you

     

  • So, now we know thath curl libraries are nedeed for this plugin!

  • LOLZ ;-)

    <?php
    /*
    This file is part of the Kaltura Collaborative Media Suite which allows users
    to do with audio, video, and animation what Wiki platfroms allow them to do with
    text.

    Copyright (C) 2006-2008 Kaltura Inc.
    . . . .
    if ($this->config->format == self::KALTURA_SERVICE_FORMAT_PHP)
    {
    $result = @unserialize($post_result);
    if (!$result)
    {
    $result["result"] = null;
    // TODO: add error code?
    $result["error"] = array("failed to serialize server result");
    }
    $dump = print_r($result, true);
    $this->log("result (object dump): " . $dump);
    }