-
Lychee versionmaster (15c8908) Which PHP version are you using?PHP 8.3 Detailed description of the problemWhen using the newest master-version (even after #2688 being applied), I am still experiencing problems accessing password-protected albums. Steps to reproduce the issue
Diagnostics [REQUIRED]
Browser & System [REQUIRED]Server: Client: Please confirm (incomplete submissions will not be addressed)
|
Beta Was this translation helpful? Give feedback.
Puhhh, I could solve the issue, but the problem was really bizarre:
While testing a lot of things, I realized that I had configured my nginx to use custom pages for http errors (401, 404...) instead of the generic ones. Through some interference that is completely inexplicable to me, this created the problem.
The reason this affected only the sub-folder hosting was most likely because nginx uses a different configuration set for each subdomain, so the custom pages were only set for my main domain.
In the end I could fix it by adding
fastcgi_intercept_errors off;
to my nginx/lychee.conf which disabled that behavior and voila it works now.Sorry for the inconvenience. 🙈
However, there were…