|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2002-07-06 21:49 UTC] sniper@php.net
[2002-07-07 06:43 UTC] krok at void dot ru
[2002-07-07 06:47 UTC] krok at void dot ru
[2002-07-07 06:52 UTC] derick@php.net
[2002-07-07 08:08 UTC] krok at void dot ru
[2002-07-07 12:10 UTC] sniper@php.net
[2002-08-09 23:13 UTC] carl at bl dot echidna dot id dot au
[2002-08-09 23:16 UTC] carl at bl dot echidna dot id dot au
[2002-08-22 04:50 UTC] mtx9180 at hotmail dot com
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Oct 29 01:00:01 2025 UTC |
There are wrong calls of ap_register_output_filter and ap_register_input_filter functions in the php_register_hook function. File sapi/apache2filter/sapi_apache2.c lines 567 and 568. Instead of ap_register_output_filter("PHP", php_output_filter, NULL, AP_FTYPE_RESOURCE); ap_register_input_filter("PHP", php_input_filter, NULL, AP_FTYPE_RESOURCE); you must use ap_register_output_filter("PHP", php_output_filter, AP_FTYPE_RESOURCE); ap_register_input_filter("PHP", php_input_filter, AP_FTYPE_RESOURCE); because in the apache2 api there are only three parameters in these functions.