i installed dash player clearly but now im unable to play the videos in the dash player it just loading and loading here is the link to my page.
http://hyderabaddaily.com/test
please help me out i would be appreciated thanks.

CommentFileSizeAuthor
#8 1.3.5-beta-player.swf_.zip56.88 KBscottalan
#1 dashplayer.jpg25.29 KBliakoni

Comments

liakoni’s picture

Title: hi » Speening wheel
StatusFileSize
new25.29 KB

I have the same problem, dash player is loading without a result.

anouschka42’s picture

I have the same problem. I followed the youtube tutorial step by step...

MrSchoolcraft’s picture

same issue. followed the steps to the T and double checked the check list.
Still get this spinning non loading.

roald’s picture

Hmmm... Had no problems myself

travist’s picture

Here is what I would recommend...

Download and install the Charles software on your computer. With the Charles running, reload the page and watch the communication between the Dash Media Player and Drupal. This will almost always tell me what happened.

One thing to ask, though.... what version of the Services module are you using? I would try it with version 1.5 first, and then upgrade to the latest 2.x version. There is an extra configuration step with the latest services module that was not covered in my online tutorials.

Hope this was helpful.

Travis.

I am learning’s picture

Travist, thanks a ton. Using older version of services fixed my issue. Just to remind everyone that uninstall all the DashPlayer, AMFPHP, and services completely. Then install the older version (1.5) of services, install the other required modules i.e. DashPlayer an AMFPHP, regenerate the key, update ur config file, reset the permission (since u uninstalled everything) AND CLEAR THE CACHE, go to your node, hopefully this time it will work.

Travist has pointed the right spot, services module. Thanks again.

Regards

greywolfsspirit’s picture

Perhaps you can tell us what method access selections need to be turned on or off for the keys section when using services 6.20 for drupal 6.16? I am thinking it might be something in here causing part of the issues. When using the video documentation (where it installs and then adds the first test video, I get the player to come up, however, like those above, the spinning 'loading' symbol just keeps spinning. As though it cannot find the file to play.

scottalan’s picture

StatusFileSize
new56.88 KB

I've attached an updated player that will work with Services 6.x-2.0. This is still in beta but will resolve issues with having to uncheck "Use Keys". Hope this helps some of you. This can also be used with older versions of Services as long as you set the right 'API' in the $params.

Example:

//Services older than 0.15...
$params['api'] = 1;

//Services 0.15...
$params['api'] = 2;

//Services 2.0...You may not have to actually declare this with this version of the player.swf
$params['api'] = 3;

I've also included the body of my Content Template:

<?php 
$params['width'] = 450;
$params['height'] = 337;
$params['node'] = $node->nid; 
$params['config'] = 'dashconfig';
$params['api'] = 3;
$params['showinfo'] = 'false';  //This hides the 'info' section below the Media Region.
print dashplayer_get_player($params);
?>

Please direct anyone else having issues with Services 2.0 to this post.

Thanks

-Scott

scottalan’s picture

Status: Active » Fixed

please refer to the post here: http://drupal.org/node/746044 for information regarding Services 6.x-2.0

Thanks

-scott

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.