You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Help test new features by checking out new branches on Github
Design interface components for new features
Develop new features. Please consult with the maintainers before starting your journey
Fund a feature, either via BountySource or by directly hiring a maintainer or anybody else who is capable of developing and maintaining it
Bug reporting and contributing
Everything you need to know about bug reporting and contributing is located here.
Preparation
Here is a list of steps you might want to take before using the app
Supporting more media types
First, make sure you have installed ImageMagick and its imagick PECL extension.
Next add a few new entries to your config/config.php configuration file.
Look at the sample configuration (config.sample.php) in your config folder if you need more information about how the config file works.
That's it. You should be able to see more media types in your slideshows and galleries as soon as you've installed the app.
Improving performance
Redis for files locking
Using Redis for files locking improves performance by a factor of 10 when loading an album.
Read about it in the ownCloud Administration Manual
Assets pipelining
Make sure to enable "asset pipelining", so that all the Javascript and CSS resources can be mixed together.
This can greatly reduce the loading time of the app.
Read about it in the ownCloud Administration Manual
Now you can activate it in the apps menu. It's called Gallery
To update the app go inside you apps/gallery/* directory and type:
$ git pull --rebase
Uninstalling
Redirect gallery link shares
When disabling or uninstalling the app, all link shares created with the app will stop working.
Instead of having to resend new links to all recipients, you can setup a redirection on the server to redirect gallery-style links to regular public links. This means that people with the original link will get redirected to the regular file view instead of getting a 404 page.
For this, edit your .htaccess file in the ownCloud root folder and add a new rewrite rule among the existing ones or with a new block at the bottom of the file:
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteRule ^/apps/gallery/s/(.*)$ /s/$1 [L,R=301]
</IfModule>
List of patches
None so far
About
🌅 Gallery app for ownCloud, which includes previews for all supported media files