Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Like firebug shows ajax request made by javascript is there any similar tool for windows which can show http request made through CURL from PHP while working locally on WAMP ?

Thanks.

share|improve this question

migrated from programmers.stackexchange.com Nov 7 '11 at 14:16

3 Answers

Do you want the HTTP headers?

If you have curl on windows,

curl http://example.com -D -

gives you the HTTP headers also. ( the '-' after the '-D' tell it to spit it to stdout (works on *nix, not sure about windows) , you can replace the '-' with a filename eg:

curl http://example.com -D headers.txt

)

Or you can look it up on the other side of the universe with Apache access logs (as you are working locally). I dont have Windows here, but you might have to configure it to log,

http://httpd.apache.org/docs/1.3/logs.html#accesslog

share|improve this answer
@open-source-lover , did you mean link this curl ? – pdvyas Nov 8 '11 at 14:21

Fiddler should be able to catch curl too, and it has a quite complete interface.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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