• Resolved CunningStunt

    (@cunningstunt)


    Is it possible to refresh / purge & recreate this page?

    I managed to get everything working as the page has populated with my tracks, the only problem is since I imported all the music into SAM and started streaming I have been removing duplicate files and fixing ID3 tags, and all of the tracks i’ve removed from the playlist in SAM are appearing on the requests page.

    SAM is only showing 6170 tracks available to stream but the requests page on my website says there are 6909 available.

    I can’t see anywhere in SAM to save the data (other than save configuration) so i’m wondering if maybe I need to delete a page and let the plugin recreate it or maybe empty a table in my wordpress database.

    I tried uninstalling and reinstalling the plugin but the requests page retains the tracks i’ve removed from the system.

    https://www.sourceaddiction.com/request-a-mashup/
    Thanks

    https://www.ads-software.com/plugins/ngs-sam-integrator/

Viewing 1 replies (of 1 total)
  • Plugin Author arcain6

    (@arcain6)

    You’ll need to remove them from the sam database.

    Be sure when removing songs from sam, that you use the “delete from all” option. As it deletes all informaiton about the song from the sam database. If you need to delete the physical file as well, choose that option, and it should “theoretically” remove the song from the database as well.

    This plugin doesn’t actually store any information about the songs. It simply connects to the sam database, and uses the available information there.

    You can find the songs in the “songlist” table of the sam database.

    If you are using MySQL you can also issue commands directly to the database to delete the entries.

    In the below example replace everything in <> brackets with information

    mysql -u <USERNAME> -p <PASSWORD>
    use <SAM DATABASE NAME>;
    delete from songlist where title = '<SONG NAME>' and album = '<ALBUM NAME>';

    Here is an example i have used before:

    delete from songlist where title = 'I Am' and album = 'sinner';

    If the particular song doesn’t have an album name, you can instead use artist.. i.e.

    delete from songlist where artist = 'Drowning Pool' and title = 'I Am';

    I hope this helps.

Viewing 1 replies (of 1 total)
  • The topic ‘Refesh track data on requests page.’ is closed to new replies.