Hallo Forum,
ich habe jetzt die solr-Suchmaschine installiert und teste gerade. Alles läuft super, habe aber nur ein Problem: Die Links zu der Detail-Seite der News in den Suchergebnissen sind falsch, sie enthalten weder die Id der NAchrichtendetail-Seite nach die Nachrichts-Id, sondern der generierte Link ist leer...
Ich benutze Typo3 4.5.35, also die mom. aktuelle Version, und Apache solr 3.0.0 frisch aus dem TER... Vielleicht liegt da der Hund begraben?
Die typolink-Konfiguration (s.u.) sieht eigentlich ganz gut aus (Kommt ja auch vom Autor der Extension).
Mir ist absolut schleierhaft, was los ist, zumal ich anscheinend der einzige bin, der dieses Problem hat. Jedenfalls finde ich nichts... Was kann das sein?
mfg
prosbaer
Dies ist das TS:
# Autovervollständigen aktivieren # Das Suchwort in den Ergebnissen hervorheben # Sortierfunktion der Ergebnisse aktivieren # Meinten Sie aktivieren # Suchgruppierung aktivieren # tt_news indexierung aktivieren # Übersetzung der Gruppierung search { faceting { # Gruppierung entfernen Link Beschriftung removeFacetLinkText = @facetText (entfernen) facets { type { label = Filtertyp renderingInstruction = CASE renderingInstruction { pages = TEXT pages.value = Pages tt_news.value = News } } } } } } // enables indexing of tt_news reocrds tt_news = 1 tt_news { fields { abstract = short author = author description = short title = title // the special SOLR_CONTENT content object cleans HTML and RTE fields content = SOLR_CONTENT content { field = bodytext } // the special SOLR_RELATION content object resolves relations category_stringM = SOLR_RELATION category_stringM { localField = category multiValue = 1 } // the special SOLR_MULTIVALUE content object allows to index multivalue fields keywords = SOLR_MULTIVALUE keywords { } // build the URL through typolink, make sure to use returnLast = url url = TEXT url { } sortAuthor_stringS = author sortTitle_stringS = title } } }