
Originally Posted by
hexcode
Hello cinus, the log server is not necessary to run a test server.
There is some hints if you want to fix it:
First the required ACP from the log server depends from the country code set in log server configs .If is set to 2 ,the log server searching for ACP 28591.There is 2 methods to fix it.First to change your windows locale for non Unicode programs to required code page.The second method is to patch the executable with your current ACP.You can check youur current ACP with following comand in Powershell:
Get-WinSystemLocale | Select-Object Name, DisplayName,
@{ n='OEMCP'; e={ $_.TextInfo.OemCodePage } },
@{ n='ACP'; e={ $_.TextInfo.AnsiCodePage } }
Required Win8 or higher.
Regards