Hi,
I'm testing the mod_log_config.
I did a simple program to read stardard input. Called program.c
#include <stdio.h>
int main() {
char input[BUFSIZ];
while(fgets(input, BUFSIZ, stdin) != NULL)
printf("Value: %s\n", input);
return 0;
}
I configured httpd.conf to send information log to this program.
LogFormat "%D" common
CustomLog "|/usr/local/apache2/program" common
But When I request a page doesn't show "Value: 1234" in the prompt, for
example.
What's wrong ?? Anyone has a example ??
Thanks
Ricardo
--
View this message in context:
http://www.nabble.com/mod_log_config-tp24004505p24004505.html
Sent from the Apache HTTP Server - Users mailing list archive at Nabble.com.
---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [email protected]
" from the digest: [email protected]
For additional commands, e-mail: [email protected]