More info: I've discovered an issue with the value returned from the
$_SERVER['PHP_SELF'] variable. For some reason the value contains the path
to a particular file concatendated to itself, like this:
/squirrelmail/src/left_main.php/squirrelmail/src/left_main.php
This causes HTTP 404 errors when
On 1/27/16, sah62 wrote:
> More info: I've discovered an issue with the value returned from the
> $_SERVER['PHP_SELF'] variable. For some reason the value contains the path
> to a particular file concatendated to itself, like this:
>
> /squirrelmail/src/left_main.php/squirrelmail/src/left_main.php
OK, problem solved. There are a great number of nginx configuration guides
that suggest this configuration setting if you're using FastCGI:
fastcgi_param PATH_INFO $fastcgi_script_name;
Commenting out this setting fixed the problem for me. I'd like to thank Paul
Lesniewski for pointing me in the