
Byron - 2014-03-20 09:44:39 -
In reply to message 1 from Cosmo Delaney
I had to play around with a few things to get it to work. First of all, $HTTP_GET_VARS has been deprecated, so use $_GET["filename"] instead.
Another problem I found, there are a lot of missing return statements. I don't know if it works with older versions of PHP that may not have required them, but with the newer versions, I guess it needs a return at the end of the functions? I'm not an expert, so I don't know for sure.
I traced down where it was failing in classAudioFile.php with some echo "DEBUG: it failed here" type statements, and put a few "return 1;" statements in where needed, and it worked.
Good luck!