Additional tip: Scandinavian characters and character set conversions

If Scandinavian letters are muddled up in file names, for example, because the old server used a different character set than UTF-8 encoding, the file names can be converted with the convmv command. Common old character sets are Windows-1255, ISO-8859-1 and ISO-8859-15. Depending on what was in use on the old server, one of the following commands must be run:

<code>$ convmv -f ISO-8859-15 -t UTF-8 -r *$convmv -f windows-1255 -t UTF-8 -r *

The command is run in WordPress’s main directory /data/wordpress and due to the parameter -r, the conversion is also performed on files in all subfolders. The command above will indicate what the result of the conversion would be, but it does not perform it yet. If the conversion is not performed correctly, it could completely mess up the character set of the file names. When it is certain that the character set conversion is correct, the parameter -notest must be added to the command above, in order for the command to be run.

If the Scandinavian letters are muddled up within the text files, the character set of the file content can be converted with the recode command. The file’s current character set can be viewed with the file command, such as below:

<code><code>$ file example.php

: ISO-8859-15 text/code>

The conversion can be done, for example, by running the command recode ISO-8859-15...UTF-8*.php.

Did this answer your question? Thanks for the feedback There was a problem submitting your feedback. Please try again later.