My Perl script works fine on my local win7 computer using Apache24 Perl 5.016003 when using the -e file exists operator to test the existence of a regular filename such as "cero.png" and accented filename such as "número.png".
However, when I upload that Perl script to my SiteGround host server running Perl 5.008008, the same script will work for a regular filename such as "cero.png", but not for any accented filename such as "número.png". Any suggestions.
Here's part of that code, testing if a filename with a png file extention exists in my directory.
$c="$dimg/$esp.$epng"; if (-e $c) { ...