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
Hi. I'm not completely sure if this is a problem with the plugin, with the general piwigo architecture or my configuration - but other plugins that alter the top menu (e.g. "Random Photo") work OK in my setup, which is:
Piwigo 12.1.0 / php 7.3.33 on Linux (arm64).
A docker container running nginx and listening with http on port 8081
A second docker container also running nginx listening on 443 / https and configured as a reverse proxy to the first one:
Almost everything works fine with this setup. The base piwigo functionality works, and I can add photos to collections by clicking on the star icon. In the plugin configuration I can delete the collections as well. However, the main "Collections" menu item and the options underneath (any existing collections / create a new collection) can't be navigated to because the URL includes port 8081
For now I've worked around this by changing my nginx configuration
Hello !!!
I encountered an issue 2 days ago that seems to be alike.
the support from my web hosting provider fixed the issue with those corrections
In the file "functions_url.inc.php" ...
if (isset($_SERVER['HTTPS']) && ((strtolower($_SERVER['HTTPS']) == 'on') or ($_SERVER['HTTPS'] == 1)) or ($_SERVER['HTTP_X_FORWARDED_PROTO'] == 'https'))
instead of
if (isset($_SERVER['HTTPS']) && ((strtolower($_SERVER['HTTPS']) == 'on') or ($_SERVER['HTTPS'] == 1)))
Hi. I'm not completely sure if this is a problem with the plugin, with the general piwigo architecture or my configuration - but other plugins that alter the top menu (e.g. "Random Photo") work OK in my setup, which is:
Piwigo 12.1.0 / php 7.3.33 on Linux (arm64).
A docker container running nginx and listening with http on port 8081
A second docker container also running nginx listening on 443 / https and configured as a reverse proxy to the first one:
My browser connects to the second container.
Almost everything works fine with this setup. The base piwigo functionality works, and I can add photos to collections by clicking on the star icon. In the plugin configuration I can delete the collections as well. However, the main "Collections" menu item and the options underneath (any existing collections / create a new collection) can't be navigated to because the URL includes port 8081
For now I've worked around this by changing my nginx configuration
and maybe that's the correct solution but I thought I should report this in case it can (and should) be fixed in the code. Thank you.
The text was updated successfully, but these errors were encountered: