If anybody is having a issue where the server auto-CHMOD's the files that people upload to 600 then do this..
Open jukebox.php
Find:
Code:
$result=move_uploaded_file($_FILES['mediafile']['tmp_name'], DIR.'/'.$jukebox->url.$filename);
Add After:
Code:
chmod(DIR.'/'.$jukebox->url.$filename, 0640);
You can change the 0640 to whatever CHMOD you want but 640 works for me.
May i suggest to Cole2026 to put this fix in the post so all know, cause i am sure i ain't the only one who had this problem.