You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@httpd.apache.org by Root <ro...@mobile4smile.ru> on 2005/08/30 10:31:53 UTC

[users@httpd] apache 1.33 & chunked Transfer-Encoding forbidden error

Здравствуйте, users.

Hi all.
I have some problem with my Apache server.
When some user try open php script using mobile fone & some chat
program I get this errors on my log file:

[Mon Aug 29 18:37:39 2005] [error] [client 127.0.0.1] chunked Transfer-Encoding forbidden: /chat/index.php
[Mon Aug 29 18:40:46 2005] [error] [client 127.0.0.1] chunked Transfer-Encoding forbidden: /chat/index.php
[Mon Aug 29 19:04:55 2005] [error] [client 127.0.0.1] chunked Transfer-Encoding forbidden: /chat/index.php
[Mon Aug 29 19:16:01 2005] [error] [client 127.0.0.1] chunked Transfer-Encoding forbidden: /chat/index.php
[Mon Aug 29 21:08:17 2005] [error] [client 127.0.0.1] chunked Transfer-Encoding forbidden: /chat/index.php
[Mon Aug 29 21:18:56 2005] [error] [client 127.0.0.1] chunked Transfer-Encoding forbidden: /chat/index.php

How i can solve this problem?

-- 
С уважением,
 Root                          mailto:root@mobile4smile.ru


---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org
   "   from the digest: users-digest-unsubscribe@httpd.apache.org
For additional commands, e-mail: users-help@httpd.apache.org


Re: [users@httpd] apache 1.33 & chunked Transfer-Encoding forbidden error

Posted by Joshua Slive <js...@gmail.com>.
On 8/30/05, Root <ro...@mobile4smile.ru> wrote:
> Здравствуйте, users.
> 
> Hi all.
> I have some problem with my Apache server.
> When some user try open php script using mobile fone & some chat
> program I get this errors on my log file:
> 
> [Mon Aug 29 18:37:39 2005] [error] [client 127.0.0.1] chunked Transfer-Encoding forbidden: /chat/index.php

I'm not an expert in this area, but it is my understanding that php
explicitly rejects chunked input encoding by using the
REQUEST_CHUNKED_ERROR option when reading the POST data from apache. 
I don't think there are very many clients out there that send chunked
encoding, but mobile-phone browsers can be pretty weird.

So, you might want to take this up on a php list, but I doubt that
there is any easy solution unless you can tell the client not to send
chunked POSTs.

Joshua.