- 🇨🇦Canada mparker17 UTC-4
I haven't been able to work on this in ~8 years: un-assigning myself so others can pick it up.
I get a whole bunch of notices and warnings when I try to make a search on Drupal 7.54, apachesolr-7.x-1.x
with the apachesolr_search
sub-module enabled, using Solr 5.5.4 on Jetty version 9.2.13.v20150730 on Oracle's OpenJDK; Java version 1.8.0_121, configured with the configuration in the apachesolr/solr-conf/solr-5.x
folder in apachesolr-7.x-1.x
, and PHP 5.6.30.
apachesolr
project, version 7.x-1.x-dev (or clone the project).error_reporting = E_ALL
display_errors = On
display_startup_errors = On
apachesolr
project's apachesolr/solr-conf/solr-5.x
folder. (helpful tip: https://hub.docker.com/r/mparker17/solr-apachesolr/ is pre-configured with Solr 5.5.4 on Jetty version 9.2.13.v20150730 on Oracle's OpenJDK; Java version 1.8.0_121, and the configuration files in apachesolr-7.x-1.8
, which have not been changed between 7.x-1.8 and 7.x-1.x).$SOLR_HOME
directory:
bin/solr start
bin/solr create_core -c $SOLR_CORE_NAME
bin/solr stop
/admin/modules
, enable the "Apache Solr framework" and "Apache Solr search" modules./admin/structure/types
, create a new content type. I called mine "Test"./admin/config/search/apachesolr/settings
, configure the default server to point to the Solr server and core you set up in step 3./node/add
, create some content. I made sure mine had the text Lorem ipsum
in it./admin/config/search/apachesolr
, Queue all content for reindexing, then Index all queued content./search/site
, search for a keyword in your content. I searched for "ipsum".Notice: Array to string conversion in apachesolr_search_process_response() (line 1316 of sites/all/modules/apachesolr/apachesolr_search.module).
Notice: Array to string conversion in apachesolr_search_process_response() (line 1319 of sites/all/modules/apachesolr/apachesolr_search.module).
Warning: strtotime() expects parameter 1 to be string, array given in apachesolr_search_process_response() (line 1330 of sites/all/modules/apachesolr/apachesolr_search.module).
Warning: strtotime() expects parameter 1 to be string, array given in apachesolr_search_process_response() (line 1337 of sites/all/modules/apachesolr/apachesolr_search.module).
Warning: Illegal offset type in isset or empty in apachesolr_search_process_response() (line 1362 of sites/all/modules/apachesolr/apachesolr_search.module).
Warning: strpos() expects parameter 1 to be string, array given in url_is_external() (line 2359 of includes/common.inc).
Warning: strpos() expects parameter 1 to be string, array given in url_is_external() (line 2364 of includes/common.inc).
Warning: preg_match() expects parameter 2 to be string, array given in url_is_external() (line 2368 of includes/common.inc).
Warning: strpos() expects parameter 1 to be string, array given in url() (line 2255 of includes/common.inc).
Warning: explode() expects parameter 2 to be string, array given in url() (line 2256 of includes/common.inc).
Warning: htmlspecialchars_decode() expects parameter 1 to be string, array given in apachesolr_search_process_response() (line 1370 of sites/all/modules/apachesolr/apachesolr_search.module).
Warning: Illegal offset type in isset or empty in entity_get_info() (line 7890 of includes/common.inc).
Notice: Array to string conversion in apachesolr_search_process_response() (line 1316 of sites/all/modules/apachesolr/apachesolr_search.module).
Notice: Array to string conversion in apachesolr_search_process_response() (line 1319 of sites/all/modules/apachesolr/apachesolr_search.module).
Warning: strtotime() expects parameter 1 to be string, array given in apachesolr_search_process_response() (line 1330 of sites/all/modules/apachesolr/apachesolr_search.module).
Warning: strtotime() expects parameter 1 to be string, array given in apachesolr_search_process_response() (line 1337 of sites/all/modules/apachesolr/apachesolr_search.module).
Warning: Illegal offset type in isset or empty in apachesolr_search_process_response() (line 1362 of sites/all/modules/apachesolr/apachesolr_search.module).
Warning: strpos() expects parameter 1 to be string, array given in url_is_external() (line 2359 of includes/common.inc).
Warning: strpos() expects parameter 1 to be string, array given in url_is_external() (line 2364 of includes/common.inc).
Warning: preg_match() expects parameter 2 to be string, array given in url_is_external() (line 2368 of includes/common.inc).
Warning: strpos() expects parameter 1 to be string, array given in url() (line 2255 of includes/common.inc).
Warning: explode() expects parameter 2 to be string, array given in url() (line 2256 of includes/common.inc).
Warning: htmlspecialchars_decode() expects parameter 1 to be string, array given in apachesolr_search_process_response() (line 1370 of sites/all/modules/apachesolr/apachesolr_search.module).
Warning: Illegal offset type in isset or empty in entity_get_info() (line 7890 of includes/common.inc).
Running through apachesolr_search_process_response()
in a debugger suggests that almost every property of the $doc
object is an array with the raw value at array index 0; but the code mostly assumes that every property contains the raw value directly.
I'm not certain why these messages haven't shown up before: my guess is that something changed in Solr 5.5, PHP 5.6, or Java 8. Regardless, Drupal's documentation on developing modules → , Acquia's documentation, and general PHP development best practices suggest that it is best to show all errors, warnings, notices, etc. when developing locally. I do this. When this module generates lots of error messages, error messages from my own code gets lost in the noise, so I'd like to fix these notices as much as possible.
To be determined.
To be determined.
None.
Hopefully none.
None.
Active
1.0
Code
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
I haven't been able to work on this in ~8 years: un-assigning myself so others can pick it up.