well well, i want to thank you for your help.
SOLR index file content, when i run this query /select?q=*%3A*&fq=type%3Aattachment&wt=json&indent=true i have file content displayed.
thanks for your help.
i changed the hole solr install to perform this.
now i have an other problem ??
i have no suggestion when i try to write word in search field and i have this error in server consol:
ERROR org.apache.solr.core.SolrCore ? org.apache.solr.common.SolrException: No suggester named default was configured
let me join a part of my solrConfig.xml:
` <requestHandler name=”/spell” class=”solr.SearchHandler” startup=”lazy”>
<lst name=”defaults”>
<str name=”df”>text</str>
<!– Solr will use suggestions from both the ‘default’ spellchecker
and from the ‘wordbreak’ spellchecker and combine them.
collations (re-written queries) can include a combination of
corrections from both spellcheckers –>
<str name=”spellcheck.dictionary”>default</str>
<str name=”spellcheck.dictionary”>wordbreak</str>
<str name=”spellcheck”>on</str>
<str name=”spellcheck.extendedResults”>true</str>
<str name=”spellcheck.count”>10</str>
<str name=”spellcheck.alternativeTermCount”>5</str>
<str name=”spellcheck.maxResultsForSuggest”>5</str>
<str name=”spellcheck.collate”>true</str>
<str name=”spellcheck.collateExtendedResults”>true</str>
<str name=”spellcheck.maxCollationTries”>10</str>
<str name=”spellcheck.maxCollations”>5</str>
</lst>
<arr name=”last-components”>
<str>spellcheck</str>
</arr>
</requestHandler>
<searchComponent name=”suggest” class=”solr.SuggestComponent”>
<lst name=”suggester”>
<str name=”name”>mySuggester</str>
<str name=”lookupImpl”>FuzzyLookupFactory</str>
<str name=”dictionaryImpl”>DocumentDictionaryFactory</str>
<str name=”field”>cat</str>
<str name=”weightField”>price</str>
<str name=”suggestAnalyzerFieldType”>string</str>
</lst>
</searchComponent>
<requestHandler name=”/suggest” class=”solr.SearchHandler” startup=”lazy”>
<lst name=”defaults”>
<str name=”suggest”>true</str>
<str name=”suggest.count”>10</str>
</lst>
<arr name=”components”>
<str>suggest</str>
</arr>
</requestHandler>`