Differences between revisions 2 and 3
Revision 2 as of 2006-01-18 16:50:00
Size: 3077
Editor: dyn-176134
Comment:
Revision 3 as of 2008-10-03 20:18:36
Size: 3077
Editor: localhost
Comment: converted to 1.6 markup
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
[[TableOfContents]] <<TableOfContents>>

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

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...

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:

<param name="menuitemid" type="text" size="10" default="0" label="Associate with menu item (itemid)"/>

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.

components / com_zoom / lib / zoom.class.php:

line 2323 and 2328: change "$this->_counter" to "$counter"

JunHu: JunHu/Memo/JoomlaTipsAndTricks/ZoomGallery (last edited 2008-10-03 20:18:36 by localhost)