On Thu, 28 Sep 2000, Doug MacEachern wrote:
> On Tue, 29 Aug 2000, Lyle D. Brooks wrote:
>
> > This is my first time posting to this list, so forgive me
> > if this question has been asked before (I did not see it in
> > the archives or in the mod_perl guide).
> >
> > Apache::Status seems like
I figured out what it was. One of the $r->header_in() was trying to
insert an Authorize header, and I didn't notice that base64_encode()
tacks on a newline.
After Apache core got thru with it, it ended up looking like:
Authorize: Basic \n
\r\n
\r\n
which
On Sat, 30 Sep 2000 [EMAIL PROTECTED] wrote:
> I'm going to write a perl cgi which needs to determine which
> subroutine to call at runtime. And the number of choice is huge (more
> than 300 and it is growing). I know I could do a bunch of if-then-else
> but it makes the code looks very unreadable
Hi all,
I'm going to write a perl cgi which needs to determine which subroutine to
call at runtime. And the number of choice is huge (more than 300 and it is growing). I
know I could do a bunch of if-then-else but it makes the code looks very unreadable.
I've basically figured
Doug MacEachern wrote:
>
> On Thu, 28 Sep 2000, Chris Lewis wrote:
>
> > It works to proxy the HTTP to the system fine, however, POST parameters
> > seem to get mangled and/or truncated.
>
> they should get passed through by mod_proxy, provided nobody else has read
> the POST data first.
>
> >
On Sep 29, Doug MacEachern wrote:
> On Fri, 29 Sep 2000, Vsevolod Ilyushchenko wrote:
> > Yes, I know. I just want to see how far I can go with the "open".
> > Besides, according to the author of the script (it's for the analog web
> > log analyzer), using open is more secure.
>
> i've never hear
On Thu, 28 Sep 2000, B. Burke wrote:
> Once I changed how I was printing the header from the script, the socket
> persistence
> worked with PerlSendHeader Off. So I guess I solved my problem although I don't
> really
> know why.
because CGI.pm will trigger a call to $r->send_http_header, regar
On Fri, 29 Sep 2000, Vsevolod Ilyushchenko wrote:
>
> I am not sure why, but the command line Perl script with
>
> open (AAA, "|some_program");
>
> accepts input via "print AAA" AND prints the output of the program on stdout.
because C-level stdout is not hooked up to the client under m
On Thu, 28 Sep 2000, Adi wrote:
> As it turns out, the second call to My::ProxyAccessOnly is an internal
> redirect
...
> Is there a logical reason why PerlAccessHandler should be called twice, the
because internal_redirects are implemented with subrequests and
subrequests run all phases (exce
On Fri, 29 Sep 2000, Stas Bekman wrote:
> Hmm, I didn't take it out of my head, I cannot remember now when it was
> added. Was it different before and I've missed the patch?
according to changes, it's been there 1.00_02.
> Anyway, that means that I should fix the guide, to remove the note abo
On Thu, 28 Sep 2000, Chris Lewis wrote:
> It works to proxy the HTTP to the system fine, however, POST parameters
> seem to get mangled and/or truncated.
they should get passed through by mod_proxy, provided nobody else has read
the POST data first.
> When I try to reference $r->content the t
On Fri, 29 Sep 2000, Ricardo Stella wrote:
> *) Rebuild Perl with Configure -Uuselargefiles
if you do this and re-build Apache without the extra CFLAGS, that problem
will go away.
Mike,
I think many developers share a similar desire to not
have projects (that leverage free software) close down
what are really generic programming techniques,
routines, classes, protocols, etc. And further,
we'd like to contribute enhancements and documentation
based upon our work.
I'd like
Where the heck does trying to do the right thing by
GPL (or similar), in attempting to return some improved
OpenSource code to the community. Or however the license
phrases it. Shouldn't these contracts address that issue
specifically, especially when the project is _based_ on
OpenSource/GPL'd cod
Make sure you have found the right error log.
Also look for hints in the access log. Apache::ASP
itself won't error without throwing something to
the error log. If the .asp files are in question,
make sure you can request other files from your
web server so you know that's working.
--Joshua
L
Might have figured out the problem, and it might be an apache issue
dealing with largefiles:
I compiled apache cleanly as:
./configure \
"--with-layout=Apache" \
"--prefix=/usr/local/apache2" \
"--enable-module=most" \
"--enable-shared=max" \
This worked. 'apachectl configtest' did not complain
On Thu, 28 Sep 2000, Bill Moseley wrote:
> Nope. I just downloaded a fresh 1.24, and 1.3.12 and built with
ah, it happens for non-Registry handlers. patch below fixes. you can
also change your handler to:
sub handler {
my $r = shift;
$r->exit(HTTP_NOT_MODIFIED);
}
> BTW --disable-mo
It is funny that you mention AT&T. That was exactly who I was
talking about when I mentioned "Be sure they don't say you can't take your
knowledge with you". As I used to work for AT&T and they tried that.
Richard
> -Original Message-
> From: Chris Lewis [mailto:[EMAIL PROTECTE
Vladislav Safronov wrote:
> http://vlad.narod.ru/contract.html
> is it really looks like a usual thing?
Fairly usual, once read carefully and you realize that they're only
claiming inventions that relate to them/resourced by them - the rest is
disclosure, in an attempt to forestall any future p
More testing but still problems...
First I downloaded GCC and make from sunfreeware.com just in case Sun's
versions are messed up (this is the ones distributed with Solaris 8).
I built apache clean first with the following criteria:
CFLAGS="-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -fno-stric
Thanks, this works fine and is just what we required.
Martin
On Thu, Sep 28, 2000 at 09:33:38AM -0700, Doug MacEachern wrote:
> On Fri, 22 Sep 2000, Martin Wood wrote:
>
> > We have a collection of CGIs in a single directory handled by Apache::Registry,
>however if we enter the name of a resou
Jerrad Pierce wrote:
>
> No... that opens a handle to ehir INPUT
>
> output is
> open(OUT, "magic_open |");
I am not sure why, but the command line Perl script with
open (AAA, "|some_program");
accepts input via "print AAA" AND prints the output of the program on stdout.
> Or you c
Does anyone know where in Apache's code it prints the outbound response
message size in hex?
Example (the size is 112 on this particular message):
HTTP/1.1 404 Not Found
Date: Fri, 29 Sep 2000 13:58:56 GMT
Server: Apache/1.3.6 (Unix)
Keep-Alive: timeout=15, max=100
Connection: Keep-Alive
Trans
this is the contract (one paragraph is already excluded) :
http://vlad.narod.ru/contract.html
is it really looks like a usual thing?
(the matter of the job is just making mod_perl apps.)
/Vlad.
> -Original Message-
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]
> Sent: Friday, S
Doug MacEachern wrote:
>
> On Wed, 27 Sep 2000, Keith G. Murphy wrote:
>
> > Upon further investigation, what I am seeing is that PERL5LIB gets
> > passed into %ENV just fine. It's just not being used to locate modules;
> > it is not in @INC. Could the part of Perl that pushes the PERL5LIB
> >
Something else I generally don't want to see in my contracts is a
statement which says basically anything you learn while there you cannot use
anywhere else. If I see that I will force them to take it out or not sign
it... I have heard it is legally unenforcable (Who can say you cannot ta
"Vladislav Safronov" <[EMAIL PROTECTED]> writes:
> Hi,
>
> I know it's very OT, but don't kick me I just need advice.
>
> I am going to work in a Web Company to write some mod_perl apps.
> They gave me a contract (I think the terrible one) which
> contains paragraph (among the others) that sign
"Alexander Farber (EED)" wrote:
>
> Vladislav Safronov wrote:
> > I am going to work in a Web Company to write some mod_perl apps.
> > They gave me a contract (I think the terrible one) which
> > contains paragraph (among the others) that signs the rights to all
> > inventions over to them.
>
>
Vladislav Safronov wrote:
> I am going to work in a Web Company to write some mod_perl apps.
> They gave me a contract (I think the terrible one) which
> contains paragraph (among the others) that signs the rights to all
> inventions over to them.
The same paragraph (the inventions resulted from
Hi,
I know it's very OT, but don't kick me I just need advice.
I am going to work in a Web Company to write some mod_perl apps.
They gave me a contract (I think the terrible one) which
contains paragraph (among the others) that signs the rights to all
inventions over to them.
The problem is .. I
> Andreas Grupp wrote:
> >
> > Hello
> >
> > I am trying to develop for the first time a perl module. It should work on a
> > server with mod_perl. The objects are not using mod_perl ($r) and are just
> > solving some of my work in a nicer way. Since I'm new in OOP on perl (I only
> > know C++
* Doug MacEachern
|
| On 28 Sep 2000, Bjørn Ola Smievoll wrote:
|
| > [Sorry for being so verbose, hope somebody still have the time and
| > patience to read it all].
| >
| > I have a setup where a PerlTransHandler registers a PerlContentHandler
| > based simply on whether $r->uri ends with '.ht
Andreas Grupp wrote:
>
> Hello
>
> I am trying to develop for the first time a perl module. It should work on a
> server with mod_perl. The objects are not using mod_perl ($r) and are just
> solving some of my work in a nicer way. Since I'm new in OOP on perl (I only
> know C++) I would hear fro
Hi all.
I'm trying to install APACHE::ASP into my Linux box.
I have a RedHat 6.0 + apache 1.3.12 + MOD_PERL .
Looking into the documentation at www.apache-asp.org, i compiled the mod_perl
as a static module, i compiled APACHE::ASP and added ASP.pm to
$PERRLLIB/SITE/APACHE.
In my httpd.conf i adde
34 matches
Mail list logo