I recently learned that the Preview Generator app can create all previews at once to improve loading speed in the NextCloud photo app. After trying it, I noticed that only the new preview images became blurry, while the old ones were fine. However, after deleting all the old photo previews, everything is now blurry. Disabling Preview Generator doesn’t fix the issue either. I’m using NextCloud Memories, and weird enough that the preview seems fine. Does anyone know how to fix this?
Support intro
- Nextcloud version :
30.0.1.2 (docker)
- Operating system and version:
Debian 12
- Apache or nginx version:
2.12.1 (docker)
- PHP version:
8.2.25
My config.php file:
<?php
$CONFIG = array (
'memcache.local' => '\\OC\\Memcache\\APCu',
'apps_paths' =>
array (
0 =>
array (
'path' => '/var/www/html/apps',
'url' => '/apps',
'writable' => false,
),
1 =>
array (
'path' => '/var/www/html/custom_apps',
'url' => '/custom_apps',
'writable' => true,
),
),
'memcache.distributed' => '\\OC\\Memcache\\Redis',
'memcache.locking' => '\\OC\\Memcache\\Redis',
'redis' =>
array (
'host' => 'redis',
'password' => '',
'port' => 6379,
),
'upgrade.disable-web' => true,
'instanceid' => 'ocxj7dyvbrq9',
'passwordsalt' => *removed*,
'secret' => *removed*,
'trusted_domains' =>
array (
0 => *removed*,
),
'datadirectory' => '/var/www/html/data',
'dbtype' => 'sqlite3',
'version' => '30.0.0.14',
'overwrite.cli.url' => *removed*,
'installed' => true,
'check_data_directory_permissions' => false,
'memories.db.triggers.fcu' => true,
'memories.exiftool' => '/var/www/html/custom_apps/memories/bin-ext/exiftool-a>
'memories.vod.path' => '/var/www/html/custom_apps/memories/bin-ext/go-vod-aar>
);