I recently migrated from apache, and everything has been working fine. However, I noticed some differences with the headers. When I access a test php script in Apache I get this:
When I do the same with Litespeed:
That charset=ISO-8859-1 makes the pages display correctly. I know I can add it to the headers in my php code but is there a way in lsws?
thanks
-auz
Code:
>lynx --mime_header http://www.path/file.php
HTTP/1.1 200 OK
Date: Tue, 14 Feb 2006 06:31:39 GMT
Server: Apache/2.0.52 (Gentoo/Linux)
Content-Length: 120
Connection: close
Content-Type: text/html; charset=ISO-8859-1
Code:
>lynx --mime_header http://www.path/file.php
HTTP/1.0 200 OK
Content-type: text/html
Content-Length: 120
Server: LiteSpeed
Date: Tue, 14 Feb 2006 06:39:08 GMT
Connection: close
thanks
-auz