RE: mod perl and apache with ssl and openssl

2002-09-25 Thread FFabrizio
Can anyone advise me on how to build apache server with ssl and openssl and using mod perl. It's right there in the user's guide. http://perl.apache.org/docs/1.0/guide/install.html#mod_perl_and_mod_ssl___op enssl_ -Fran

Easy internal redirect question

2002-10-02 Thread FFabrizio
I call a page, /my/script1?task=foo which does some things and then needs to redirect to /my/script2?task=bar. However, putting $r-internal_redirect('/my/script2?task=bar'); doesn't seem to work as script2 is seeing task=foo rather than task=bar. Looks like the internal_redirect is also

RE: Easy internal redirect question

2002-10-02 Thread FFabrizio
I've got a bit of a better grasp on the problem nowI think it's an interaction with POST data... I have a form in foo.html form action=/rms/admin method=post input type=hidden name=task value=process_config ...other form fields... /form I submit this form, and in /rms/admin, it gets

RE: Easy internal redirect question

2002-10-03 Thread FFabrizio
After further review, the problem was CGI.pm. CGI.pm doesn't appear to get 'reset' on an internal_redirect (I'm not familiar with CGI's support for mod_perl, so maybe this should have been obvious!) so it was still holding the old parameter values. A quick install of Apache::Request and a

AuthCookie Frames

2002-10-30 Thread FFabrizio
I'm having a slight problem using AuthCookie in our app because our app (unfortunately) is a frames-based interface. To summarize the problem and efforts I've made to date, my goal is to be able to display a message on the login page telling them why they are seeing the login page. Options are:

partial page display

2002-11-26 Thread FFabrizio
I would like to have some of the page display while the rest of the data for the page is still being retrieved (i.e. a Please wait, this operation takes several seconds... kind of message). I thought (perhaps naively) that a print Please wait.\n; at the beginning of my handler would

RE: partial page display

2002-11-26 Thread FFabrizio
That doesn't work for us. It seems that the browser also maintains a buffer, because if I loop the please wait message 1 times, it does show up immediately. I suspect possibly there's some massaging we can do to the header? Thanks, Fran -Original Message- From: Issac Goldstand

RE: partial page display

2002-11-26 Thread FFabrizio
Thanks, finally found the right combination... { local $| = 1; $r-content_type('text/html'); $r-send_http_header; print Testing...\n; } -Fran -Original Message- From: Issac Goldstand [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November 26, 2002 4:28 PM To: [EMAIL

RE: Double execution of PerlRequire statement

2002-12-18 Thread FFabrizio
Though I have not encountered this problem personally, it's been discussed here a few times before, and a google search of PerlRequire running twice turned up a page full of promising leads, so I suggest peeking at the archives and google. -Fran -Original Message- From: Andreas Rieke

RE: OSCON ideas

2003-01-08 Thread FFabrizio
1) Database Objects in Perl This talk would focus on the database mapping options for Perl, including modules like Tangram, Class::DBI, SPOPS, etc. It would examine the differences in features, ease of use, and performance and include a set of hand-coded classes using straight DBI for

RE: OSCON ideas

2003-01-09 Thread FFabrizio
I suspect that there are actually quite a few people on this list that would _love_ to do mod_perl full time. open up to telecommuting and I suspect you would soon find yourself fully staffed. Definitely. Put me in this category. I'm faced with having to relocate at some point in

RE: OSCON ideas

2003-01-09 Thread FFabrizio
I wonder if telecommuting plus occasional travel for face-to-face would sell better than pure telecommuting. Is this done very often in telecommute situations? This is exactly what I hope to propose if the need arises in my situation. Would love to hear from others who have had success

RE: development techniques

2003-01-09 Thread FFabrizio
Do you develop with an xterm tailing the logs, an emacs window (or other editor) to edit the script and/or the packages (and on some occassions httpd.conf), and a web browser (on an alternate virtual desktop)? Bingo. :-) Do you pepper code with : print option: . $option{$foo . br

Anyone ever have Apache::Session::File files getting corrupted?

2003-01-09 Thread FFabrizio
This is going to be a somewhat preliminary feeler post because we are not yet able to fully describe or recreate the bug we're seeing, but I'm hoping some of you have seen something similar. We use Apache::Session::File as the storage module for our Apache::Session sessions. I have written an

RE: Browser doesn't stop loading a page

2003-02-26 Thread FFabrizio
We had this same problem a while back. One of our developers pecked at it for a couple of weeks off and on, and in our case it turned out to be Javascript. We had some links to the pages that would spin infinitely that looked like: a href=javscript:Foo();Link/a we changed them to this: a

RE: Serving two pages consecutively

2003-03-05 Thread FFabrizio
IIRC, we just had a thread on this a week or two back. We discussed a couple of solutions Randal had turned into columns in addition to some other suggestions. Maybe peek through the archives? The thread title I believe was 'Please wait Handler' but talked about ways to serve the data

RE: Basic Auth logout

2003-03-07 Thread FFabrizio
The only way to expire a basic auth login is to close all instances of the browser. This is not a mod_perl limitation; it's just the way basic auth works. It's pretty easy to spin a mod_perl authentication handler to take the place of basic auth, though. There's some recipes in the cookbook.

RE: templating system opinions

2003-07-21 Thread FFabrizio
In a good OO system with objects representing the data model, I found it exhausting to use H::T when I could just to this in TT: [% user.name %] Am I just being stupid, or are there better ways of doing these things in H::T? I'm a little late to the dance but I generally

RE: templating system opinions (axkit?)

2003-07-23 Thread FFabrizio
Change that to: !-- TMPL_VAR APPNAME_USER_FIRST_NAME -- You mean TMPL_VAR APPNAME_USER_FIRST_NAME don't you? Or did I miss the secret stealth hide-your-tags-in-html-comments feature? :-) -Fran

RE: templating system opinions (axkit?)

2003-07-23 Thread FFabrizio
You missed it: http://search.cpan.org/author/SAMTREGAR/HTML-Template-2.6/Temp late.pm#NOTES Ah. When the section begins If you're a fanatic about valid HTML it becomes more clear why I missed that. :-) Thanks, Fran