简体   繁体   中英

find a message from a curl request in apache logs

With a linux, I send a curl message like that:

curl -X POST -d "hello" http:/server_adress

the server is a Windows. I would like to find "hello" in my Apache log but I don't know how to do this.
Do you think the curl is correct ?
What do I have to put in my php file to see "hello" in my apache log ?

Your curl command is okay. Its now you to the server log(and the administrator) to check the data on the log.

So far I know the data(means post data) doesn't come to by default in the log. You need to configure it from the log setting or something like that(if it is possible).

I find the answer.

the message curl have to be like this:

curl -X POST -d "message = hello" _http://server_adress

and in the file php.

$message=$_POST["message"];

write_debug_log("$message);

It returns "hello" in the apache log

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM