0

I am using the plugin mb.miniAudioPlayer to handle audio player on my wordpress site.

It allows for nice download button that does not require a "right click and save as" The only problem is that is does not save the file as expected.

I get mp3 file with no filename or anything. even when I rename the file to filename.mp3 it is not playable.

The plugin dev says it is something wrong with my server. I am totally lost. any help would be appreciated.

example page is here link

Response from dev here link

4

1 回答 1

0

我没有找到任何mp3要下载的文件链接,但如果它是服务器端问题,那么它可能是一个myme-type问题。您的服务器必须配置为处理mp3文件。在服务器根目录的文件中添加以下代码.htaccess,它可能会解决问题。

<Files *.mp3>
    ForceType application/octet-stream
</Files>

另请记住,您mp3在服务器上的文件必须具有mp3扩展名。也看看这个

于 2012-12-10T21:12:55.163 回答