Bug report: Real media will not play in IE browser. The solution requires 2 steps:
1. In VB control panel on the left side: select Attachments > Attachment Manager > Edit all file types that you want Real to play (ie: ra, rv, rm, etc.) > then for each file type, type in for mime type: Content-type: audio/x-pn-realaudio
2. Edit local_stream.php (in the forum root folder) so that the mime type is only changed for NON-IE browsers. Around line 143, FIND:
Code:
foreach ($mimetype as $k=>$mime) {
if (preg_match("/-real/", $mimetype[$k])) {
$mimetype[$k] = "Content-type: audio/x-pn-realaudio-plugin";
}
}
And REPLACE that with:
Code:
// MODIFIED to change mime type ONLY IF browser is NOT Explorer (!is_browser('ie') does not work for IE7, but can check for other browsers)
require_once(DIR . '/includes/functions.php');
if (is_browser('firefox') || is_browser('safari')) {
foreach ($mimetype as $k=>$mime) {
if (preg_match("/-real/", $mimetype[$k])) {
$mimetype[$k] = "Content-type: audio/x-pn-realaudio-plugin";
}
}
}
Real media should be able to play in both IE and Firefox