Help with compression

Hi,

I need some help with dealing with compression. I followed this link http://www.yiiframework.com/wiki/39/, which works like a charm! Now my server is compressing everything in the responses.

However, I am also sending images from my client (iPhone) to the server through a POST. I am also compressing the data to the server. However, when I turn on the compression on the client side, things start to fall apart. The server sees the POST call, however, it does not see any of the parameters of the call. I think it is due to not understanding the compression.

I look at the traffic on a proxy, and the POST looks fine, and the data is also as expected.

What do I need to do to enable the server to be able to deal with the POST message with compression on?

Cheers,

Yenyi

What’s described in the wiki is about compressing what goes TO the client, not what goes FROM client so most probably it have nothing to do with POST problem you have.

Why would you want to compress the upload of images? I don’t see the reason