From:             mcihar at suse dot cz
Operating system: 
PHP version:      5.0.3
PHP Bug Type:     Apache2 related
Bug description:  HTTP status 200 returned on HTTP CONNECT

Description:
------------
This is basically same as bug #19113, but I didn't find way to add comment
there and I do no thing it is bogus.

Problem is that mod_php (and mod_perl as well) don't care about request
type at all, and handle all same way. If this is really intended
behaviour, it should be documented.

I feel it is a bug, solution migth be to add method check to php_handler.
It might look like:

if (r->method_number != M_GET && r->method_number != M_POST) {
    return DECLINED;
}


-- 
Edit bug report at http://bugs.php.net/?id=32218&edit=1
-- 
Try a CVS snapshot (php4):   http://bugs.php.net/fix.php?id=32218&r=trysnapshot4
Try a CVS snapshot (php5.0): 
http://bugs.php.net/fix.php?id=32218&r=trysnapshot50
Try a CVS snapshot (php5.1): 
http://bugs.php.net/fix.php?id=32218&r=trysnapshot51
Fixed in CVS:                http://bugs.php.net/fix.php?id=32218&r=fixedcvs
Fixed in release:            http://bugs.php.net/fix.php?id=32218&r=alreadyfixed
Need backtrace:              http://bugs.php.net/fix.php?id=32218&r=needtrace
Need Reproduce Script:       http://bugs.php.net/fix.php?id=32218&r=needscript
Try newer version:           http://bugs.php.net/fix.php?id=32218&r=oldversion
Not developer issue:         http://bugs.php.net/fix.php?id=32218&r=support
Expected behavior:           http://bugs.php.net/fix.php?id=32218&r=notwrong
Not enough info:             
http://bugs.php.net/fix.php?id=32218&r=notenoughinfo
Submitted twice:             
http://bugs.php.net/fix.php?id=32218&r=submittedtwice
register_globals:            http://bugs.php.net/fix.php?id=32218&r=globals
PHP 3 support discontinued:  http://bugs.php.net/fix.php?id=32218&r=php3
Daylight Savings:            http://bugs.php.net/fix.php?id=32218&r=dst
IIS Stability:               http://bugs.php.net/fix.php?id=32218&r=isapi
Install GNU Sed:             http://bugs.php.net/fix.php?id=32218&r=gnused
Floating point limitations:  http://bugs.php.net/fix.php?id=32218&r=float
No Zend Extensions:          http://bugs.php.net/fix.php?id=32218&r=nozend
MySQL Configuration Error:   http://bugs.php.net/fix.php?id=32218&r=mysqlcfg

Reply via email to