Here is the work-around I made to take care of it..
Upload the files, then, using a ssh/telnet connection to your server -- cd to the folder with the pictures/images. do a ls -al and you will notice they are "capped" and "lower" ..
Run this script (copy/past it into your term)
and they will all be changed to lower case.
- Code: Select all
for f in *; do
g=`expr "xxx$f" : 'xxx\(.*\)' | tr '[A-Z]' '[a-z]'`
mv "$f" "$g"
done