2

I have a site where I need to play a mp3 file specific to the listing. The file needs to play in the same browser window (instructions from the client). I found a js/swf player (WordPress Audio Payer standalone version) that works on my local machine (Windows running WAMP), but when I send it to the live server (Linux with Apache), it buffers continually and doesn't play.

I found a website that said I need to modify the htaccess file to recognize flash media. This is what it said to add, and I did that with no improvement.

# Macromedia tells the server how to deal with swf files
AddType application/x-shockwave-flash swf
AddType audio/mpeg mp3

What am I doing wrong?

Frank Luke
  • 1,342
  • 3
  • 18
  • 33

1 Answers1

1

Did you try to monitor the traffic (using Firebug or Chrome development tools)? For example this issue may be related to incorrect Crossdomain Policy on your server. You can easily detect it by searching for crossdomain.xml in network traffic list.

Mikhail Payson
  • 923
  • 8
  • 12