cvs commit: modperl-2.0/xs/ModPerl/Const Const.pm

2002-09-05 Thread dougm
dougm 2002/09/05 10:07:23 Modified:xs/ModPerl/Const Const.pm Log: fix typo which triggered bootstrap when running under mod_perl Revision ChangesPath 1.4 +1 -1 modperl-2.0/xs/ModPerl/Const/Const.pm Index: Const.pm

cvs commit: modperl-2.0/src/modules/perl modperl_module.c

2002-09-05 Thread dougm
dougm 2002/09/05 11:05:52 Modified:src/modules/perl modperl_module.c Log: automate SvREFCNT-ing used with modperl_module_cmd_fetch a bit Revision ChangesPath 1.7 +9 -7 modperl-2.0/src/modules/perl/modperl_module.c Index: modperl_module.c

Re: Seg Fault with PHP and Perl together

2002-09-05 Thread Enrico Sorcinelli
On Wed, 04 Sep 2002 18:17:44 +0100 Jon Harris [EMAIL PROTECTED] wrote: Hi I inherited a very happy cobalt raq3 with 2 sites using embedded Perl which work very well. There are about 20 sites on the box. I needed to get PHP running on the same box, so I made the module, added it into the

help getting started ..

2002-09-05 Thread Sylbert L
Hi, I'm just getting started with mod_perl. Was trying out the Apache::CommandServer sample code provided in the documentation, but I seem to get this error : Can't locate object method run_access_checker via package Apache::RequestRec at . I'm using Apache 2.0.40, with mod_perl 2.0, Perl

Re: help getting started ..

2002-09-05 Thread Stas Bekman
Sylbert L wrote: Hi, I'm just getting started with mod_perl. Was trying out the Apache::CommandServer sample code provided in the documentation, but I seem to get this error : Can't locate object method run_access_checker via package Apache::RequestRec at . add: use Apache::HookRun

Re: help getting started ..

2002-09-05 Thread Sylbert L
Thanks Stas, the code works just fine now. This is what i'd read : [Apache 1.3 is hardwired to speak only one protocol, HTTP. Apache 2.0 has moved to more of a server framework architecture making it possible to plugin handlers for protocols other than HTTP. The protocol module design also

Re: help getting started ..

2002-09-05 Thread Stas Bekman
Sylbert L wrote: Thanks Stas, the code works just fine now. cool. I've fixed the online doc. This is what i'd read : [Apache 1.3 is hardwired to speak only one protocol, HTTP. Apache 2.0 has moved to more of a server framework architecture making it possible to plugin handlers for

handler invoking problems

2002-09-05 Thread Anton Permyakov
I install apache 1.3.26 / modperl 1.27 with model_rewite module, but apache doesn't call my handler subroutine (i use Apache::PageKit) for root in my htdocs/: Request http://localhost/index works fine, but http://localhost/ shows me list of directories and files in my htdocs/ directory. Why?

RE: User process ownership

2002-09-05 Thread Mark Coffman
Or if you really dont care about security maybe you could chmod 4755 the script, owned by root, to run as root. Just make sure that you clean all of the data you receive from the form. I kinda like the daemon idea that simran had. -Original Message- From: simran [mailto:[EMAIL

[RFC] Apache::AuthDigest

2002-09-05 Thread Geoffrey Young
a few months ago I posted an RFC for a Digest authentication module. http://marc.theaimsgroup.com/?l=apache-modperlm=102217847409606w=2 I've done a bit of work on it based on feedback and my own tinkering, but it's still not completely complete. since then, a few people have asked about it,

Re: [RFC] Apache::AuthDigest

2002-09-05 Thread Andrew Ho
Heyas, GYa few months ago I posted an RFC for a Digest authentication module... GYif a few people speak up and say they'd like it on CPAN I'll push it GYover... In the parlance of the Apache developer, list, +1 from me. Humbly, Andrew

form problems on 2.0.40 enctype=multipart/form-data fixes it

2002-09-05 Thread Adam Nelson
I have three machines, only one of which has the problem: These do not have the problem: 2.4.18-3smp/Apache 1.3.24/perl 5.6.1/mod_perl 1.26 2.4.7-10smp/Apache 1.3.24/perl 5.6.0/mod_perl 1.26 This one does: 2.4.18-5smp/Apache 2.0.40/perl 5.6.1/mod_perl 1.99_05 All the code is the same. I

caching dynamic content in the reverse proxy

2002-09-05 Thread pascal barbedor
Hi following a recipe in modperl doc I have setup a front end plain apache "reverse proxy" + a back end modperl enabled. the front end has proxy cache enabled. any static content that is served by a default-handler from the backend server is well cached by the front one. but any content

RE: User process ownership

2002-09-05 Thread simran
You could do the chmod thing...but keep in mind, that it won't work unless you have perl compiled with suid script support (i think) and also your kernel has to support setuid scripts (which by default it probably doesn't because of race conditions causing major unsecurity...) On Fri,

[mp2.0] wrong crypt behavior

2002-09-05 Thread Tom Prochzka
Hello, I use own PerlAuthenHandler module to verify users' login and password from database. For comparsion of password user entered and password stored in database is crypt function used. Here is the code: my $real_pass = $d-[0][0]; # crypted password from database my $salt = substr