<> == zOOm Media Library == The lightbox and eCards functions do not work. Disable them at the backend. === 2.5b3: User cant upload. only Admin === All i did after trying everyones hacks is went to line number 209 on the zoom_class.php file and changed: Code: {{{ if (!isset($my->gid)) { }}} to Code: {{{ if (isset($my->gid)) { }}} This is on version 2.5b3 === 2.5b3: Drap n Drop Java applet doest not work === version 2.5b3 on Joomla change {{{ if($zoom->_mambotype == 2) { require_once($mosConfig_absolute_path.'/includes/database.php'); } else { require_once($mosConfig_absolute_path.'/classes/database.php'); } }}} to {{{ /* if($zoom->_mambotype == 2) { require_once($mosConfig_absolute_path.'/includes/database.php'); } else { require_once($mosConfig_absolute_path.'/classes/database.php'); } */ require_once($mosConfig_absolute_path.'/includes/database.php'); }}} === 2.5b3: Java Upload - default image name === here's a quick fix for providing the real name goto 'save_dnd.php' line 109 and comment it should look like this: {{{ //if(isset($setFilename)) $name = $realName; ....... }}} that way you force zoom to take the real name === Remove zOOm Gallery copyright footer === in components / com_zoom / lib / zoom.class.php to remove footer. and components / com_zoom / www / admin / admin.php to remove credits on the management pages. === Update from 2.5beta3 to 2.5RC1 === Method number one is the recommended way to upgrade. There were no database changes since version 2.5 beta3. That makes life a lot easier, doesn't it? In other words: replace ALL the existing (and older) files in your '{joomlaroot}/components/com_zoom' and '{joomlaroot}/administrator/components/com_zoom' with the newer files from the archive. IMPORTANT: before you overwrite any files, please write your current configuration on a piece of paper. After upgrading, update your settings again. The Changelog file hasn't been updated for a while indeed...if you want to know more about the changes since the previous version, use the CVS DIFF command... === Redirect the zoom module random image links === to redirect these links to a "gallery" menu item instead of showing on the frontpage: in modules / zoom.zml add a parameter for example after line 22: {{{ }}} in modules/zoom.php after line 66 add: {{{ $menuitemid = $params->def( 'menuitemid', 000 ); if ($menuitemid == 0) { $menuitemid = $Itemid; }}} } then in zoom module configuration, set "Associate with menu item" to the itemid of the gallery menu. === 2.5RC1: multipage gallery editing/deleting in media manager: wrong key === components / com_zoom / lib / zoom.class.php: line 2323 and 2328: change "$this->_counter" to "$counter"