SG(request_info).path_translated = r->filename;
SG(request_info).request_uri = r->uri;
SG(request_info).request_method = (char *)r->method;
- printf("Obtaining content type...\n");
SG(request_info).content_type = (char *) table_get(r->subprocess_env, "CONTENT_TYPE");
- printf("Obtained content type: %s\n", SG(request_info).content_type);
SG(request_info).content_length = (content_length ? atoi(content_length) : 0);
if (r->headers_in) {