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'm using Kaltura CE 2.0 on Ubuntu 10.04 with XAMPP 1.7.1 and did the whole installation following the guide for 10.04. I created a partner but can't login at /index.php/kmc/kmc.
This is the API's response:
<?xml version="1.0" encoding="ISO-8859-1"?><xml><result><serverTime>1279903185</serverTime></result><error><num_0><code>ADMIN_KUSER_NOT_FOUND</code><desc>The data you entered is invalid</desc></num_0></error><debug><sigtype>1</sigtype><validateSignature></validateSignature><signature>f05daa0b6030de429e38ff4655793a0e</signature><execute_impl_time>0.00512599945068</execute_impl_time><execute_time>0.0649869441986</execute_time><total_time>0.0658278465271</total_time></debug></xml>
I thought I was going nuts, I too am having the same problem. Followed the installation instructions for install for 2.0 and everything works for the admin console, but any user that is created from there can't login. they get the email with the password but I get the "the data you entered is invalid".
Installed on Ubuntu Server (fresh install) following the instructions to install XAMP.
Bump!
Same problem here too with Ubuntu.
"The data you entered is invalid"
The link in my email, from registration_confirmation@my.server.com, says ...
Your account has been created and you can get started by logging in to the Kaltura Management Console - KMC - here: http://kaltura.com/kmc .
If you click on that link like I did, you'll be trying to log into the Kaltura.com site, not your own site.
Try going directly to your.server.com/kmc and logging in there. The username, password, and ID credentials are correct but the rest of the email is boilerplate.
This log seems to put on the right track to solve the problem:
2010-07-24 05:48:06 [701280387] [Kaltura_ClientLoggingProxy->log] DEBUG: execution time for [http://video.mysite.com/api_v3/index.php?service=systemuser&action=verifyPassword]: [0.0141968727112]
And also got this:
[password] => password
[partnerId] => -2
[ks] => M2IxMTkzNDNhZWNkODY5ZWNiN2VmZjY1ZmMzZTdhYTYwNjk0NjUxY3wtMjs7MTI4MDAyNTAzNjsyOzEyNzk5Mzg2MzYuNjQ7Ow==
[kalsig] => 618360dd56ff443458339c342758a33f
)
2010-07-24 06:30:36 [127.0.0.1] [1319167558] [API] [KalturaFrontController->getExceptionObject] ERR: exception 'KalturaAPIException' with message 'Action "verifyPassword" does not exists for service "systemuser"' in /opt/kaltura/app/api_v3/lib/KalturaDispatcher.php:56
guys,
I suspect we have a little mess here...
how did you create the "partner" ? did you do it in the admin_console under the 'users' tab ?
if so - you created an admin console user.
for creating "partner" you have to "add publisher" under the publishers tab, then you should be able to login with the details you get in mail.
verify password is the service to login to the admin console and not to the KMC.
the first error (the one in the XML - admin kuser not found) is relevant, but it might only imply that it was not a partner created but an admin console user.
Gonen
Gonen thank you for your support but the first time I realized that mistake, reinstalled for scruples but when I try to login here:
http://video.mysite.com/admin_console/
i got a white page, nothing appears and I can see this in the /opt/kaltura/log/admin_console.log :
2010-07-26 15:30:10 [63963906] [Kaltura_ClientLoggingProxy->log] DEBUG: execution time for [http://video.mysite.com/api_v3/index.php?service=systemuser&action=verifyPassword]: [0.00948095321655]
Am i doing something wrong?
What does it mean Action "verifyPassword" does not exists for service "systemuser"?
Yes, I definitely created a partner.
The API action called is /partnerservices2/adminlogin which is a bit confusing as I'm logging in at /kmc/kmc. There are also no matching log entries at all.
Problem SOLVED! (at least for me) I had to disable eaccelerator
paolocalvi - good to hear that and thanks for sharing. Did you get to investigate further and learn what caused this in eaccelerator?
crollison, sysnickm - does the problem remain? did you reinstall? --can you share some information about your system deployment? version of PHP?
kuwpicwb - I see that you're using partnerservices2 - you should use only api_v3. partnerservices2 is deprecated.
wire - thanks, this was fixed on the email. did you too have issues logging in to your server?
Hi. I'm new here and to Kaltura
In Kaltura 3.0.0Beta1 error would look like so:
Action "list" does not exists for service "systempartner_systempartner" ACTION_DOES_NOT_EXISTS
The problem starts (line 84) in KalturaDispatcher.php when reflector is asked if (!$reflector->isActionExists($action))
$action being "list"
KalturaServiceReflector.php public function isActionExists($actionName) calls $this->getActions();
And here is all what goes wrong with the eaccelerator - line 128 $docComment = $reflectionMethod->getDocComment();
On first request this will return DocComments for all public methods reflection found, but on subsecuent requests
none will be returned since eaccelerator strips DocComments from opcode as optimisation measure.
http://eaccelerator.net/ticket/229
Not a good idea in our case since we have SystemPartnerService.php defining @action list being listAction as follows:
* @action list
* @param KalturaPartnerFilter $filter
* @param KalturaFilterPager $pager
* @return KalturaPartnerListResponse
*/
public function listAction(KalturaPartnerFilter $filter = null, KalturaFilterPager $pager = null)
So, essentially eaccelerator breaks link between what plugins where supposed to provide and what reflection found they provide.
Solved by adding these two lines to my_kaltura.conf
php_flag eaccelerator.enable 0
php_flag eaccelerator.optimizer 0
I am installing this on CentOS 5.6, x64.
Had the same problem as the original post with the released KalturaCE 3.0.0...
Solved with redfred's solution above:
php_flag eaccelerator.enable 0
php_flag eaccelerator.optimizer 0
(remember to restart the httpd server)
Thank you for sharing the solution, would never have imagined this problem coming from e-accelerator in a million years. :D
I'm having the same issue, the admin tool seems to work fine.