Full Text Search is matching no results from my local external storage, using Nextcloud 19.0.2

NethServer Version: 7.8
Module: NextCloud

After upgrading to Nethserver 7.8 I’m unable to index files in my external storage folder however the local Nextcloud folders index fine.

I can confirm the issue. There’s a thread and a patch for the Nextcloud app already, I guess it will be released soon.

For the impatient, the patch worked:

yum -y install git
scl enable rh-php73 bash
cd /usr/share/nextcloud/apps
rm -rf fulltextsearch_elasticsearch
mkdir fulltextsearch_elasticsearch && cd fulltextsearch_elasticsearch
git clone https://github.com/nextcloud/fulltextsearch_elasticsearch.git .
git checkout v1.5.2
curl https://patch-diff.githubusercontent.com/raw/nextcloud/fulltextsearch_elasticsearch/pull/100.patch | git apply -v
php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');"
php -r "if (hash_file('sha384', 'composer-setup.php') === '8a6138e2a05a8c28539c9f0fb361159823655d7ad2deecb371b04a83966c61223adc522b0189079e3e9e277cd72b8897') { echo 'Installer verified'; } else { echo 'Installer corrupt'; unlink('composer-setup.php'); } echo PHP_EOL;"
php composer-setup.php
php -r "unlink('composer-setup.php');"
./composer.phar install
cd .. && chown -R apache:apache fulltextsearch_elasticsearch
exit
3 Likes