Differences between revisions 8 and 9
Revision 8 as of 2005-12-20 12:34:59
Size: 1572
Editor: dyn-176128
Comment:
Revision 9 as of 2005-12-20 12:45:09
Size: 1814
Editor: dyn-176128
Comment:
Deletions are marked like this. Additions are marked like this.
Line 55: Line 55:
== change "register to read more" link == === 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.

== Community Builder ==

=== change "register to read more" link ===

TableOfContents

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

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.

Community Builder

to use community builder registration some registered content gives a link pointing to, for read more... index.php?option=com_registration&task=register

I need it to point to index.php?option=com_comprofiler&task=registers

apparently needs to be changed in com_content.html.php

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