Link to home
Start Free TrialLog in
Avatar of Evan Cutler
Evan CutlerFlag for United States of America

asked on

how to view http requests at the apache server end

Greetings,
I have a standalone php page that is being called by an application.
THe URL includes GET Variables.

Unfortunately I have to troubleshoot the php page, but the application is unable to tell me what the URL+variables was that was sent.

Is there a log or somethign I can turn on in Apache, that will let me see what the URLs requested are?

Thanks
Avatar of Mazdajai
Mazdajai
Flag of United States of America image

You can change the LogLevel Directive to 'debug' in apache.conf to look at the URL being passed to Apache.

Post your Apache.conf if you are having issue.
ASKER CERTIFIED SOLUTION
Avatar of Dave Baldwin
Dave Baldwin
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
THe URL includes GET Variables.
In PHP your script should say this:

var_dump($_GET);

...that will let you visualize the GET variables.  If you have some test data samples that show what the URL will look like, please post them and I will show you how to process them.  If you don't have any test data yet, please create some so we can move forward toward a good solution, thanks.
Avatar of Evan Cutler

ASKER

Thanks, and sorry for the delay...
This got me where I wanted to go.

Thanks again.