When SEF is on, I am unable to select a gallery from the Media Manager. This keeps me from uploading files from the front end.
Around line 73 in /components/com_zoom/www/admin/mediamgr.php you'll find this:
<form enctype="multipart/form-data" name="catselect" method="post" action="index<?php echo ($zoom->_isBackend) ? "2" : "";?>.php?option=com_zoom&page=mediamgr&catid=<?php echo $catid;?>&Itemid=<?php echo $Itemid;?>">
Note that this is just one long line so be careful.
Change to this:
<form enctype="multipart/form-data" name="catselect" method="post" action="<?php
//Changed by DD073006
if ($zoom->_isBackend) {
echo "index2.php?option=com_zoom&page=mediamgr&catid=$catid&Itemid=$Itemid";
}
else {
echo sefRelToAbs("index.php?option=com_zoom&page=mediamgr&catid=$catid&Itemid=$Itemid");
}
?>">
http://bugtracker.zoomfactory.org/view.php?id=578