Search results

  1. R

    [Resolved] Check LiteSpeed version from PHP

    Thank You very much mistwang. Although, Your proposal not returned any output (maybe insufficient privileges), but You get me on the right track and I used following: $output = shell_exec('cat /usr/local/lsws/VERSION'); echo "<pre>$output</pre>"; LSWS version is indeed 4.0.16. I checked...
  2. R

    [Resolved] Check LiteSpeed version from PHP

    Recently I've found a bug (chunked POST support) in LiteSpeed, that was fixed in version 4.0.16. litespeedtech.com/support/forum/showthread.php?p=20259 Yesterday my hosting provider upgraded LiteSpeed server to version 4.0.16 (at least they claim to do so). But still - chunked POST requests...
  3. R

    [Resolved] Chunked HTTP/1.1 POST request support

    Mistwang - Thank You very much for Your reply. You have incredibly fast reaction time - in less than one day - You have released fixed version. :) It's the highest possible Quality of Service. Best Regards, Mateusz Maksymiuk
  4. R

    [Resolved] Chunked HTTP/1.1 POST request support

    Test scenario for Chunked HTTP/1.1 POST Sample chunked POST request: POST /test.php HTTP/1.1 User-Agent: Profile/MIDP-2.0 Configuration/CLDC-1.1 Host: 127.0.0.1 Transfer-Encoding: chunked 6 Hello_ 5 World 0 // after last '0' there are two times CRLF, so the last 5 bytes are...
  5. R

    [Resolved] Chunked HTTP/1.1 POST request support

    I've noticed that LSWS doesn't support Chunked HTTP/1.1 POST requests. Such behavior seems to be HTTP/1.1 incompatible. HTTP/1.1 RFC (see RFC 2616, section 3.6.1) states clearly: "All HTTP/1.1 applications MUST be able to receive and decode the "chunked" transfer-coding, (...)" Today...
Top