Re: Simultaneous GET and POST data

2003-02-11 Thread Serguei Trouchelle
Stathy G. Touloumis wrote: Has anyone experienced issues with retrieving data when POSTed by a form whith an action parameter that has a query string attached to it? On rare occasion it seems that the posted data is not available. Do you use CGI.pm? In versions from 2.xx (81?) up to 2.89 this

Re: Fw: Has Apache::Cookie been ported to mod_perl-2 yet?

2003-02-11 Thread Stas Bekman
Charles O. McElhose Jr. wrote: Thanks, is there any word on when this may happen? Subscribe to the apreq-dev list to stay up to date with the recent developments http://httpd.apache.org/apreq/ meanwhile use CGI::Cookie if you work with mod_perl 2.0. ___

Re: cmd_data analogous

2003-02-11 Thread Stas Bekman
Yuriy Syrota wrote: Hello. The command_rec structure in Apache has a useful field named cmd_data. Is there an analogous field in the @APACHE_MODULE_COMMANDS from mod_perl2? Yup, it's called 'data' src/modules/perl/modperl_module.c:705 /* no default if undefined */ if (!(errmsg

Re: RAW_ARGS question

2003-02-11 Thread Stas Bekman
Yuriy Syrota wrote: Hello. I want my modperl2 module to process RAW_ARGS configuration directives like this. AxAddProcessor text/xsl /styles/webpage_screen.xsl AxAddProcessor text/xsl /styles/webpage_printable.xsl There is no

Re: Registry return codes handling (was Re: Possible bug with a 206Partial Response)

2003-02-11 Thread Stas Bekman
Geoffrey Young wrote: OK, so we are not done with it. The first thing I'd like to see is to have Apache::Registry and Apache::PerlRun agree on how they handle return codes, because they aren't the same. Once this happens, the Cooker will do the same. As you have mentioned we have a problem w

Re: Registry return codes handling (was Re: Possible bug with a 206Partial Response)

2003-02-11 Thread Geoffrey Young
OK, so we are not done with it. The first thing I'd like to see is to have Apache::Registry and Apache::PerlRun agree on how they handle return codes, because they aren't the same. Once this happens, the Cooker will do the same. As you have mentioned we have a problem with relying on return s

Simultaneous GET and POST data

2003-02-11 Thread Stathy G. Touloumis
Has anyone experienced issues with retrieving data when POSTed by a form whith an action parameter that has a query string attached to it? On rare occasion it seems that the posted data is not available. Apache/1.3.22 (Unix) mod_perl/1.26 mod_ssl/2.8.5 OpenSSL/0.9.6b Mason 1.04 Template Toolki

Re: Disabling TransHandler

2003-02-11 Thread Stathy G. Touloumis
Our sysadmin was attempting to disable a TransHandler for a virtual host using a directive that he used in the past. I wasn't aware of such a directive and was further stumped when I saw it : PerlSetVar authsession false He does not remember where he got this from but it seems to work. Any i

Re: Fw: [Perl] how to static link mod_perl 2 into apache 2.0

2003-02-11 Thread Casey Songer
I'm also running a Mason based system, but I'm sticking with mod_perl-1.0 for now. From the Mason FAQ: (http://www.masonhq.com/docs/faq/#can_i_use_mason_with_mod_perl_1_) Until some time after mod_perl 2.0 is officially released, Mason will only support mod_perl 1.x, specifically 1.22+. You m

Re: Fw: Has Apache::Cookie been ported to mod_perl-2 yet?

2003-02-11 Thread Charles O. McElhose Jr.
Thanks, is there any word on when this may happen? Charles

Fw: Has Apache::Cookie been ported to mod_perl-2 yet?

2003-02-11 Thread Charles McElhose Jr.
Has Apache::Cookie been ported to mod_perl-2 yet? I tried to install the libapreq-1.1 module with mod_perl-2/apache 2 and am getting a "can't locate Apache/MyConfig.pm ..." error. Charles M.

Re: Registry return codes handling (was Re: Possible bug with a 206Partial Response)

2003-02-11 Thread Geoffrey Young
The only thing that puzzles me about this thread is that it seems to be leaning towards the position that says; If the developer just does straight out weird stuff and messes with $r->status in a cgi-script and expects it to work with Apache::Registry (which as far as I understand is a cgi emu

Re: Install on s390

2003-02-11 Thread Malcolm Beattie
Steven A. Adams writes: > Has anyone out there installed mod_perl on Linux for s390 (SuSE, RH or > Debian)? I'd be very interested in any success stories or gotchas before > I start on that journey. SLES8 comes with mod_perl-1.27-28.s390.rpm. I've just installed it on my system but I haven't tried

cmd_data analogous

2003-02-11 Thread Yuriy Syrota
Hello. The command_rec structure in Apache has a useful field named cmd_data. Is there an analogous field in the @APACHE_MODULE_COMMANDS from mod_perl2? -- Yuriy Syrota

RAW_ARGS question

2003-02-11 Thread Yuriy Syrota
Hello. I want my modperl2 module to process RAW_ARGS configuration directives like this. AxAddProcessor text/xsl /styles/webpage_screen.xsl AxAddProcessor text/xsl /styles/webpage_printable.xsl There is no example in the docum