Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Configure Solr Breadcrumbs

...

The last option only works when Islandora is installed with Mulgara as triple store.

Solr Breadcrumbs Configuration

You may configure the way Solr generates and displays breadcrumbs in Administration » Islandora » Solr Index » Solr Breadcrumbs (admin/islandora/search/islandora_solr/breadcrumbs).

The Solr Parent Fields specifies the Solr fields in order of descending priority that should used to determine the precedent breadcrumb(s). The suggested and default behavior of Solr breadcrumbs is to use the relationships isMemberOfCollection and isMemberOf to determine the parent (precedent) breadcrumb(s). Each field is checked in descending order from the top until a result is returned.

Image Added



FAQ

Q. Why are some dates not rendered correctly?

...

A. The Apache Solr PHP Client that we use does not support https connections to Solr. ISLANDORA-646 documents this issue, but it will not be fixed.. 

QWhy do I get no results for a search for a PID in Advanced Search?

A. With earlier versions of Solr you had to escape the colon in searches for PIDs, but Islandora now supports Solr 4.10 and recommends config files that enable searching full PIDs.

Q. Can I use Solr search results when setting up 'Page specific visibility settings' for blocks?

A. Due to URL escape characters in solr Solr searches, Drupal does not respect 'Page specific visibility settings' for blocks. You will have to manually un-escape the URL when configuring where your blocks are placed. This example (which involves patching Drupal core) may help.


Code Block
example: 'islandora/solr/search/%2A%3A%2A/atm_type_s%253A%2522Compositores%2522'

using: 'islandora/solr/search/*' will display (or remove) a block on every page that path is valid on

using: 'islandora/solr/search/%2A%3A%2A/atm_type_s%253A%2522Compositores%2522/*' will never display, even if this path is valid

...