I checked the plugin in your server and I saw that the init.php file of the plugin is failing to load and the obvious reason to this is a misconfiguration in .htaccess or in the server itself. I used the developer tool of Google Chrome and it showed me that your Oxwall installation is misleading some plugin paths as seen in the image below.
If you look at the image I highlighted in red circle the php file of our plugin that fails to load, the path that your Oxwall installation tries to load is http://new.alreadyvettedonline.com/...ductoryvideo/init.js which obviously erroneous because it has two double forward slashes "//" right after .com the correct path should be http://new.alreadyvettedonline.com/...ductoryvideo/init.js with one forward slash "/".
Thank you.
This is what shows up
ugin Name: INTRODUCTORY VIDEO
Author: OldFuture
Version: 1.0.0
Website: www.oldfuture-it.com
License: http://www.opensource.org/licenses/bsd-license.php
Copyright (c) 2013, www.oldfuture-it.com
**********************************************************/
class INTRODUCTORYVIDEO_CMP_IntroductoryvideoWidget extends BASE_CLASS_Widget
{
public function __construct( BASE_CLASS_WidgetParameter $params )
{
parent::__construct();
$actual_link = "http://$_SERVER[HTTP_HOST]$_SERVER[REQUEST_URI]";
$segs = explode("/", $actual_link);
$username = end($segs);
$user = BOL_UserService::getInstance()->findByUsername($username);
$this->setVisible(false);
if(!$vidId = $user->intro_video_id) {
return;
}
if(!VIDEO_BOL_ClipService::getInstance()->findClipById($vidId)) {
return;
}
$this->setVisible(true);
$this->assign('username', $username);
$this->assign('label', OW::getLanguage()->text('introductoryvideo', 'show-video'));
}
public static function getStandardSettingValueList()
{
return array(
self::SETTING_WRAP_IN_BOX => true,
self::SETTING_SHOW_TITLE => true,
self::SETTING_ICON => self::ICON_STAR,
self::SETTING_TITLE => OW::getLanguage()->text('introductoryvideo', 'widget_title')
);
}
Hi Sakile,
Our coder is still working on the issue.
We will notify you here in Oxwall once the full fix is finished.
Thanks.