Hi,
Some strings returned by PHP functions or classes are systematically encoded in UTF-8.
In order to display them correctly in Wampmanager menus, they must be transcoded (inconv) in the character set used by Windows. To do this, you need to know the Windows Charset of the Windows running Wampserver.
Could you check if the PHP code below returns the correct Windows charset?
This would be much easier than the "real labyrinth" with Powershell that I currently use.
Thank you very much.
Some strings returned by PHP functions or classes are systematically encoded in UTF-8.
In order to display them correctly in Wampmanager menus, they must be transcoded (inconv) in the character set used by Windows. To do this, you need to know the Windows Charset of the Windows running Wampserver.
Could you check if the PHP code below returns the correct Windows charset?
$Windows_Charset = 'Windows-'.trim(strstr(setlocale(LC_CTYPE,''),'.'),'.');
This would be much easier than the "real labyrinth" with Powershell that I currently use.
Thank you very much.