Hi,
Please edit /opt/kaltura/app/alpha/lib/model/Partner.php and change:
public function getAdminLoginUsersQuota() {return $this->getFromCustomData('admin_login_users_quota', null, 3);}
to read:
public function getAdminLoginUsersQuota() {return -1;}
The limitation is set during deployment by processing:
We intend to change that soon but for now, I would not recommend manually updating the DB record where this value is kept since it is stored as serialized data and editing that is a bit tricky.
Changing the code above will make the function return -1 rather than look up the value in the DB. -1 will mean there will be no limitation enforcement on the number of users.