Ok. Then try to change in
plugins/content/commedia/commedia.php that line:
'uploader' : '".$mosConfig_live_site."/index.php?option=com_commedia&format=raw&task=upload&folder=".$folder."',
to
'uploader' : '".$mosConfig_live_site."/index.php?option=com_commedia&format=raw&task=upload&folder=".$folder."&uid=".$uid."',
And in
file.php in UploadFile() function put above that line:
$path = JPATH_SITE.DS.$_REQUEST['folder'];
the next line:
if (array_key_exists("uid", $_REQUEST) && is_numeric($_REQUEST['uid'])) $uid = $_REQUEST['uid'];
else $uid = 0;
Hope it will help You.