Re: [SM-USERS] Nginx Configuration and 404 Error

2016-01-27 Thread sah62
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

Re: [SM-USERS] Nginx Configuration and 404 Error

2016-01-27 Thread Paul Lesniewski
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

Re: [SM-USERS] Nginx Configuration and 404 Error

2016-01-27 Thread sah62
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