Re: Adding additional file types for indexing

2015-08-14 Thread Erik Hatcher
I opened https://issues.apache.org/jira/browse/SOLR-7929 for the issue below. — Erik Hatcher, Senior Solutions Architect http://www.lucidworks.com > On Aug 14, 2015, at 11:28 AM, Erik Hatcher wrote: > > Not sure

Re: Adding additional file types for indexing

2015-08-14 Thread Erik Hatcher
Not sure how exactly you’re trying it, so let’s talk concretely with examples here: $ bin/solr create -c tmp $ bin/post -c tmp ~/Desktop/bin_post_featured_image.png -filetypes “*" $ curl "http://localhost:8983/solr/tmp/select?q=*:*&wt=csv&fl=id"; id "/Users/erikhatcher/Desktop/bin

Re: Adding additional file types for indexing

2015-08-14 Thread coolmals
Ok. Quoting also doesnt seem to fix the png image issue. Any idea on indexing png images? -- View this message in context: http://lucene.472066.n3.nabble.com/Adding-additional-file-types-for-indexing-tp4222845p4222987.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Adding additional file types for indexing

2015-08-14 Thread Erik Hatcher
Be careful with an unquoted * - try quoting it. (I was trying to be precise in my reply by quoting it but should have called that out as a potential issue) — Erik Hatcher, Senior Solutions Architect http://www.lucidworks.com > On Aug 14, 2015, at 10:40 AM, coolm

Re: Adding additional file types for indexing

2015-08-14 Thread coolmals
Thanks for your response. I used the -Dfiletypes=* when executing post.jar but png image files alone are not getting indexed. It gives 400 error 400 1 missing content stream 400 Can you let me know if there is any seperate configuration for png images? other images like jpg seems to be ind

Re: Adding additional file types for indexing

2015-08-13 Thread Erik Hatcher
You can set the -filetypes parameter (either to post.jar or to bin/post). -filetypes [,,...] (default: xml,json,csv,pdf,doc,docx,ppt,pptx,xls,xlsx,odt,odp,ods,ott,otp,ots,rtf,htm,html,txt,log) Try -filetypes “*” to attempt indexing every file. — Erik Hatcher, Senior Solutions Architect ht