Re: Some standart and simple tasts with MP2 HOWTO

2006-07-30 Thread Philip M. Gollucci
> http://search.cpan.org/~pgollucci/Apache-DBI-1.01/lib/Apache/DBI.pm http://search.cpan.org/dist/Apache-DBI-1.01/lib/Apache/DBI.pm In case anyone cares, now that its 1.01 and not 1.00_01 (dev). CPAN indexes this correctly. The previous cause redirects Thanks for answering Tom. ---

Re: Some standart and simple tasts with MP2 HOWTO

2006-07-30 Thread Tom Schindl
Vladimir S. Tikhonjuk schrieb: >>> Hi all! >>> >>> Our company has a backoffice project written on C++ ( Qt ) for Linux >>> by my department. But nessesity appear's to make WEB interface, with all >>> functions which our C++ program does. Now I have to choose among a lot >>> of languages and tech

Re: Help: ENV shared between requests???

2006-07-30 Thread Jonathan Vanasco
On Jul 30, 2006, at 2:56 PM, Fred Tyler wrote: On 7/30/06, Hendrik Van Belleghem <[EMAIL PROTECTED]> wrote: Using the pure mod_perl approach has always worked for me: my $ref = $req->header_in("Referer"); Oh, wow, that's actually just what I was looking for. Is that case-sensitive? I'd lik

Re: Help: ENV shared between requests???

2006-07-30 Thread Hendrik Van Belleghem
Hey, I believe pretty much any of the HTTP variables are allowed.. http://perl.apache.org/docs/1.0/api/Apache.html#_r_E_gt_header_in___header_namevalue___ also check the headers_in (with an S) so get the hash of client request headers.. Those can be fed to header_in HTH On 7/30/06, Fred T

Re: Help: ENV shared between requests???

2006-07-30 Thread Fred Tyler
On 7/30/06, Hendrik Van Belleghem <[EMAIL PROTECTED]> wrote: Using the pure mod_perl approach has always worked for me: my $ref = $req->header_in("Referer"); Oh, wow, that's actually just what I was looking for. Is that case-sensitive? I'd like to stop using %ENV altogether, but the stuff in %

Re: Help: ENV shared between requests???

2006-07-30 Thread Fred Tyler
> I was trying to use $ENV{'HTTP_REFERER'} in a certain script, and as I > reloaded the script over and over I noticed that it would constantly > be changing when the page was loaded directly (and therefore there > should not have been any HTTP_REFERER at all). In my setup at least, HTTP_REFERER

Re: Help: ENV shared between requests???

2006-07-30 Thread Hendrik Van Belleghem
Using the pure mod_perl approach has always worked for me: my $ref = $req->header_in("Referer"); IIRC, there was a recommded approach to reading %ENV.. A grep didn't turn up anything usefull, so far. If this thread is still open, I'll drop a line :) HTH Hendrik On 7/29/06, Fred Tyler <[EMAIL

Re: Help: ENV shared between requests???

2006-07-30 Thread Scott Gifford
"Fred Tyler" <[EMAIL PROTECTED]> writes: > I was trying to use $ENV{'HTTP_REFERER'} in a certain script, and as I > reloaded the script over and over I noticed that it would constantly > be changing when the page was loaded directly (and therefore there > should not have been any HTTP_REFERER at a

Re: Some standart and simple tasts with MP2 HOWTO

2006-07-30 Thread Vladimir S. Tikhonjuk
>>Hi all! >> >> Our company has a backoffice project written on C++ ( Qt ) for Linux >>by my department. But nessesity appear's to make WEB interface, with all >>functions which our C++ program does. Now I have to choose among a lot >>of languages and technologies of WEB development. >> >> I h