Reply to thread

Ahh that was a mistake on my end. I accidentally used a PHP 5.4 syntax. In library/XenES/Model/Elasticsearch.php, you can fix it by changing:

[code]$mappings = [];[/code]

to:

[code]$mappings = array();[/code]


I'd strongly recommend that you upgrade your PHP version if possible though.


Back
Top Bottom