Differences between revisions 1 and 6 (spanning 5 versions)
Revision 1 as of 2005-12-15 20:48:13
Size: 370
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 1: Line 1:
== Re: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:
== zOOm Media Library ==
The lightbox and eCards functions do not work. Disable them at the backend.
Line 4: Line 4:
||<tablewidth="90%" tablealign="center">'''Code:'''||
||<class="sb_code">{{{
=== 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)) {
Line 8: Line 15:
|| This is on version 2.5b3
Line 10: Line 17:
=== Drap n Drop Java applet doest not work ===
version 2.5b3 on Joomla
Line 11: Line 20:

change
{{{
 if($zoom->_mambotype == 2) {
  require_once($mosConfig_absolute_path.'/includes/database.php');
 } else {
  require_once($mosConfig_absolute_path.'/classes/database.php');
 }
}}}
Line 14: Line 29:

||<tablewidth="90%" tablealign="center">'''Code:'''||
||<class="sb_code">{{{
{{{
        /*
 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');
Line 19: Line 40:
|| === Java Upload - default image name ===
here's a quick fix for providing the real name
Line 21: Line 43:
goto 'save_dnd.php' line 109 and comment it
Line 22: Line 45:


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)