Hello everybody.
This is a support forum for our Site MP3 Player 2.0 module.
If you have some questions or suggestions regarding it feel free to post them here or contact us directly.
Hello everybody.
Best Regards AntonLV - http://www.boonex.com/market/posts/AntonLV |
This is a great player, my friend. Awesome look. :) My primary concern would be users uploading mp3's that are copyrighted. That could open up pandoras box of legal issues. If the player could stream from links provided by other places, however, that would be the magic ticket! In this manner, 'My' server isn't hosting illegal MP3 files. ;) Thoughts? |
Not with this module unfortunately. It was designed only as an addon to Dolphin's Sounds module. Another potential problem is that nowadays sites that are hosting mp3s doesn't provide a direct links to their mp3 files exactly for this purpose - to avoid mp3s to be listened outside of their pages, because usually they're monetizing their projects by placing a lot of ads on their pages. Thus they're fighting with a so called "hot-linking". Best Regards AntonLV - http://www.boonex.com/market/posts/AntonLV |
How I can embed the player in index page with popup button. Bucause mostly memebers visit index page they don't go profile. so you have in your page sample. Let me know that's Senthur |
How I can embed the player in index page with popup button. Bucause mostly memebers visit index page they don't go profile. so you have in your page sample. Let me know that's Senthur If you want just copy the block from a My Account page to a homepage then run the following SQL query in your Database (using phpMyAdmin tool offered by cPanel for example):
SET @iColumn := (SELECT MAX(`Column`) FROM `sys_page_compose` WHERE `Page` = 'index'); SET @iOrder := (SELECT MIN(`Order`) FROM `sys_page_compose` WHERE `Page` = 'index' AND `Column` = @iColumn); SET @sPageWidth := (SELECT `PageWidth` FROM `sys_page_compose` WHERE `Page` = 'index' AND `Column` = @iColumn AND `Order` = @iOrder); SET @fColWidth := (SELECT `ColWidth` FROM `sys_page_compose` WHERE `Page` = 'index' AND `Column` = @iColumn AND `Order` = @iOrder); UPDATE `sys_page_compose` SET `Order` = `Order` + 1 WHERE `Page` = 'index' AND `Column` = @iColumn; INSERT INTO `sys_page_compose` (`Page`, `PageWidth`, `Desc`, `Caption`, `Column`, `Order`, `Func`, `Content`, `DesignBox`, `ColWidth`, `Visible`, `MinWidth`) VALUES ('index', @sPageWidth, 'Site MP3 Player', '_aqb_site_mp3_player_block_caption', @iColumn, 0, 'PHP', 'return BxDolService::call(''aqb_site_mp3_player'', ''get_player'', array());', 1, @fColWidth, 'memb', 260);
and then clean your site's DB cache.
Best Regards AntonLV - http://www.boonex.com/market/posts/AntonLV |
Hi, after upgrading dolphin to the latest 4.2 version and php to php7.2 the mp3 player no longer plays music. I can add files to a playlist but the music doesn't play. Any ideas how to fix this? Is it compatible with php7.2 even? Thanks.
Also I did uninstall, re-download and reinstall again with the same result. Enhance Your Onlne Experience. 4eLife.com |
Hi, after upgrading dolphin to the latest 4.2 version and php to php7.2 the mp3 player no longer plays music. I can add files to a playlist but the music doesn't play. Any ideas how to fix this? Is it compatible with php7.2 even? Thanks.
Also I did uninstall, re-download and reinstall again with the same result. Hi, This may happen because of a lack of Adobe Flash support in modern browsers. We've updated the module so now it prefers HTML5 mode for playing sounds, try it instead. You may simply replace the files, no need to completely reinstall the module. But don't forget to clean site's HTML cache. Best Regards AntonLV - http://www.boonex.com/market/posts/AntonLV |
Works now, thanks. Much appreciated AntonLV Enhance Your Onlne Experience. 4eLife.com |
You're welcome. Best Regards AntonLV - http://www.boonex.com/market/posts/AntonLV |