Thursday 26 March 2015

Adding php UTF-8 support

When OwnCloud was first installed I got an error below in the admin section:

A configuração de caracteres no PHP não está definida para UTF-8

A configuração de caracteres para o PHP não está definida para UTF-8. Isto pode causar problemas com caracteres não-ASCII em nomes de arquivos. Nós fortemente recomendamos a troca da definição de caracteres de 'default_charset' no arquivo de configuração php.ini para 'UTF-8'.

This was easily resolved by doing the following:

1. Edit /etc/php5/apache2/php.ini

# vim /etc/php5/apache2/php.ini

2. Search for UTF-8

3. Change the line from:

;default_charset = "UTF-8"

4. To:

default_charset = "UTF-8"

5. Save the changes

6. Restart Apache2:

# /etc/init.d/apache2 restart

7. The error is now gone.




No comments:

Post a Comment