0
Hi There,
The component can not upload songs on Windows machines as you are using "/" instead of the constant DS in your code.
I have modified the function called guardarSong() in administrator/components/com_muscol/tables/song.php so that it gets the path right on both platforms (not tested on Linux yet).
Upload still does not work though but I will continue to upload and post any fixes here as I discover them.
You can pay me later :P
The component can not upload songs on Windows machines as you are using "/" instead of the constant DS in your code.
I have modified the function called guardarSong() in administrator/components/com_muscol/tables/song.php so that it gets the path right on both platforms (not tested on Linux yet).
Upload still does not work though but I will continue to upload and post any fixes here as I discover them.
You can pay me later :P
function guardarSong($file){
$filename = $file["name"];
//mirem l'extensio darxiu
$ext = substr($filename, strrpos($filename, '.') + 1);
$this->extension = $ext ;
$filename = JFilterOutput::stringURLSafe($this->name);
$filename = $filename . "." . $ext ;
$params = &JComponentHelper::getParams( 'com_muscol' );
$folder = trim($params->get('songspath'));
$ds = array();
$ds[] = '/';
$ds[] = '\\\';
$folder = str_replace($ds,DS,$folder);
if($folder == "") $path = DS."songs";
else $path = $folder;
if(substr($folder,0,1) != DS) $path = DS . $folder;
if(substr($path, -1) == DS) $path = substr($path, 0, -1);
//$path = ".." . $path . "/" ;
$path = JPATH_SITE . $path . DS ;
//echo $path; die();
if (file_exists($path . $filename)){
$filename = time()."_".$filename;
move_uploaded_file($file["tmp_name"], $path . $filename);
return $filename;
} else{
move_uploaded_file($file["tmp_name"], $path . $filename);
return $filename;
}
}
Responses (3)
-
Accepted Answer
-
Accepted Answer
-
Accepted Answer
0yes, I just did.
you are right, it is like this on the file!!
my mistake. I'm really surprised... because in previous versions this error wasnt there.. (we have windows users, and they could upload songs..!!) probably, doing the last package, we mized up an old version of this file.
we'll publish an upgrade to solve
sorry!
y gracias!
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 »