Hi Jörg,

what exactly do you mean by "it doesn't work"? Is there some kind of error
message?

In any case you will at least want to url_encode() the data you add into
that Curl url.
Generally:
- You can import data e.g. via a CSV file
- You can use the Solr PHP PECL extension (which offers a few classes for
accessing a Solr instance)

 

-----Original Message-----
From: Jörg Agatz [mailto:joerg.ag...@googlemail.com] 
Sent: Donnerstag, 14. Juli 2011 20:48
To: solr-user@lucene.apache.org
Subject: import Data via PHP

hallo users...

i have a Problem..

I have ti indexin Data via PHP.. the Information for data existing... and
the Fiels too..

<?php
$id = $_POST['id'];
$name = $_POST['name'];
$url = $_POST['url'];
$color = $_POST['color'];
$size = $_POST['size'];
ect...
?>

"fields id, name, url, color, size" are existing in schema, and it work..


But how can i send it to solr, i try it with curl.. but it dosent work

curl "
http://myserver/solr/update/extract?commit=true&literal.id=$id&literal.name=
$name&literal.url=$url&literal.size=$size&stream.file=
"

Reply via email to