0
How do I edit or make it do mp3 only? It uploads everything! I only want mp3's. Any ideas? This will upload gifs and anything. Need help to fix this.
Responses (12)
-
Accepted Answer
-
Accepted Answer
-
Accepted Answer
-
Accepted Answer
0yes.
this should be enough: open file /administrator/components/com_muscol/tables/song.php
go to line 90
add this:
$allowed_ext = array('mp3', 'MP3');
if(in_array($ext, $allowed_ext){
and then, at the end of the function, you must close that IF sentence. so you must add
} return "";
before the function ends, that is in line 126 I think.
let me know if you understand and if you succed.
oh by the way, you can add all the allowed extensions in that array I created. -
Accepted Answer
-
Accepted Answer
-
Accepted Answer
0Just tested and go this error.
Warning: implode() [function.implode]: Invalid arguments passed in /home/crazypra/public_html/administrator/components/com_muscol/tables/album.php on line 122
Warning: implode() [function.implode]: Invalid arguments passed in /home/crazypra/public_html/administrator/components/com_muscol/tables/album.php on line 123
Parse error: syntax error, unexpected '{' in /home/crazypra/public_html/administrator/components/com_muscol/tables/song.php on line 91 -
Accepted Answer
Your Reply
Please login to post a reply
You will need to be logged in to be able to post a reply. Login using the form on the right or register an account if you are new here.
Register Here »