Welcome! Log In Create A New Profile

Advanced

Re: fastcgi server variables vs. apache

July 07, 2011 09:22AM
Dear Igor,

According to my understanding, either way PATH_INFO is set to url-encoded string, while according to CGI 1.1 specification, it should contain the url-decoded string. Which brings troubles when there are spaces in file names, for instance.

I am using nginx 1.0.4 and this still seems like an issue. Is there a way to pass url-decoded strings over to fastcgi applications?

Thank you in advance for response!

Andrejs


Igor Sysoev Wrote:
-------------------------------------------------------

> On Wed, Dec 16, 2009 at 08:40:17AM -0500, spirit
> wrote:
>
> if (in fact you can't), you can still set
> variables to do so. Example
> >
> >
> > set $script index.php;
> > set $path_info "";
> > if ($uri ~ "^(.+\.php)(.*)") {
> > set $script $1;
> > set $path_info $2;
> > }
> > fastcgi_param PATH_INFO $path_info;
> > ....
>
> It's better to use fastcgi_split_path_info:
>
> location ~ ^(.+\.php)(.*)$ {
> fastcgi_split_path_info
> ^(.+\.php)(.*)$;
> fastcgi_param SCRIPT_FILENAME
> /path/to/php$fastcgi_script_name;
> fastcgi_param PATH_INFO
> $fastcgi_path_info;
>
> or named captures:
>
> location ~
> ^(?<script_name>.+\.php)(?<path_info>.*)$ {
>
> fastcgi_param SCRIPT_FILENAME
> /path/to/php$script_name;
> fastcgi_param PATH_INFO
> $path_info;
>
>
> --
> Igor Sysoev
> http://sysoev.ru/en/
>
> _______________________________________________
> nginx mailing list
> nginx@nginx.org
> http://nginx.org/mailman/listinfo/nginx
Subject Author Posted

fastcgi server variables vs. apache

androo April 06, 2009 07:55PM

Re: fastcgi server variables vs. apache

Denis F. Latypoff April 06, 2009 10:49PM

Re: fastcgi server variables vs. apache

androo April 07, 2009 11:02PM

Re: fastcgi server variables vs. apache

My SchizoBuddy December 10, 2009 09:36AM

Re: fastcgi server variables vs. apache

Igor Sysoev December 10, 2009 09:44AM

Re: fastcgi server variables vs. apache

spirit December 16, 2009 08:40AM

Re: fastcgi server variables vs. apache

Igor Sysoev December 16, 2009 09:00AM

Re: fastcgi server variables vs. apache

locojohn July 07, 2011 09:22AM



Sorry, only registered users may post in this forum.

Click here to login

Online Users

Guests: 288
Record Number of Users: 8 on April 13, 2023
Record Number of Guests: 421 on December 02, 2018
Powered by nginx      Powered by FreeBSD      PHP Powered      Powered by MariaDB      ipv6 ready