Differences between revisions 2 and 3
Revision 2 as of 2006-01-18 14:50:52
Size: 294
Editor: dyn-176134
Comment:
Revision 3 as of 2006-01-19 12:36:00
Size: 780
Editor: dyn176203
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
[[TableOfContents]]

== Components ==
Line 7: Line 11:

== Joomla ==

=== Full menu too short in the backend ===
Line 8: Line 16:

=== Live bookmarks problem (Firefox 1.6, Joomla 1.0.7) ===
 * Problem: firefox shows "live bookmarks feed failed to laod" when add the frontpage as live bookmark.
 * Reason: the links in the feed is not full url.
 * Solution: in /components/com_rss/rss.php, change line 222 {{{
$item->link = $item_link;
}}}
to {{{
$item->link = $mosConfig_live_site.$item_link;
}}}

TableOfContents

Components

Joomla

Full menu too short in the backend

  • /administrator/modules/mod_fullmenu.php, to changge the number of the items in the top level menus at the backend. Change $topLevelLimit = 19; to $topLevelLimit = 30;

Live bookmarks problem (Firefox 1.6, Joomla 1.0.7)

  • Problem: firefox shows "live bookmarks feed failed to laod" when add the frontpage as live bookmark.
  • Reason: the links in the feed is not full url.
  • Solution: in /components/com_rss/rss.php, change line 222

    $item->link             = $item_link;

to

$item->link             = $mosConfig_live_site.$item_link;

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