--
You received this message because you are subscribed to the Google Groups "PHP Solr Client" group.
To view this discussion on the web visit https://groups.google.com/d/msg/php-solr-client/-/vFc4K5iMZpEJ.
To post to this group, send email to php-sol...@googlegroups.com.
To unsubscribe from this group, send email to php-solr-clie...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/php-solr-client?hl=en.
To post to this group, send email to php-solr-client@googlegroups.com.
To unsubscribe from this group, send email to php-solr-client+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msg/php-solr-client/-/MuYOAs4xebAJ.
To post to this group, send email to php-sol...@googlegroups.com.
To unsubscribe from this group, send email to php-solr-clie...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msg/php-solr-client/-/1MEK4BVRiikJ.
To post to this group, send email to php-sol...@googlegroups.com.
To unsubscribe from this group, send email to php-solr-clie...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msg/php-solr-client/-/lR9SgkBYjzwJ.
To post to this group, send email to php-sol...@googlegroups.com.
To unsubscribe from this group, send email to php-solr-clie...@googlegroups.com.
| store_id | string 4 |
|---|---|
| store_name | string Target Corp. |
| item_price | string |
| item_id | string |
| item_title | string |
| item_desc | string |
| store_id | string 5 |
|---|---|
| store_name | string Vons Grocery store |
| item_price | string |
| item_id | string |
| item_title | string |
| item_desc | string |
To view this discussion on the web visit https://groups.google.com/d/msg/php-solr-client/-/eP3_LS9oTdQJ.
To post to this group, send email to php-sol...@googlegroups.com.
To unsubscribe from this group, send email to php-solr-clie...@googlegroups.com.
SEVERE: java.lang.StringIndexOutOfBoundsException: String index out of range: 4
To view this discussion on the web visit https://groups.google.com/d/msg/php-solr-client/-/rzVtaZLBwrcJ.
To post to this group, send email to php-sol...@googlegroups.com.
To unsubscribe from this group, send email to php-solr-clie...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msg/php-solr-client/-/QR6ym4zps2sJ.
To post to this group, send email to php-sol...@googlegroups.com.
To unsubscribe from this group, send email to php-solr-clie...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msg/php-solr-client/-/SbHsLxQmWQYJ.
To post to this group, send email to php-sol...@googlegroups.com.
To unsubscribe from this group, send email to php-solr-clie...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msg/php-solr-client/-/54QkvSCgSH8J.
To post to this group, send email to php-sol...@googlegroups.com.
To unsubscribe from this group, send email to php-solr-clie...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msg/php-solr-client/-/JqWHfzN2X2YJ.
To post to this group, send email to php-sol...@googlegroups.com.
To unsubscribe from this group, send email to php-solr-clie...@googlegroups.com.
--
You received this message because you are subscribed to the Google Groups "PHP Solr Client" group.
To unsubscribe from this group and stop receiving emails from it, send an email to php-solr-clie...@googlegroups.com.
Visit this group at http://groups.google.com/group/php-solr-client.
For more options, visit https://groups.google.com/groups/opt_out.
exception 'Apache_Solr_HttpTransportException' with message ''0' Status: Communication Error' in /app/www/SolrPhpClient/Apache/Solr/Service.php:339
Stack trace:
#0 /app/www/SolrPhpClient/Apache/Solr/Service.php(1201): Apache_Solr_Service->_sendRawGet('http://localhos...')
#1 /app/www/solr_test.php(39): Apache_Solr_Service->search('category:12', 0, 10)
#2 {main}
I am using the CurlNoReuse transport mechanism and set it in my code as follows...
require_once(dirname(__FILE__) . '/SolrPhpClient/Apache/Solr/Service.php');
require_once(dirname(__FILE__) . '/SolrPhpClient/Apache/Solr/HttpTransport/CurlNoReuse.php');
$transportInstance = new Apache_Solr_HttpTransport_CurlNoReuse();
// create a new solr service instance - host, port, and webapp
// path (all defaults in this example)
$solr = new Apache_Solr_Service('search.dealstampede.com', 8983, '/solr/collection1/');
$solr->setHttpTransport($transportInstance);
I even echoed out the final $queryString the Service.php generates and tried it manually against my Solr Instance and it works.
I know it's got to be something simple I am doing wrong. Any thoughts?--
You received this message because you are subscribed to the Google Groups "PHP Solr Client" group.
--
You received this message because you are subscribed to the Google Groups "PHP Solr Client" group.
To unsubscribe from this group and stop receiving emails from it, send an email to php-solr-client+unsubscribe@googlegroups.com.
To post to this group, send email to php-solr-client@googlegroups.com.
--
You received this message because you are subscribed to the Google Groups "PHP Solr Client" group.
To unsubscribe from this group and stop receiving emails from it, send an email to php-solr-client+unsubscribe@googlegroups.com.
To post to this group, send email to php-solr-client@googlegroups.com.
try using the FileGetContents transport (its the default if you don't override it) rather than the CurlNoReuse on your Apache_Solr_Service instance. If that works, but curl transport won't maybe there's a misconfiguration or something missing from your php installation (around the curl module)
On Mon, Jan 6, 2014 at 8:23 PM, Jim Murphy <jmu...@dealstampede.com> wrote:
Oddly enough, this does return the desired result.
php -r 'echo file_get_contents("http://search.dealstampede.com:8983/solr/collection1/select?wt=json&json.nl=map&q=category%3A12&start=15&rows=10");'
On 1/6/14, 7:19 PM, Donovan Jimenez wrote:
php -r 'echo file_get_contents("http://search.dealstampede.com:8983/solr/collection1");'
--
You received this message because you are subscribed to the Google Groups "PHP Solr Client" group.
To unsubscribe from this group and stop receiving emails from it, send an email to php-solr-clie...@googlegroups.com.
To post to this group, send email to php-sol...@googlegroups.com.
Visit this group at http://groups.google.com/group/php-solr-client.
For more options, visit https://groups.google.com/groups/opt_out.
--
You received this message because you are subscribed to the Google Groups "PHP Solr Client" group.
To unsubscribe from this group and stop receiving emails from it, send an email to php-solr-clie...@googlegroups.com.
To post to this group, send email to php-sol...@googlegroups.com.
another thing to check is: http://us3.php.net/manual/en/filesystem.configuration.php#ini.allow-url-fopen
On Mon, Jan 6, 2014 at 8:23 PM, Jim Murphy <jmu...@dealstampede.com> wrote:
Oddly enough, this does return the desired result.
php -r 'echo file_get_contents("http://search.dealstampede.com:8983/solr/collection1/select?wt=json&json.nl=map&q=category%3A12&start=15&rows=10");'
On 1/6/14, 7:19 PM, Donovan Jimenez wrote:
php -r 'echo file_get_contents("http://search.dealstampede.com:8983/solr/collection1");'
--
You received this message because you are subscribed to the Google Groups "PHP Solr Client" group.
To unsubscribe from this group and stop receiving emails from it, send an email to php-solr-clie...@googlegroups.com.
To post to this group, send email to php-sol...@googlegroups.com.
Visit this group at http://groups.google.com/group/php-solr-client.
For more options, visit https://groups.google.com/groups/opt_out.
--
You received this message because you are subscribed to the Google Groups "PHP Solr Client" group.
To unsubscribe from this group and stop receiving emails from it, send an email to php-solr-clie...@googlegroups.com.
To post to this group, send email to php-sol...@googlegroups.com.