-
I recently tested the current master version (0f32f23) and tried the new placeholder feature. During my testing I came up with a question on how those placeholder images are generated for already existing photos: On the command line So for pre-existing galleries with thousands of photos you either have to click-wait-click-wait-click… to create the placeholders for all images or fiddle around on the command line with a bash loop to run the commands hundreds of times, which is both quite cumbersome. Is it really intended to be limited like this or am I missing a better way to handle the old images. If not, can those limits be raised or even removed? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
You can use the command line for a faster process: docker exec -it Lychee-Core php artisan lychee:generate_thumbs placeholder 1000 or: php artisan lychee:generate_thumbs placeholder 1000 Maybe we can consider to add a setting for those default 100 values. if you feel like less worried about your process you can even go:
If you do |
Beta Was this translation helpful? Give feedback.
You can use the command line for a faster process:
docker exec -it Lychee-Core php artisan lychee:generate_thumbs placeholder 1000
or:
Maybe we can consider to add a setting for those default 100 values.
if you feel like less worried about your process you can even go:
If you do
php artisan lychee:generate_thumbs
you will see the different options available.