Brilaps Support Forum
September 09, 2010, 02:04:58 am *
Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
News: WE DO NOT ALLOW OR ENDORSE ANY OF THE SEO RELATED ADS POSTED IN OUR SUPPORT FORUM. THOSE POSTS ARE TREATED AS SPAM !
Advanced search  
Pages: [1] 2 |   Go Down
  Print  
Author Topic: embedia and Explorer 7 and 8  (Read 934 times)
den
Registered
*
Offline

Posts: 6


« on: February 10, 2010, 11:11:39 pm »

Howdy,

Has anyone had any problems with embedia  in Explorer? I did a search but didn't find anything. I just installed embedia in Joomla 1.5 and it works great in Chrome and Safari but Explorer does nothing except adds the link into the address bar of the browser...

Any help would be Greatly appreciated.
Thanks
Den
Logged
ocs
Administrator
Hero Member
*****
Offline

Posts: 104



« Reply #1 on: February 10, 2010, 11:44:24 pm »

hi den,

last i checked, it was all good in IE 7-8 , but i'll check again. i'm assuming it's a javascript problem. i'll get back to you
 
Logged

maciej
Registered
*
Offline

Posts: 2


« Reply #2 on: February 11, 2010, 10:51:57 pm »

I'm having exact same problem. Every browser under the sun seems to work, with the exception of IE8. You can check this link: http://bit.ly/cIBQt7

I've tried the "defer" solution proposed for previous versions to avoid conflicts with mootools, but that did not work. Also tried a simple template to make sure my template was not causing the issue, but also a no go.

Thanks,

Maciej
Logged
den
Registered
*
Offline

Posts: 6


« Reply #3 on: February 12, 2010, 01:41:26 pm »

hi den,

last i checked, it was all good in IE 7-8 , but i'll check again. i'm assuming it's a javascript problem. i'll get back to you
 

Yes it could be some sort of javascript problem in the backend of Joomla. I only have one page finalized on my new site and maybe you can spot the problem in the code... It's at http://songs.skyriver.org/southern-gospel/the-bilderbacks  I don't want to go any further till I'm sure it will be cross browser compatible.

Thanks in advance...
Den
Logged
ocs
Administrator
Hero Member
*****
Offline

Posts: 104



« Reply #4 on: February 12, 2010, 06:31:14 pm »

ok. i see the problem happening in joomla15.mambojoomla.com as well.

i'm on it. we'll release an update shortly.

dammit, IE... Smiley
Logged

den
Registered
*
Offline

Posts: 6


« Reply #5 on: February 13, 2010, 08:47:30 am »

ok. i see the problem happening in joomla15.mambojoomla.com as well.

i'm on it. we'll release an update shortly.

dammit, IE... Smiley

That's Great... I'm glad you caught it. I'll hold off publishing until you have the update ready..

Thanks in advance...
Den
Logged
seagul
Registered
*
Offline

Posts: 1


« Reply #6 on: March 02, 2010, 07:55:11 am »

Some problem here.
Is there any time plan about an update?

Thanks a lot!
Seagul
Logged
quetzaff
Registered
*
Offline

Posts: 4


« Reply #7 on: March 11, 2010, 07:37:47 am »

Hi,
same here, works great with FF, but ie7 doesn't open the flash movie...I had the same with wmv files, but by disabling javascript it worked fine.

cms.flyfirebird.com/paraglide

Hope to get any (good) news soon, as the site should be online very very soon...

Best regards
quetzaff
Logged
quetzaff
Registered
*
Offline

Posts: 4


« Reply #8 on: March 11, 2010, 07:55:02 am »

I just tried the mambot and joomla test (demo) site, and the problem is the same...
Logged
den
Registered
*
Offline

Posts: 6


« Reply #9 on: April 10, 2010, 07:46:37 pm »

ok. i see the problem happening in joomla15.mambojoomla.com as well.

i'm on it. we'll release an update shortly.

dammit, IE... Smiley

Hi Hero,

I'm just checking in to see how the update is going. It's been 2 months since our last contact. I really like the empedia player and hope to be able to use it on my site. I'll have it up and running within a week or so.

I have 550 songs to setup so I really need to have a stable cross browser player.
Please let me know know as soon you can so I can work on replacing the empedia player with a second choice player if need be.

Thanks
Den
Logged
yupablan
Registered
*
Offline

Posts: 1


« Reply #10 on: May 15, 2010, 06:32:40 pm »

I have problems with IE too, I'm loading a Flash movie but it doesn't show on this browser.
On FF and Chrome is working right.
My site is www.globalrobots.com, it generates an error 'Invalid argument' on embedia.yui.js line 66 character 5809.

Please if someone can help me ir would be great.
Tks.
Logged
theflea
Registered
*
Offline

Posts: 2


WWW
« Reply #11 on: June 01, 2010, 04:14:07 am »

i also have the same problem. any news if someone has a solution already?
Logged

theflea
Registered
*
Offline

Posts: 2


WWW
« Reply #12 on: June 03, 2010, 10:08:06 pm »

fixed my problem by adding a few lines of code in /plugins/content/embedia/includes/embediaPlayerBase.class.php. Just copy and replace the method generateObjectParamEmbedCode() on line 122 and viola!. Hope this helps.

Code:
protected function generateObjectParamEmbedCode( )
{
//put together the actual embed HTML
$strMediaEmbedCode = '<object ';
$this->objectAttributes['standby'] = 'Please wait...';
foreach ($this->objectAttributes as $k=>$v) {
// flashvars as object attribues causes problems in IE
if ($k!='flashvars')
$strMediaEmbedCode .= $k.'="'.$v.'" ';
}
$strMediaEmbedCode .= '> ';

foreach ($this->paramAttributes as $k=>$v) {
$strMediaEmbedCode .= '<param name="'.$k.'" value="'.$v.'" />';
}

// flashvars should be here as a <param>  element
$strMediaEmbedCode .= '<param name="flashvars" value="'.$this->objectAttributes['flashvars'].'" />';

$strMediaEmbedCode .= '<embed ';
foreach ($this->embedAttributes as $k=>$v) {
$strMediaEmbedCode .= $k.'="'.$v.'" ';
}
$strMediaEmbedCode .= '></embed>';
$strMediaEmbedCode .= '</object>';

return $strMediaEmbedCode;
}
Logged

Raizzt
Registered
*
Offline

Posts: 1


« Reply #13 on: July 15, 2010, 06:30:35 pm »

Unfortunatly the code posted by theflea did not work in my case, I'm in love with the plugin and I would hate to have to see it go from my site...

Is there any news on an upcomping update?
Logged
ocs
Administrator
Hero Member
*****
Offline

Posts: 104



« Reply #14 on: August 01, 2010, 10:21:40 pm »

we just released up an update "embedia 3.0.1"

please check em out on http://code.google.com/p/embedia/downloads/list

if you already have 3.0.0 installed the patch file should be the easiest route.


*we've been extremely busy lately, hence the delay on this fix. apologies. Smiley
Logged

Pages: [1] 2 |   Go Up
  Print  
 
Jump to: