PDA

View Full Version : invalid MIME description?


Karabaja
04-23-2009, 04:53 AM
Hello,
I've just finished installing Litespeed and switched to it from Apache to try it out.

I am having an issue with one folder and htaccess in it:

This is error I get in web console last 10 error log:

failed to add mime type: 'text/html; charset windows-1251' html, reason: invalid MIME description

This is the content of that htaccess file:
AddDefaultcharset On
AddType 'text/html; charset=windows-1251' txt
AddType 'text/html; charset=windows-1251' html


And this is the other error I get but not really sure what that is about:

[config] \: pre-mature end of line.

mistwang
04-23-2009, 08:57 AM
Litespeed does not like the charset part of the MIME type,

You can try

AddDefaultcharset charset=windows-1251
AddType text/html txt


you can ignore the other error.