internet redirection

2001-07-08 Thread Brooklyn Linux Solutions CEO
Greeting I have a programing doing interent redirect after reading a cookie and doing some authentication. I return the OK constant after the redirection, but it seems that a bunch of other calls are being made to the server. Specifically, if you use your browser to call

send_httpd_headers

2001-07-08 Thread Brooklyn Linux Solutions CEO
Is there a way to know that headers have already been sent before send headers out? Ruben

Re: internet redirection

2001-07-08 Thread Brooklyn Linux Solutions CEO
BTW No only is that internet redirectionb, but it is also INTERNAL redirection it's been a long day. Ruben Greeting I have a programing doing interent redirect after reading a cookie and doing some authentication. I return the OK constant after the redirection, but it seems

Limiting Input size

2001-07-06 Thread Brooklyn Linux Solutions CEO
Is there a way error out of an entry which might be too large in a form or a get string with $r-content or $r-args I want to prevent an attempt to overflow the memory by sending an arguement with 10 billion bytes. I can do it after. But without doing a read(), I'm wondering if these shortcuts

Re: Limiting Input size

2001-07-06 Thread Brooklyn Linux Solutions CEO
Thank You!! Can I mix and match, by doing Anything I can do about the get string? Ruben On 06 Jul 2001 02:41:30 -0400, Brooklyn Linux Solutions CEO wrote: Is there a way error out of an entry which might be too large in a form or a get string with $r-content or $r-args I want

Re: Directory Restrictions

2001-06-25 Thread Brooklyn Linux Solutions CEO
I found it, quite be accident in the Eagle Book Lost the page number, but it was in Chapter 4. ruben anybody got a handy link to point us in the right direction here? how can you have mod_perl intercept the directory listing?

Re: SSI Lost with Mod Perl?

2001-06-25 Thread Brooklyn Linux Solutions CEO
Hi Perrin I've given Filter and SSI a shot according to the perldocs. It didn't work. I stated to hhack on some of the problems, which first involved in the make install depositing them in the wrong diretory, and then they SSI needed use Apache::Filter statements added. Finally, Filter cam

Re: Directory Restrictions

2001-06-24 Thread Brooklyn Linux Solutions CEO
One thing that is not clear in my mind is the type of page which is sent back with a directory index. A directory index is of what mime type? Ruben On Sat, Jun 23, 2001 at 11:10:07PM -0400, Brooklyn Linux Solutions CEO wrote: I've been working on a mod_perl implimentation which does

Re: SSI Lost with Mod Perl?

2001-06-24 Thread Brooklyn Linux Solutions CEO
IS there a way of pre-processing and post processing a handler? Ruben Brooklyn Linux Solutions CEO wrote: I have modules controlling all the files and their access and content in the directy. I have no idea really why SSI is shut down. I never used it before. It looks like

Re: which perl?

2001-06-24 Thread Brooklyn Linux Solutions CEO
I recommend whatever stas is saying. Ruben actually yes, they appear to be in the right order: $ perl -V Characteristics of this binary (from libperl): Compile-time options: USE_LARGE_FILES Built under linux Compiled at May 23 2001 08:18:14 @INC:

Re: Directory Restrictions

2001-06-24 Thread Brooklyn Linux Solutions CEO
When you get a directory index, what Mime type is that? Ruben

Re: Directory Restrictions

2001-06-24 Thread Brooklyn Linux Solutions CEO
thanks I didn't see that in the mine.types Ruben On Sunday 24 June 2001 20:23, Brooklyn Linux Solutions CEO wrote: When you get a directory index, what Mime type is that? httpd/unix-directory Maybe it's different in windows, I don't know

Directory Restrictions

2001-06-23 Thread Brooklyn Linux Solutions CEO
Hello I've been working on a mod_perl implimentation which does the following. New users gain access to a directory, but can not get access to two directories underneath it. After logging in and receiving a cookie, they are automatically shunted to one of the two low directories. I've had

SSI Lost with Mod Perl?

2001-06-23 Thread Brooklyn Linux Solutions CEO
I've seemed to have lost my ability to use SSI whenI use the content handlers with Mod_perl. Is there anyway I can fix this? Ruben

Re: which perl?

2001-06-23 Thread Brooklyn Linux Solutions CEO
It's got to be built in. My mod_perl conf keeps looking in 5.6.0 in the @INC array even after the 5.6.1 upgrade which was more or less forced on me by cpan. It kind of ticks me off those guys who install modules on CPAN which upgrade by damn perl. NET::FTP of libnet is a big culprit of this.

Re: which perl?

2001-06-23 Thread Brooklyn Linux Solutions CEO
It's got to be built in. My mod_perl conf keeps looking in 5.6.0 in the @INC array even after the 5.6.1 upgrade I got sick of the problem and linked 5.6.1 into 5.6.0 Ruben

Re: SSI Lost with Mod Perl?

2001-06-23 Thread Brooklyn Linux Solutions CEO
Will it work by default or do I need to chain it somehow? Ruben I've seemed to have lost my ability to use SSI whenI use the content handlers with Mod_perl. Is there anyway I can fix this? Can you be more specific about what you're trying to do? You can still use mod_include

Re: which perl?

2001-06-23 Thread Brooklyn Linux Solutions CEO
use lib qw(/usr/lib/perl5/5.6.1 /usr/lib/perl5/site_perl/5.6.1); note that lib.pm takes care of adding the arch lib paths (i686-linux on my machine) and removing dups. Really I asked this question and didn't get much of an answer from folks other than they THOUGHT it was built in the