Return-Path: Delivered-To: apmail-httpd-dev-archive@www.apache.org Received: (qmail 93855 invoked from network); 9 Sep 2009 21:27:59 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 9 Sep 2009 21:27:59 -0000 Received: (qmail 73140 invoked by uid 500); 9 Sep 2009 21:27:57 -0000 Delivered-To: apmail-httpd-dev-archive@httpd.apache.org Received: (qmail 73053 invoked by uid 500); 9 Sep 2009 21:27:57 -0000 Mailing-List: contact dev-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list dev@httpd.apache.org Received: (qmail 73036 invoked by uid 99); 9 Sep 2009 21:27:57 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 09 Sep 2009 21:27:57 +0000 X-ASF-Spam-Status: No, hits=-4.0 required=10.0 tests=RCVD_IN_DNSWL_MED,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of rainer.jung@kippdata.de designates 195.227.30.149 as permitted sender) Received: from [195.227.30.149] (HELO mailserver.kippdata.de) (195.227.30.149) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 09 Sep 2009 21:27:48 +0000 Received: from [195.227.30.209] (notebook-rj [195.227.30.209]) by mailserver.kippdata.de (8.13.5/8.13.5) with ESMTP id n89LRPWe007455; Wed, 9 Sep 2009 23:27:26 +0200 (CEST) Message-ID: <4AA81DB7.5070408@kippdata.de> Date: Wed, 09 Sep 2009 23:27:19 +0200 From: Rainer Jung User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; de; rv:1.9.1.1) Gecko/20090715 Thunderbird/3.0b3 MIME-Version: 1.0 To: dev@httpd.apache.org CC: testers@httpd.apache.org Subject: Re: [VOTE] release httpd mod_fcgid-2.3.1? References: <4AA6ED6A.2040207@rowe-clan.net> In-Reply-To: <4AA6ED6A.2040207@rowe-clan.net> Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org On 09.09.2009 01:48, William A. Rowe, Jr. wrote: > mod_fcgid freinds; > > Please fetch up the newly minted mod_fcgid-2.3.1.tar.gz (or bz2) > or the win32 suitable package mod_fcgid-2.3.1-crlf.zip from: > > http://httpd.apache.org/dev/dist/mod_fcgid/ > > review, take it for a spin, and cast your choice > > [ ] -1 for any release of 2.3.1 (regressed from 2.3.0?) > [X] +1 to release as 2.3.1-beta > [ ] +1 to release as 2.3.1-GA > Note no configuration updates occur yet on make install. Not sure what our > 'example' aught to look like, yet. Note no documentation was donated, so > there is a reference to all of the directives taken from the cmd_rec array, > but this needs attention from fans to fill in the text and correct a few > more typos. Tested against httpd 2.2.x on Solaris 8. Signing good, hash files are in a format at least my md5sum and sha1sum do not understand how to check. configure runs fine. Some minor warnings during make (all Solaris-specific): fcgid_proctbl_unix.c:261: warning: format '%d' expects type 'int', but argument 7 has type 'pid_t' fcgid_proctbl_unix.c:268: warning: format '%d' expects type 'int', but argument 7 has type 'pid_t' fcgid_proctbl_unix.c:280: warning: format '%d' expects type 'int', but argument 7 has type 'pid_t' fcgid_pm_unix.c:239: warning: format '%d' expects type 'int', but argument 7 has type 'pid_t' fcgid_pm_unix.c:268: warning: format '%d' expects type 'int', but argument 7 has type 'pid_t' fcgid_proc_unix.c:229: warning: format '%d' expects type 'int', but argument 5 has type 'pid_t' fcgid_proc_unix.c:865: warning: format '%d' expects type 'int', but argument 8 has type 'pid_t' Tested with a simple echo server using ab and a few thousand requests. Looks reliable. I think it's still beta, because the docs are not enough to get one started. Especially the description for FCGIWrapper is strange: - I wasn't able to use it without the optional (?) second param: In file fcgid_conf.c: 762 const char *set_wrapper_config(cmd_parms * cmd, void *dirconfig, 763 const char *wrapperpath, 764 const char *extension) 765 { ... 775 /* Sanity check */ 776 if (wrapperpath == NULL || extension == NULL -----------------------------------^^^^^^^^^^^^^^^^^ 777 || *extension != '.' || *(extension + 1) == '\0' 778 ... 779 return "Invalid wrapper file extension"; although it is declared as AP_INIT_TAKE12("FCGIWrapper", set_wrapper_config, NULL, RSRC_CONF | ACCESS_CONF | OR_FILEINFO, "The CGI wrapper setting"), - the needed "extension" is completely undocumented - the path of wrapperpath is not resolved relative to the server root Regards, Rainer