
 Ricardo Vergutz - 2009-12-19 12:52:50 - 
In reply to message 1 from Cyberdisyan 
This problem is php execute by default the command shell_exec with LOCALE=C. 
I just added the following lines before shell_exec and the problem was solved:  
  
$locale = 'pt_br.UTF-8';  
setlocale(LC_ALL, $locale);  
putenv('LC_ALL='.$locale);  
and alter var $cfgDefaultCharset = 'UTF-8';
Just adapt it to your language locale.