Is it possible to force file uploads to lowercase?
e.g. 3800a.JPG should be 3800a.jpg
This is important because our web page templates already have the .jpg extension in the placeholders. When a member uploads it with uppercase extensions, it will not appear properly on their page.
I understand this is no fault of the Xupload, but it would be great if this can be accomplished with the script.
Thank you.
Jim
XUpload - forcing lowercase
- PilgrimX182
- Posts: 2186
- Joined: Mar 22, 2006 1:39 pm
In upload.cgi find line
and add below
Code: Select all
$filename=~s/^.*\\([^\\]*)$/$1/;
Code: Select all
$filename=lc($filename);