Perl Error,How to overcome ??

bipinkdas

Verified User
Joined
Nov 23, 2006
Messages
29
Location
India
Dear List,
I do have a directadmin server running on Debian. When I trying to run exim -qff & a strange warning is appeared in the shell,but it doesnt affect any of the function of the server. Here it follows
----------------------------------------------------
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
LANGUAGE = "es_ES:es:en_GB:en",
LC_ALL = (unset),
LANG = "es_ES.UTF-8"
are supported and installed on your system.
perl: warning: Falling back to the standard locale ("C").
-----------------------------------------------------
Why this happening? Can anybody help me to fix it ?
Thanks in Advance.
 
Hi all, I have the same problem on my Debian box. The message shows in "Mail Que Manager" when I retry to send a message in the que.
Message:
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
LANGUAGE = (unset),
LC_ALL = (unset),
LANG = "en_US.UTF-8"
are supported and installed on your system.
perl: warning: Falling back to the standard locale ("C").

:confused:
 
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
LANGUAGE = "es_ES:es:en_GB:en",
LC_ALL = (unset),
LANG = "es_ES.UTF-8"
are supported and installed on your system.
perl: warning: Falling back to the standard locale ("C").
This means that your locale settings had LC_ALL set to ``En_US'' and LANG exists but has no value. Perl tried to believe you but could not. Instead, Perl gave up and fell back to the ``C'' locale, the default locale that is supposed to work no matter what. This usually means your locale settings were wrong, they mention locales your system has never heard of, or the locale installation in your system has problems (for example, some system files are broken or missing). For more info, go to: http://www.perl.com/doc/manual/html/pod/perllocale.html
 
Back
Top