Title: [Plugin: Audio Player] Firefox update breaks this!
Last modified: August 19, 2016

---

# [Plugin: Audio Player] Firefox update breaks this!

 *  [onewalrus](https://wordpress.org/support/users/onewalrus/)
 * (@onewalrus)
 * [18 years, 1 month ago](https://wordpress.org/support/topic/plugin-audio-player-firefox-update-breaks-this/)
 * As of the most recent update of Firefox, this plugin has stopped working. Does
   fine in IE7, but won’t play files in Firefox 2.0.0.13… or…
    is it not compatible
   with WP 2.3.3? Please urge the creator of this plugin to update it!
 * [http://wordpress.org/extend/plugins/audio-player/](http://wordpress.org/extend/plugins/audio-player/)

Viewing 6 replies - 1 through 6 (of 6 total)

 *  [tiresias53](https://wordpress.org/support/users/tiresias53/)
 * (@tiresias53)
 * [18 years, 1 month ago](https://wordpress.org/support/topic/plugin-audio-player-firefox-update-breaks-this/#post-720901)
 * Working OK with my FF 2.0.0.13 and WP 2.3.3
 * Anyone know if this is OK with WP 2.5?
 *  [doryphores](https://wordpress.org/support/users/doryphores/)
 * (@doryphores)
 * [18 years, 1 month ago](https://wordpress.org/support/topic/plugin-audio-player-firefox-update-breaks-this/#post-720909)
 * I just updated my blog to s2.5 and Audio Player is fine.
 * There are no compatibility issues with WP version or Firefox versions. If you’re
   having problems with FF, check that you have Flash correctly installed (Flash
   6 or above is required).
 * Go to this page to find out which version you have:
    [http://www.macromedia.com/software/flash/about/](http://www.macromedia.com/software/flash/about/)
 * Martin
 *  Thread Starter [onewalrus](https://wordpress.org/support/users/onewalrus/)
 * (@onewalrus)
 * [18 years, 1 month ago](https://wordpress.org/support/topic/plugin-audio-player-firefox-update-breaks-this/#post-720957)
 * In response to Martin. It is a broad statement to say there are “no compatibility
   issues” just because you don’t have any! I and many others have WP-2.5, Firefox
   2.0.0.13 and Flash 9,0,115,0, but still have problems with this player. The player
   works in IE-7. I have tried various combinations of WP versions and browsers…
   it’s Firefox that’s doing it. However… it is possible that other Firefox add-
   ons could be conflicting.
    Nevertheless, it is unreasonable to expect a plugin
   which has not been updated since Sept. 06 to be considered “currently supported”.
   Your pointing to Flash as the sole problem is wrong. Just so you know, the 1-
   Bit player doesn’t work either!
 *  Thread Starter [onewalrus](https://wordpress.org/support/users/onewalrus/)
 * (@onewalrus)
 * [18 years, 1 month ago](https://wordpress.org/support/topic/plugin-audio-player-firefox-update-breaks-this/#post-720958)
 * Martin,
    OK, I am going to backup on this and approach it like an auto-repair…
   start with the most simple/easiest thing first. I would suggest to anyone having
   a problem with Firefox to try the player with only a couple tabs open. I have
   a suspicion that the failure may be due to overtaxing the browser itself by having
   too many tabs open. (?) Pablo
 *  [doryphores](https://wordpress.org/support/users/doryphores/)
 * (@doryphores)
 * [17 years, 11 months ago](https://wordpress.org/support/topic/plugin-audio-player-firefox-update-breaks-this/#post-721036)
 * I have just done some extensive testing of this particular problem and here are
   my findings:
 * The problem seems to originate from the latest Flash Player. When I downgraded
   to an older version (9.0.47), the players worked great (I also tried your page).
   As soon as I re-installed the latest version (9.0.124), the players stopped working.
 * I also tried to find a workaround by creating a very simple test Flash movie (
   no interface, just 3 lines of actionscript to load an mp3 file and play it) and
   testing it in FF. I found that this also wouldn’t start playing the file. The
   mp3 file would load completely but never start playing.
 * Conclusion: this is a problem with the Firefox Flash plugin, not with WordPress
   or my plugin.
 * Martin
 *  [jwheck](https://wordpress.org/support/users/jwheck/)
 * (@jwheck)
 * [17 years, 4 months ago](https://wordpress.org/support/topic/plugin-audio-player-firefox-update-breaks-this/#post-721076)
 * Looks like the object tag needs <embed> code to work in Firefox. I’m using Firefox
   3.0.5 with Flash Player 10 on Vista.
 * Replace the following code in /wp-content/plugins/audio-player.php around line
   298
 *     ```
       if( get_option("audio_player_transparentpagebg") ) $bgparam = '<param name="wmode" value="transparent" />';
       		else $bgparam = '<param name="bgcolor" value="' . get_option("audio_player_pagebgcolor") . '" />';
       		return '<object type="application/x-shockwave-flash" data="' . $ap_playerURL . '" width="290" height="24" id="audioplayer' . $ap_playerID . '"><param name="movie" value="' . $ap_playerURL . '" /><param name="FlashVars" value="' . $flashVars . '" /><param name="quality" value="high" /><param name="menu" value="false" />' . $bgparam . '</object>';
       ```
   
 * with this:
 *     ```
       if( get_option("audio_player_transparentpagebg") ) $bgparam = '<param name="wmode" value="transparent" />';
       		else $bgparam = '<param name="bgcolor" value="' . get_option("audio_player_pagebgcolor") . '" />';
       		return '<object type="application/x-shockwave-flash" data="' . $ap_playerURL . '" width="290" height="24" id="audioplayer' . $ap_playerID . '"><param name="movie" value="' . $ap_playerURL . '" /><param name="FlashVars" value="' . $flashVars . '" /><param name="quality" value="high" /><param name="menu" value="false" />' . $bgparam . '<embed src="' . $ap_playerURL . '?FlashVars=' . $flashVars . '" quality="high" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" type="application/x-shockwave-flash" width="290" height="24"></embed></object>';
       ```
   

Viewing 6 replies - 1 through 6 (of 6 total)

The topic ‘[Plugin: Audio Player] Firefox update breaks this!’ is closed to new 
replies.

## Tags

 * [adobe](https://wordpress.org/support/topic-tag/adobe/)
 * [Firefox](https://wordpress.org/support/topic-tag/firefox/)
 * [flash](https://wordpress.org/support/topic-tag/flash/)

 * 6 replies
 * 4 participants
 * Last reply from: [jwheck](https://wordpress.org/support/users/jwheck/)
 * Last activity: [17 years, 4 months ago](https://wordpress.org/support/topic/plugin-audio-player-firefox-update-breaks-this/#post-721076)
 * Status: not resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
