--- parser3/src/targets/apache/mod_parser3.c 2015/10/26 01:21:59 1.18 +++ parser3/src/targets/apache/mod_parser3.c 2021/01/20 16:48:34 1.22 @@ -1,7 +1,7 @@ /** @file Parser: apache 1.3 and 2.2 module - Copyright (c) 2001-2015 Art. Lebedev Studio (http://www.artlebedev.com) + Copyright (c) 2001-2020 Art. Lebedev Studio (http://www.artlebedev.com) Author: Alexandr Petrosian (http://paf.design.ru) */ @@ -15,7 +15,7 @@ #include "pa_httpd.h" -volatile const char * IDENT_MOD_PARSER3_C="$Id: mod_parser3.c,v 1.18 2015/10/26 01:21:59 moko Exp $" IDENT_PA_HTTPD_H; +volatile const char * IDENT_MOD_PARSER3_C="$Id: mod_parser3.c,v 1.22 2021/01/20 16:48:34 moko Exp $" IDENT_PA_HTTPD_H; #define PARSER3_HANDLER "parser3-handler" @@ -79,7 +79,7 @@ static int parser_handler(request_rec *r return DECLINED; if(is_threaded){ - const char *message="Parser3 module requires apache2-mpm-prefork"; + const char *message="Parser3 module requires 'a2enmod mpm_prefork'"; r->status=HTTP_INTERNAL_SERVER_ERROR; r->content_type="text/plain"; ap_rwrite(message, strlen(message), r);