| Question 
 On my site, I noticed that filenames are maximum of 30 characters. See example below:===========
 Original Filename:
 Tech_N9ne_Presents-Stevie_Stone-Rollin_Stone-2012_[http://www.prefix-mysite.com].rar
 
 MySite.com Modified Filename:
 Tech_N9ne_Presents-S...2_[http://www.prefix-mysite.com].rar
 ===========
 
 Which file can I edit, so that I can increase character limit to maybe 40 or 50 ?
 Answer
 
 
 Please back-up your file BEFORE making changes.________________________________________________________________
 Login to your server and find this file "index.cgi".   Open that file and look for this line of code:
 $file->{sfilename}=~s/^(.{15}).+?(.{15})$/$1...$2/ if length($file->{sfilename})>30;
 
 Where 30 is the maximum size and 15 is how many characters before & after "..."
 _______________________________________________________________
 For example, if you want 40 characters, your final code should look like this
 $file->{sfilename}=~s/^(.{20}).+?(.{20})$/$1...$2/ if length($file->{sfilename})>40;
 ________________________________________________________________
 At this point, you should you should save changes and re-upload the modified file, you should be able to see your filenames change with longer characters.
 
 Having problems ?
 If you experience problems please ensure the following is correct:
 - File permission must be "755"  (this is required by CGI)
 - If you have "suexec" installed on your server, please disable it.  It is not required for this script.
 
 Need Support?
 If you're still having problems again, please re-upload the ORIGINAL copy of "index.cgi"  and contact support for more assistance.
 
 |