-
Notifications
You must be signed in to change notification settings - Fork 11
Home
Arnaud edited this page Aug 3, 2023
·
6 revisions
Welcome to the piwigo-ShareAlbum wiki!
ShareAlbum is a Piwigo plugin
- Internal name: ShareAlbum (directory name in plugins/)
- Plugin page: http://piwigo.org/ext/extension_view.php?eid=865
The Share Album plugin is intended to be very easy to use and provide a quick way to generate a shared URL link. Use the new Share function available on private albums (for users with at least an administrator role). From this function, you can :
- Create a new share
- Copy share URL to clipboad
- Regenerate the unique URL
- Cancel an active share
- The SharedAlbum configuration page does not show any album to share
The albums that can be shared through the plugin are the Private ones, which contains images within this album. Please check that you have "Private Albums" in the Piwigo Administration aera, section Albums > Properties
- When running behind a reverse proxy, links are still using http:// instead of https:// (for a NGINX reverse proxy server) Add the following to the config file:
proxy_set_header X-Forwarded-Host $http_host; proxy_set_header X-Forwarded-Proto https;
Then add the following to local/config/config.inc.php:
if ($_SERVER['HTTP_X_FORWARDED_PROTO'] == 'https'){ $_SERVER['HTTPS']='on'; }