I made a standalone exe file, packed the perl file using PAR :: Packager.
The file works fine on my system, but it causes an error. if I used it on another system in which Windows xp is the OS.
The locale codeset (cp936) isn't one that perl can decode,Stopped at Encode/Locale.pm line 94
Compliation failed in require at LWP/UserAgent.pm line 1000
Please give some suggestion. thanks
Update: the files that I included in the script,
use Encode::Byte;
use strict;
use warnings;
use WWW::Mechanize;
use utf8;
source
share