Maljonic wrote:
Hi again,
I just noticed that my glossary listed above runs very slowly when "use default handler" is chosen, but I really need the short urls.
Can you tell me if it would work better if there was a sef extention for glossary 2?
Hi, I see you already solved the problem in your site, had it also and it actually was creating new urls in the DB at each view, which brought havoc to the Glossary and slowness to my site (reason: after time it had created about +40,000 urls for the glossary component alone, some terms had over 500 urls created and it was actually the same one but with a secuential number right before ".html").
I noticed that there were a couple of errors in the extension that I downloaded,
1) the xml file has references to "sobi"
2) the spaces between terms were transformed into "+" to search for the url in de DB, which never was because when inserted in the DB the space (" ") was used, thus never picking up terms that had 2 or more words.
I started debugging everywhere and just included a line in joomsef.php (at line 570 approx.)
$string = str_replace('+', ' ', $string);
I was very worried that this 'fix' would screw some other component used but I navigated all around the site and haven't found errors yet.
I would like to know how you solved the problem if possible.
Regards