Ticket #1520 (closed defect: wontfix)
mod_fastcgi dropping spaces in path names
| Reported by: | anonymous | Owned by: | jan |
|---|---|---|---|
| Priority: | normal | Milestone: | |
| Component: | core | Version: | 1.4.15 |
| Severity: | normal | Keywords: | |
| Cc: | Blocked By: | ||
| Need User Feedback: | no | Blocking: |
Description
2008-01-14 14:53:57: (mod_fastcgi.c.998) execve failed for: /Volumes/DataArray/me/Projects/something/public/dispatch.fcgi No such file or directory 2008-01-14 14:53:57: (mod_fastcgi.c.1024) the fastcgi-backend /Volumes/Data Array/me/Projects/something/public/dispatch.fcgi failed to start:
When looking for CWD + "/dispatch.fcgi" in this config:
fastcgi.server = (
".php" => ( (
"min-procs" => 1, "max-procs" => 1, "socket" => CWD + "/tmp/sockets/php.socket",
"bin-path" => "/usr/local/php-fcgi/bin/php-cgi -c " + CWD + "/config/php.ini",
"bin-environment" => ( "RAILS_ENV" => "development" ) ) ),
".fcgi" => ( "localhost" => (
"min-procs" => 1, "max-procs" => 1, "socket" => CWD + "/tmp/sockets/fcgi.socket", "bin-path" => CWD + "/public/dispatch.fcgi", "bin-environment" => ( "RAILS_ENV" => "development" ) ) )
)
The space in the path is dropped rather than escaped. The path is /Volumes/Data\ Array/...

