I am trying to use PHP and cURL to log in to a website (namely Craigslist). When accessing the script, I get this warning message:

Received problem 2 in the chunky parser

Searches showed that it is not a problem associated with cURL. I am unable to find the source of the problem. What may be the reason?

Thank you.

link|improve this question
Can't help myself: Put the parser on a diet. – Erik Mar 6 '10 at 9:46
@Erik that was what I was thinking first, too. There's a number of parsers and one of them is a bit on the heavy side. The error message uses that fact to identify it - much nicer than "Parser 28" – Pekka Mar 6 '10 at 9:48
feedback

2 Answers

up vote 3 down vote accepted

Update: Googling for the error message, I also find this:

The chunky-parser error message occurs when curl expects a chunked HTTP response body and then doesn't get one. Your reply sends the Transfer-Encoding: chunked header, so curl expects to see a body chunked according to RFC2616 and it doesn't get one.

Obviously, a redirect shouldn't have a response body or even the Transfer-Encoding header to begin with. You could try overriding the header, but maybe CouchDB inserts it unconditional in which case we should fix that, if you find out you can't override the Transfer-Encoding header, can you file a bug report?

I have no idea what to make out of this in the context of fetching an arbitrary page, though.

Original post:

There's a CouchDB Bug report dealing with the same issue in conjunction with multi-byte data. Craigslist seems to run in ISO-8859-1, maybe the ad (or whatever you are fetching) has UTF-8 characters in it?

link|improve this answer
I set Content-type: text/html; charset=utf-8 and it is working fine. Thank you for the suggestion. – Circuits Mar 6 '10 at 9:52
feedback

"Received problem 2 in the chunky parser" is an error message from libcurl. The specific "problem 2" refers to CHUNKE_ILLEGAL_HEX which is an internal error code identifying an illegal chunked-encoded stream.

Pretty much what Pekka's answer already said...

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.