Song upload not possible on Windows

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

	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

    Thursday, December 23 2010, 12:53 PM - #Permalink
    0
    hello

    that looks weird to me... I'm pretty sure we use DS always on our files!!!! but, in this case, you may have discovered a bug!

    usually this won't affect if the songs folder is /songs... but I guess, if yours is more complicated, that can be a problem.

    anyway, sorry about taht... good job.
    The reply is currently minimized Show
  • Accepted Answer

    Thursday, December 23 2010, 02:13 PM - #Permalink
    0
    It does affect the default installation (without changing the location of songs) - have a look in the file.
    The reply is currently minimized Show
  • Accepted Answer

    Thursday, December 23 2010, 06:10 PM - #Permalink
    0
    yes, 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!
    The reply is currently minimized Show
Your Reply