generate thumbnails
Posted: Tue Oct 14, 2025 7:07 pm
install 'Preview Generator' app in nextcloud.
append the following to the config.php
generate the thumbnails with the following command.
set a cron job nightly
append the following to the config.php
Code: Select all
'enabledPreviewProviders' =>
array (
0 => 'OC\Preview\BMP',
1 => 'OC\Preview\GIF',
2 => 'OC\Preview\JPEG',
3 => 'OC\Preview\Krita',
4 => 'OC\Preview\MarkDown',
5 => 'OC\Preview\MP3',
6 => 'OC\Preview\OpenDocument',
7 => 'OC\Preview\PNG',
8 => 'OC\Preview\TXT',
9 => 'OC\Preview\XBitmap',
10 => 'OC\Preview\Movie',
),
);
Code: Select all
root@nextcloud:/home/zemerdon# cd /var/www/html/nextcloud/
root@nextcloud:/var/www/html/nextcloud# sudo -u www-data php occ preview:generate-all