Differences between revisions 1 and 9 (spanning 8 versions)
Revision 1 as of 2005-12-15 20:48:13
Size: 370
Editor: t-indiv10-220
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 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:
[[TableOfContents]]
Line 4: Line 3:
||<tablewidth="90%" tablealign="center">'''Code:'''||
||<class="sb_code">{{{
== 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)) {
Line 8: Line 17:
|| This is on version 2.5b3
Line 10: Line 19:
=== Drap n Drop Java applet doest not work ===
version 2.5b3 on Joomla
Line 11: Line 22:

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 31:

||<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 42:
|| === Java Upload - default image name ===
here's a quick fix for providing the real name
Line 21: Line 45:
goto 'save_dnd.php' line 109 and comment it
Line 22: Line 47:
should look like this:
{{{
//if(isset($setFilename))
$name = $realName;
.......
}}}
that way you force zoom to take the real name
Line 23: Line 55:
=== 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.
Line 24: Line 60:
== Community Builder ==
Line 25: Line 62:
=== change "register to read more" link ===
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

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)