I'm attempting to diagnose a specific failing test case in a legacy X-Cart installation, and determining program flow from reading the PHP source is non-trivial. I need to be able to see what redirects occur and when, ideally in a sequential log, IE:

[timestamp] domain.com/cart.php?mode=checkout [timestamp] paypal.com/magic?afoot&this=sorcery [timestamp] domain.com/cart.php?mode=soulcrushingdespair

I've Googled to no avail. If anyone knows how to log redirects in this way, or even similar ways, I would be appreciative.

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

Install Live HTTP Headers, which is an add-on you can download the usual way.

link|improve this answer
Wow, can't believe I didn't find this. Thanks a bunch. – sudowned Aug 2 '11 at 15:24
feedback

Firebug also does a great job of this.

link|improve this answer
Firebug wasn't catching the redirects at the time. I suspect it's a versioning-related bug, because it's working in Firebug now without issues. Fortunately, I did manage to get the data needed to apply my fixes from Pyroscope back in August. :) – sudowned Mar 28 at 0:52
It was more to help others facing the same problem. Better late than never as they say :) – lunched-dan Mar 30 at 9:40
feedback

Your Answer

 
or
required, but never shown

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