Support Joomla!
Search: Advanced Search
Serving 3350 extensions to the community. Last updated on July 5.

Editor Blogs






Lost Password?
No account yet? Register

Who's Online

We have 389 guests and 30 members online
Joomla! Extensions Directory feed - RSS 0.91

Directory Support

Rules
Using this Site

Disclaimer

The extensions and reviews listed in this area have been submitted by the community and their listing does not constitute or imply endorsement, recommendation, or favouring by Joomla!/OSM.

This content is provided as a free service to our visitors, and, as such, Joomla!/OSM cannot be held liable for the accuracy of the information. Visitors wishing to verify that the information is correct should contact the parties responsible for authoring the content and/or development of the extension.


Are you seeing blanks over some extensions' compatibility, license and type field? Head over to JED forum to learn why.
r5gordini Extensions(0) | Reviews(2) | Favourites(0)
ARTIO JoomSEF
 Yes, it's good, but..., March 9, 2007
1 of 1 people find this review helpful:

ARTIO JoomSEF There are some issues - performance is the main one. I think it's overkill to always record hits for each of the urls (useful in the first instance when debugging a site, then a waste of resources).

I was finding big problems with searches - looked like it was in some kind of loop when going against com_search. But - there's no option in the config to disable it. So, I patched

components/com_sef/joomsef.php - line 492 or thereabouts, to read:
case (in_array($option, $sefConfig->skip) || $option=="com_search")

This will then explicitly skip com_search...

A bit of a quick n' dirty hack - but maybe a better one will find its way into the component?

Andrew

MamboWiki
 Not bad, but here are some suggestions..., February 18, 2007
2 of 2 people find this review helpful:

After initial install, everything seems fine. Haven't yet tested with different user permissions (editing vs viewing with public and registered users)...

I would agree with other comments about the iFrame stuff. It would be much nicer if it were better integrated in Joomla - many other components have managed this!

With the Wiki being in an iFrame, it's slightly inconvenient to link to pages in the rest of my Joomla site. All links appear in the iFrame, rather than in _top. So, I wrote this quick hack:

1) Edit joomla_root/components/com_mambowiki/includes/Linker.php
2) Find function getExternalLinkAttributes
3) Add this:

if (preg_match('/some_url_part_unique_to_my_site/i', $link)) $r .= " target=\"_top\""; else $r .= " target=\"_blank\"";

Before the line:

$r .= " title=\"{$link}\"";

4) Change some_url_part_unique_to_my_site to something which is unique to your site - let's say you ran yahoo.com, you could set it as: '/yahoo/i'

This will make all links to your site appear in _top, and links to all other external sites in _blank (new window/tab).

Andrew