• walkingcomplete

    (@walkingcomplete)


    I am getting the following error at on the playlist menu:

    Task Queue failed at step 5: Playlist could not be loaded: XML could not be parsed or playlist was empty.

    Any suggestions?

    Love this plugin!

Viewing 4 replies - 1 through 4 (of 4 total)
  • punzzer

    (@punzzer)

    i have the same error, pls help ??

    I also have this issue on wpmu 3.02 with domain mapping.

    It only affects playlists, not single videos.

    The closest thing I have found so far is to add a crossdomain.xml file but it is not working.

    https://www.longtailvideo.com/support/forums/jw-player/setup-issues-and-embedding/13344/task-queue-failed-at-step-5-playlist-could-not-be-

    -welp

    figured out a down n dirty hack.

    this is for WordPress multisite with domain mapping:

    in /wp-content/plugins/wordtube/lib/swfobject.php

    line 99:

    $this->embedSWF = 'swfobject.embedSWF("'. $swfUrl .'", "'. $this->id .'", "'. $width .'", "'. $height .'", "'. $version .'", '. $expressInstallSwfurl .', this.flashvars, this.params , this.attr );' . "\n";

    replace with:

    $new = str_replace(".","",$swfUrl);
    	$new = str_replace("blogsdir","blogs.dir",$new);
    	$new = str_replace("playerswf","player.swf",$new);
    
    		$new = str_replace("https://mydomain1com","",$new);
    		$new = str_replace("https://mydomain2com","",$new);
    		$new = str_replace("https://mydomain3com","",$new);
    		$new = str_replace("https://mydomain4com","",$new); //add more if needed
    		$this->embedSWF = 'swfobject.embedSWF("'. $new .'", "'. $this->id .'", "'. $width .'", "'. $height .'", "'. $version .'", '. $expressInstallSwfurl .', this.flashvars, this.params , this.attr );' . "\n";

    This removes the referring domain name and all seems to be ok.

    For some reason the referring domain name reverts back to the original if you just try to strip out the main WordPressMU for the simpler fix:
    $new = str_replace("main-wpmu-domain","",$new);

    I hope someone comes up with a better fix, but this seems to work.

    Cheers

    Found a side effect of my hack, The flash slideshow in NexGen Gallery doesn’t work now. It seems to be running off the swfobject file in wordtube. Guess it loads before Nexgen’s.

    Got it working again by disabling the flash slideshow in Nexgen and using the default javascript one. Drawbacks are no navigation bar or background music ??

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘[Plugin: wordTube] WordTube Error: "Task Queue failed at step 5"’ is closed to new replies.