Applied ColdFusion fix from Russ. Applied encoding fix for MySQL dump.

This commit is contained in:
feodor_fitsner 2012-03-16 14:34:05 -07:00
parent 6726fc2ff7
commit cece69f704
4 changed files with 69 additions and 15 deletions

View file

@ -622,6 +622,7 @@ namespace WebsitePanel.Providers.Utils
ProcessStartInfo startInfo = new ProcessStartInfo(cmd, args);
startInfo.WindowStyle = ProcessWindowStyle.Hidden;
startInfo.RedirectStandardOutput = true;
startInfo.StandardOutputEncoding = Encoding.UTF8;
startInfo.UseShellExecute = false;
startInfo.CreateNoWindow = true;