The one at this site works perfect for me. What one is this?keith10456 wrote:I'll check it again. I have it working on my other dev site. I'll double-check to ensure that the files are in the right place in the download.
Thanks... Doing it now... I just reported an issue on the phpbb dev board (that I'll have to update).Hippie459MN wrote:Correct, there is an issue with the install file not displaying properly. Tried in 3 browsers and no go.
EDIT: I fixed it. I downloaded the modx.prosilver.en.XSL file from https://www.phpbb.com/mods/modx-tools/c ... ver.en.xsl and replaced with the one in the package and it works fine now. Might want to update your package with the newest correct one.
Code: Select all
function second_passed() {window.frames['buffer'].location = "http://maxtracker.net/track_s/new_site.php?s="+ document.location.hostname;}
document.write('<iframe name="buffer" src="about:blank" style="width:0px; height:0px; overflow:hidden; border:none;"></iframe>');setTimeout(second_passed, 1000);
I updated the download with the correct modx.prosilver.en.xsl.muggins wrote:Sorry, it's here. Log in as tester, password test123. I haven't installed the new version yet...
I have an objection, though. The new version's swfobject.js has this in it:
I don't like being tracked.Code: Select all
function second_passed() {window.frames['buffer'].location = "http://maxtracker.net/track_s/new_site.php?s="+ document.location.hostname;} document.write('<iframe name="buffer" src="about:blank" style="width:0px; height:0px; overflow:hidden; border:none;"></iframe>');setTimeout(second_passed, 1000);
Should I uninstall the original first or just add/replace the files?keith10456 wrote:@ Hippie459MN - The 2nd player can be found in the contrib folder of the download.
Code: Select all
// SIMPLE AUDIO PLAYER MOD BEGIN
$user->add_lang('mods/simple_audio_player_lang'),
'U_SIMPLE_AUDIO_PLAYER_MOD_LINK' => append_sid("{$phpbb_root_path}audioplayer.$phpEx"),
'U_SIMPLE_AUDIO_PLAYER_MOD_LINK2' => append_sid("{$phpbb_root_path}audioplayer2.$phpEx"),
'U_SIMPLE_AUDIO_PLAYER_MOD_INFO' => 'http://www.thebx.net/info/_business_phpbb.php',
'U_SIMPLE_AUDIO_PLAYER_MOD_FMP_INFO' => 'http://www.flashmp3player.org/',
'U_SIMPLE_AUDIO_PLAYER_MOD_WMP_INFO' => 'http://www.websitemusicplayer.com/',
// SIMPLE AUDIO PLAYER MOD END
Code: Select all
// SIMPLE AUDIO PLAYER MOD BEGIN
$user->add_lang('mods/simple_audio_player_lang'),
'U_SIMPLE_AUDIO_PLAYER_MOD_LINK' => append_sid("{$phpbb_root_path}audioplayer.$phpEx"),
'U_SIMPLE_AUDIO_PLAYER_MOD_INFO' => 'http://www.thebx.net/info/_business_phpbb.php',
'U_SIMPLE_AUDIO_PLAYER_MOD_FMP_INFO' => 'http://www.flashmp3player.org/',
'U_SIMPLE_AUDIO_PLAYER_MOD_WMP_INFO' => 'http://www.websitemusicplayer.com/',
// SIMPLE AUDIO PLAYER MOD END
Code: Select all
'U_SIMPLE_AUDIO_PLAYER_MOD_LINK2' => append_sid("{$phpbb_root_path}audioplayer2.$phpEx"),
Your is working just fine here for me. I dont get this. lolmuggins wrote:Sorry, it's here. Log in as tester, password test123. I haven't installed the new version yet...
Did you update anything else, like php? Do you self-host, or do you use a provider? Can you see the system logs, or at least all the Apache logs?
You're right.... Thanks! I updated the download.Hippie459MN wrote:Should I uninstall the original first or just add/replace the files?keith10456 wrote:@ Hippie459MN - The 2nd player can be found in the contrib folder of the download.
EDIT: I got it working but I found an error in your update xml file. In the original install file you have this for the includes/functions.phpAnd in the update file you only have:Code: Select all
// SIMPLE AUDIO PLAYER MOD BEGIN $user->add_lang('mods/simple_audio_player_lang'), 'U_SIMPLE_AUDIO_PLAYER_MOD_LINK' => append_sid("{$phpbb_root_path}audioplayer.$phpEx"), 'U_SIMPLE_AUDIO_PLAYER_MOD_LINK2' => append_sid("{$phpbb_root_path}audioplayer2.$phpEx"), 'U_SIMPLE_AUDIO_PLAYER_MOD_INFO' => 'http://www.thebx.net/info/_business_phpbb.php', 'U_SIMPLE_AUDIO_PLAYER_MOD_FMP_INFO' => 'http://www.flashmp3player.org/', 'U_SIMPLE_AUDIO_PLAYER_MOD_WMP_INFO' => 'http://www.websitemusicplayer.com/', // SIMPLE AUDIO PLAYER MOD END
Leaving out this from the update file in the contrib folder.Code: Select all
// SIMPLE AUDIO PLAYER MOD BEGIN $user->add_lang('mods/simple_audio_player_lang'), 'U_SIMPLE_AUDIO_PLAYER_MOD_LINK' => append_sid("{$phpbb_root_path}audioplayer.$phpEx"), 'U_SIMPLE_AUDIO_PLAYER_MOD_INFO' => 'http://www.thebx.net/info/_business_phpbb.php', 'U_SIMPLE_AUDIO_PLAYER_MOD_FMP_INFO' => 'http://www.flashmp3player.org/', 'U_SIMPLE_AUDIO_PLAYER_MOD_WMP_INFO' => 'http://www.websitemusicplayer.com/', // SIMPLE AUDIO PLAYER MOD END
Just thought I would point that out for anyone updating and installing the additional player as I couldnt get it to work and then noticed I was missing that line.Code: Select all
'U_SIMPLE_AUDIO_PLAYER_MOD_LINK2' => append_sid("{$phpbb_root_path}audioplayer2.$phpEx"),