The presenters are not working with international sites, with url's like this: http://localhost/mysite/en/sites/all/modules/mapi/plugins/presenters/jw_...
So the swf could not be load.
I fixed the bugs.
In onepixelout.inc change:
$filename = url($filename, null, null, true);
$link = url($files['player.swf'], null, null, true);
to:
$base_url = url('', null, null, true);
$filename = $base_url . $filename;
$link = $base_url . $files['player.swf'];
In jw_player.inc change:
$filename = url($filename, null, null, true);
$link = url($files['flvplayer.swf'], null, null, true);
to:
$base_url = url('', null, null, true);
$filename = $base_url . $filename;
$link = $base_url . $files['flvplayer.swf'];
Thanks,
Christopher
Comments
Comment #1
rhys commentedThanks, updated in the CVS.
Comment #2
Anonymous (not verified) commentedAutomatically closed -- issue fixed for two weeks with no activity.