You are viewing a plain text version of this content. The canonical link for it is here.
Posted to apache-bugdb@apache.org by Rainer Doerntge <do...@kiwilogic.com> on 2001/12/12 15:21:04 UTC

general/9061: After installation, Apache does no longer support long filenames

>Number:         9061
>Category:       general
>Synopsis:       After installation, Apache does no longer support long filenames
>Confidential:   no
>Severity:       non-critical
>Priority:       medium
>Responsible:    apache
>State:          open
>Quarter:        
>Keywords:       
>Date-Required:
>Class:          sw-bug
>Submitter-Id:   apache
>Arrival-Date:   Wed Dec 12 06:30:00 PST 2001
>Closed-Date:
>Last-Modified:
>Originator:     doerntge@kiwilogic.com
>Release:        any 1.3 since 1.3.19
>Organization:
apache
>Environment:
Windows NT and Windows 2000
downloaded binary package from apache.org ftp server
>Description:
After I installed Apache version 1.3.19 (or .19 or .22), Windows NT (and 2000)
(German Version) shows all filenames in 8.3 Format. Before, I used Apache
version 1.3.9, which had no such problems.
>How-To-Repeat:
Just install Apache 1.3.9 first. Then install Apache 1.3.19. Try to run a
CGI-Script from a directory that contains long filenames. Let the script echo
its full path and filename.
Example output: Apache v1.3.9:
  C:\html\Long_Directory_Name\cgi-bin\cgi.bat
Example output: Apache v1.3.19:
  C:\html\Long_D~1\cgi-bin\cgi.bat
>Fix:
No.
>Release-Note:
>Audit-Trail:
>Unformatted:
 [In order for any reply to be added to the PR database, you need]
 [to include <ap...@Apache.Org> in the Cc line and make sure the]
 [subject line starts with the report component and number, with ]
 [or without any 'Re:' prefixes (such as "general/1098:" or      ]
 ["Re: general/1098:").  If the subject doesn't match this       ]
 [pattern, your message will be misfiled and ignored.  The       ]
 ["apbugs" address is not added to the Cc line of messages from  ]
 [the database automatically because of the potential for mail   ]
 [loops.  If you do not include this Cc, your reply may be ig-   ]
 [nored unless you are responding to an explicit request from a  ]
 [developer.  Reply only with text; DO NOT SEND ATTACHMENTS!     ]
 
 


Re: general/9061: After installation, Apache does no longer support long filenames

Posted by "William A. Rowe, Jr." <wr...@covalent.net>.
From: "Rainer Doerntge" <do...@kiwilogic.com>
Sent: Wednesday, December 12, 2001 8:21 AM


> >How-To-Repeat:
> Just install Apache 1.3.9 first. Then install Apache 1.3.19. Try to run a
> CGI-Script from a directory that contains long filenames. Let the script echo
> its full path and filename.
> Example output: Apache v1.3.9:
>   C:\html\Long_Directory_Name\cgi-bin\cgi.bat
> Example output: Apache v1.3.19:
>   C:\html\Long_D~1\cgi-bin\cgi.bat
> >Fix:
> No.

Try this for your shebang line;

#!path/to/prog "%1"

to ask Apache to provide the literal name, quoted, including _spaces_.

Bill