Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

File name length on Index pages 1

Status
Not open for further replies.

jimoblak

Instructor
Oct 23, 2001
3,620
US
Is it possible to define how long the displayed filename is on Apache index pages? ...you know, the page that gets displayed if you do not create an 'index.html'? I would like to display the full filename in the index. An example of what I am stuck with is shown below:

Index of /folder/subfolder

Code:
Name           Last modified       Size  Description
-------------------------------------------------------
<-Parent Directory                             -   
SHORT_NAME_1..> 17-Oct-2001 21:26   73K  
SHORT_NAME_2..> 17-Oct-2001 21:26   75K  
SHORT_NAME_3..> 17-Oct-2001 21:26   73K

Apache/2.0.44 (Win32) PHP/4.3.0 Server at localhost

- - picklefish - -
 
Jim, this is what i had to put in my http.conf file in order to read the longer filenames while looking at an indexed directory. I could not get it to be dynamic, i had to just play around until most of the long filenames showed most the characters.

notice my directory, you'll want to use yours instead.
under the index options, the hard returns are only there for viewing, please remove them!!!!

<Directory &quot;/home/ftp&quot;>
Options Indexes
IndexOrderDefault Ascending Name
IndexOptions FancyIndexing ScanHTMLTitles
IconHeight=10 IconWidth=11
SuppressDescription NameWidth=45
FoldersFirst

ServerSignature Off
</Directory>
 
The resizing of the icons was also a nice touch.

After wrestling a while with paths, I had to remove the quotes and set the directory to the default root to use this on my WinXP Apache server - - which suits me fine.

Thanks!

- - picklefish - -
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top