Differences between revisions 5 and 6
Revision 5 as of 2005-12-15 23:38:18
Size: 938
Editor: t-indiv10-220
Comment:
Revision 6 as of 2005-12-16 00:13:37
Size: 1216
Editor: t-indiv10-220
Comment:
Deletions are marked like this. Additions are marked like this.
Line 39: Line 39:

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

zOOm Media Library

The lightbox and eCards functions do not work. Disable them at the backend.

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

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');

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

JunHu: JunHu/Memo/JoomlaTipsAndTricks/MambelFish (last edited 2008-10-03 20:20:08 by localhost)