Hi I am getting Http error 404 while indexing a xml saying problem accesing./solr/#/myproject/update Reason Not Found
Any one have any clue about this.
Thanks
If you want to insert data in your Solr you need to execute a curl command.
php5-curl
module on your computer / serverOpen a terminal and execute this :
curl yoursolrURL/update -H "Content-type:text/xml" --data-binary @yourfilewithdata.xml
curl yoursolrURL/update -H "Content-type:text/xml" --data-binary "<commit/>"
curl yoursolrURL/update -H "Content-type:text/xml" --data-binary "<optimize/>"
That's how I do it. Tell me if this helped you.