Image

Imagethenetimp wrote in Imagephp_dev

HTTP_RAW_POST_DATA = null even though php.ini is told to pass it... help

I'm at a loss here. I want to look at the raw http post data, but for some reason it's not coming through.

print $HTTP_RAW_POST_DATA; returns null

in the php.ini always_populate_raw_post_data = On

why doesn't it work?

[Edit:]

OK so it doesn't work because it's a multipart/form data. It doesn't work with fopen('php://input','r') either. ANy suggestions how I can view the raw http post?