"A WebVTT file must consist of a WebVTT file body encoded as UTF-8 and labeled with the MIME type text/vtt." whatwg source: http://www.whatwg.org/specs/web-apps/current-work/webvtt.html

i figure i need to set .htaccess? i'm on apache/php/mysql.

link|improve this question

40% accept rate
Did you mean to ask how do you configure mime types for apache web server? [stackoverflow.com/questions/913869/… and [i18nguy.com/markup/serving.html#tip01] might be of use to you. – Norman B. Robins0n Nov 2 '11 at 17:39
feedback

1 Answer

Replace AddDefaultCharset ISO-8859-1 with AddDefaultCharset UTF-8 in the Apache.conf file.

If using .htaccess for configuration use something similar to:

<Files unicode-example-intro.html>
AddType "text/html; charset=UTF-8" html
</Files> 
link|improve this answer
where do i locate apache.conf? thanks for your help – albert Nov 7 '11 at 20:58
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.