I created a player that had the Facebook and Twitter plugins activated, saved the player, cleared my drupal cache and created a node that embedded a video using that player. The video player show up and the video plays fine. However, the Twitter and Facebook items are not showing up in the dock of the player. I tried to activate several other plugins and had the same problem. I cleared my drupal cache, browser cache, etc. but nothing has helped. Is there something that I am doing wrong or a step I am missing?

Comments

tyler.frankenstein’s picture

@catherinecolman - we had similar problems in the past, and once we verified that our /sites/all/modules/jwplayermodule/configs directory was writable, our player config xml file was saved properly and the plugins started working, hope this helps!

JW Player’s picture

Status: Active » Postponed (maintainer needs more info)

@catherinecolman

This does indeed sound like a permissions issue. Did signalpoint's suggestion help you?

ericpai’s picture

I have a similar issue with the Sharing plugin.
I have a videoplayer page with an xml playlist. I added my page to the sharing.link to "http://new.mysite.com/videoplayerpage/video-player-test-page-1" but the sharing button does not appear. I deleted all cache. I'm using the 5.4 player.
I'm using this in my node template (node-videoplayerpage.tpl.php):

<div id="node-videoplayerpage_videoplayer">
	<?php
	// JW Player video player
	 $flash_vars = array(
	    'file' => '/videoplayerpageplaylist/node/'.$node->nid.'/rss.xml',
	 	'logo' => base_path().$node->field_jwplayer_logo[0]['filepath'],
		'logo.hide' => false,
	 	'logo.position' => 'top-left'
	 );
	 print theme("jwplayermodule_render_player", $node->field_jwplayer_profile[0]['value'], $flash_vars);
	?>					
</div>
JW Player’s picture

@ericpai,

What is the content of $node->field_jwplayer_profile[0]['value']?

Can you provide a link to an example where the Sharing plugin should load but doesn't?

Thanks.