Introduction
In some cases you would like to install the Kaltura Wordpress with an existing Kaltura partner you registered in the past. In the installation process the plugin prompts you to use an existing Kaltura partner instead of automatically registering one but in case you missed it you can still go back after the installation and change your partner. The change is a bit tricky - but not that bad.
Perquisites
- Kaltura all in one plugin for wordpress installation.
- An additional partner ID
Do it in a Few Easy Steps
- Login to your your Wordpress website admin panel.
- Go to the 'all in one video' settings page. (Settings > All in One Video). The URL should now be something like 'http://www.yoursite.com/wp-admin/options-general.php?page=interactive_video'
- Add '&force_registration=true' to the URL which will result in a URL like this 'http://www.yoursite.com/wp-admin/options-general.php?page=interactive_video&force_registration=true . This will send you back to the partner registration process.
- Register for a new partner, or use existing partner by selecting 'Click here if you already have a Partner ID' at the top of the page (don't miss it this time!).
- Enter your partner ID, CMS email and CMS password to complete the process.
That's it - your Kaltura wordpress plugin will now use a different Kaltura partner.




Comments
I dont see that cody anywhere...
<?php
/*
Plugin Name: All in One Video Pack
Plugin URI: http://kaltura.org/
Description: This is not just another video embed tool - it includes every functionality you might need for video and rich-media, including playing, uploading and editing.
Version: 2.3.1
Author: Kaltura
Author URI: http://kaltura.org/
*/
define("KALTURA_PLUGIN_FILE", __FILE__);
define("KALTURA_WIDGET_TABLE", "kaltura_widgets");
define("KALTURA_WIDGET_STATUS_UNPUBLISHED", 0);
define("KALTURA_WIDGET_STATUS_PUBLISHED", 1);
define("KALTURA_WIDGET_TYPE_COMMENT", "comment");
define("KALTURA_WIDGET_TYPE_POST", "post");
// backward compatibility for user who have the kalture-interactive-video installed and now trying to activate the new all-in-one-video-pack
if (WP_ADMIN) { // this check should run on admin pages only
require_once(ABSPATH . 'wp-admin/includes/plugin.php');
if (is_plugin_active("kaltura-interactive-video/interactive_video.php")) {
function kaltura_warning_new() {
echo "
".__("We're happy to see you've been using the Interactive Video plugin, but in order to upgrade to our new plugin, you'll need to deactivate the old one first. Don't worry, your Interactive Videos will be transferred to the new plugin automatically. Thanks and enjoy!")."
";
}
add_action('admin_notices', 'kaltura_warning_new');
}
else
{
require_once('all_in_one_video_pack.php');
}
}
else
{
require_once('all_in_one_video_pack.php');
}
?>
Thanks! Suggestion?
Oh, awesome! Thank so much!
However, I'm surprised you make it so unintuitive. Would it be that hard to put a settings -> account option to change it? Just a thought
Also, adding the widgets to wordpress is pretty darn difficult. Would it be that hard to make them into plugins?