Re: Speaking at SCALE 5x

2007-02-07 Thread Perrin Harkins
On 2/6/07, Frank Wiles <[EMAIL PROTECTED]> wrote: Just wanted to let everyone know, if you're going to SCALE ( Southern California Linux Expo ) next weekend or live in the LA area I'll be giving an introductory talk on mod_perl 2 on Sunday afternoon. Cool. Let us know how it goes, Fra

Re: Speaking at SCALE 5x

2007-02-07 Thread Juan Jose Natera
Just wanted to let everyone know, if you're going to SCALE ( Southern California Linux Expo ) next weekend or live in the LA area I'll be giving an introductory talk on mod_perl 2 on Sunday afternoon. Not that any of you really need an introduction to it! :) Also, LA.pm will have a

Unaltered cgi upload

2007-02-07 Thread Stephan Jennewein
Hi, I want to change a cgi script to run with mod_perl, but I have a problem with the DIE signal I used in an earlier version to clean the directory if the user presses the stop button during the upload. local $SIG{__DIE__} = \&cleanup; But this doesn't work with mod_perl2 and apache2. How can I

Re: Unaltered cgi upload

2007-02-07 Thread Dondi M. Stroma
Hi, I don't think you have to worry about using die or exit it all. The CGI.pm documentation says the following: "There are occasionally problems involving parsing the uploaded file. This usually happens when the user presses "Stop" before the upload is finished. In this case, CGI.pm will re

Re: MP 2.0.3 & Apache 2.2.3 -> auth tests fail

2007-02-07 Thread Philippe M. Chiasson
Geoffrey Young wrote: >> Back to 2.2.4 - MP2.0.3 worked with one alteration. It seems that >> ap_get_server_version is not only depreciated, but also changed >> functionality. That is... one test fails because it calls >> get_server_version, expects "Apache 2.2.4 (Unix)" but gets "Apache >> 2.

Re: Unaltered cgi upload

2007-02-07 Thread Perrin Harkins
On 2/7/07, Stephan Jennewein <[EMAIL PROTECTED]> wrote: local $SIG{__DIE__} = \&cleanup; Make that a PerlCleanupHandler. And if something goes wrong with the upload a $cgi->redirect should send the user to another page can I use this with mod_perl and the exit() after the redirect doesn't wor