[ixpmanager] 500 on password reset

Moritz Frenzel denog at hackathon.de
Fri Apr 10 20:45:22 IST 2020


Hi,

turns out that, as usual, the problem is in front of the computer.

nginx wasn't passing arguments to php-fpm correctly. If someone runs
into this issue:

was:
    location / {
        index index.php index.htm index.html;
        try_files $uri $uri/ /index.php
    }

should be:
    location / {
        index index.php index.htm index.html;
        try_files $uri $uri/ /index.php$is_args$query_string;
    }

sorry for the noise

- Moritz

On Fri, Apr 10, 2020 at 9:17 PM Moritz Frenzel <denog at hackathon.de> wrote:
>
> Hi,
>
> I'm working on a fresh install of ixpmanager 5.4.1 and am facing
> issues with the password reset and user creation process.
>
> IXPManager sends a mail to the new user with the password reset link:
> https://<ixpmanager>/password/reset/<token>?username=foo
>
> And then throws a 500 with a RuntimeException "username is not
> defined." at /srv/ixpmanager/vendor/foil/foil/src/Extensions/Helpers.php:343
>
> Stacktrace: https://pastebin.com/itt60Tjw
> System: Debian 10, php7.3-fpm on nginx
>
> Let me know if you need any further information.
>
> Thanks in advance
>
> - Moritz


More information about the ixpmanager mailing list