Roundcube Community Forum

Release Support => Pending Issues => Topic started by: Toskache on November 12, 2019, 04:33:49 AM

Title: SOLVED: ERROR 401 after update to 1.4
Post by: Toskache on November 12, 2019, 04:33:49 AM
Hi,

I updated to 1.4 and now a "ERROR 401 - Access denied!" comes (before the login screen).
The issue  remains even after a complete reinstallation under a new domain. Unfortunately, I find nothing in any logs.

If I replace the index.php with one with the following content, the "phpinfo" works fine.
Code: [Select]
<?php
phpinfo
();
?>

Then I tried to drill down, where it turns wrong by inserting
Code: [Select]
error_log("### i was here ###");
It works fine until line 50 of index.php. No debug-Info after that line:
Code: [Select]
$RCMAIL = rcmail::get_instance(0, $GLOBALS['env']);
System:  debian (stretch), PHP 7.0, FPM / FastCGI and nginx.

Would be great if someone had an idea ....
Br
 Toskache
Title: Re: ERROR 401 after update to 1.4
Post by: JohnDoh on November 12, 2019, 07:51:03 AM
could it be related to this https://github.com/roundcube/roundcubemail/issues/7010? try applying this fix and see if it helps: https://github.com/roundcube/roundcubemail/commit/29e7c16b339c5a103b5566fc0644680ff82c36ca
Title: Re: ERROR 401 after update to 1.4
Post by: Toskache on November 12, 2019, 01:41:30 PM
could it be related to this https://github.com/roundcube/roundcubemail/issues/7010? try applying this fix and see if it helps: https://github.com/roundcube/roundcubemail/commit/29e7c16b339c5a103b5566fc0644680ff82c36ca

Perfekt, that new index.php works perfekt now. Thx JohnDo