Bug #1052
closedBug in mod_chunked
Description
In r1693 and before an error occured when using mod_chunked (in combination with php/fastcgi)
If the compressed output of a page reaches a specific size i guess something around >8kbyte then I got "white pages". Sometimes the page-source is already loaded (when right-klick and looking) but most times not.
If I disable mod_chunked everything works well.
server.modules = ("mod_auth",
"mod_access",
"mod_evasive",
"mod_rewrite",
- "mod_chunked",
"mod_status",
"mod_redirect",
"mod_compress",
"mod_alias",
"mod_expire",
"mod_proxy_core",
"mod_proxy_backend_fastcgi",
"mod_uploadprogress",
"mod_accesslog" )
server.event-handler = "linux-sysepoll"
server.network-backend = "linux-aio-sendfile"
-- Malte Geierhos
Updated by jakabosky about 18 years ago
- Status changed from New to Fixed
- Resolution set to invalid
mod_chunked is always loaded as the last module, don't try to manually load it. The only way to disable http chunked encoding is with:
chunked.encoding = "disable"
If you want to have mod_chunked in the modules list it needs to be the last module.
Updated by Anonymous about 18 years ago
- Status changed from Fixed to Need Feedback
- Resolution deleted (
invalid)
i got it now as the last module in my list - but the error still occurs.
i got blank pages.
-- Malte Geierhos
Updated by Anonymous about 18 years ago
Can you please post a strace of lighttpd and the error.log when this happens? I've had white pages occur before with PHP and output buffering but usually is due to a bug in PHP.
Updated by stbuehler almost 17 years ago
- Status changed from Need Feedback to Fixed
- Resolution set to fixed
The linux-aio* backends were removed.
Also available in: Atom