This should be patched in 3.3.12 https://github.com/phpbb/phpbb/pull/6588
There is pretty simple workaround as pointed out in this post.
When you get the prompt for username and password to login to the ACP before hitting the login button:
There is pretty simple workaround as pointed out in this post.
When you get the prompt for username and password to login to the ACP before hitting the login button:
- Right click on password box and select inspect or similar text depending on your browser. This will open the browsers developer console.
- In the HTML section scroll down a little and find
<input type="hidden" name="redirect" value="./../adm/index.php?sid=randomstring">
- For the value= inline find
./../adm/
and replace it with./
- The result should look like this
<input type="hidden" name="redirect" value="./index.php?sid=randomstring">
- Hit the login button on the page and you should be able to login.
- You can close the console once into the ACP.
Statistics: Posted by thecoalman — Fri Mar 08, 2024 6:21 pm