So I have jquery media installed, I have jq also installed and embedded media field. The problem is no matter what I upload the flash player (I have tried a bunch) shows "File Not Found". I have tried all kinds of mp3 files with different specs and file names but it keeps coming back to File Not Found. There files have the proper server-side permissions and are in my site's /sites/default/files directory. Can someone please suggest some places to poke around? This problem has me at my wits ends. Thank you!!!

Comments

2c’s picture

I had that error as well, here's a dirty hack I tried:

1. Open up modules\jquery_media\js\jquery.media.js
2. Change (around line 315) the following:

Delete the following line in its entirety:
opts.src = opts.src + '?file=' + src;

Add the following line in its entirety:
opts.src = opts.src + '?soundFile=' + src;

dweller’s picture

Thanks, 2c. I was having this same problem. Haven't taken the time to figure out why your fix works, but it does. And I'm grateful!