RE: param trouble

2002-07-11 Thread Wes Cravens
Check the thread on the 05-Jul-2002 -Original Message- From: Tim Sebastian Böckers [mailto:[EMAIL PROTECTED]] Sent: 28 June 2002 18:44 To: [EMAIL PROTECTED] Subject: param trouble dear list, i run into some trouble today for which i couldn't figure ailment myself nor find it

Re: [JOB] Perl / mod_perl programmer in Orem, UT

2002-07-11 Thread Jonathan M. Hollin
Cahill, Earl wrote: Internet Software Engineer (PERL) About Web Services is seeking an Internet Software Engineer to maintain and develop new applications for it's hosting platform. About Web Services is a division of About.com that provides hosting solutions to more than 4 million web

Apache::AuthCookie weirdness

2002-07-11 Thread Ken Miller
I'm experiencing a really strange problem with Apache::AuthCookie and Internet Explorer. Every now and then when I try and access a protected URL, I never see the login page. If I close the window, and open a new one, it works just fine. This is the case even if there are other windows open.

mod_perl help

2002-07-11 Thread Ryan Hairyes
Hello all, I just compiled mod_perl 1.27 with apache 1.3 for Solaris 8. I used perl 5.6.1 and gcc from www.sunfreeware.com. After I compiled everything and tried to load the perl module (with LoadModule) I receive the following error: Cannot load /usr/local/apache/libexec/libperl.so into

RE: mod_perl help

2002-07-11 Thread Peter Werner
make sure you are not using the sun as and ld etc. you can check by looking at the output of which as. (should be /usr/local/bin/as not /usr/ccs/bin/as). i have /usr/local/bin in my PATH before /usr/ccs/bin and /usr/ucb. if this doesnt help i would try recompiling perl. maybe someone with more

Re: mod_perl help

2002-07-11 Thread Ken Miller
I had this same problem with installing some precompiled packages from sunfreeware, such as libdb. My only recommendation is to scrap the installed packages for anything related to perl, including perl itself. And note that even though it says that Perl was compiled with GCC, the options

Re: Any way to list what compile options were used?

2002-07-11 Thread Randy Kobes
On Tue, 9 Jul 2002, Eric L. Brine wrote: Is there any easy way to check which options were used to compile mod_perl. Or more specifically, is there an easy way to check which type handlers a mod_perl build allows, if it allows stacked handlers, if it allows method handlers and if it allows

Trouble Making modperl-1.27 on Irix

2002-07-11 Thread Kent, Mr. John
Greetings Trying to make modperl-1.27 on Irix 6.2 Get: Error Output for sanity check cd ..; cc -n32 -DIRIX -DMOD_PERL -DUSE_PERL_SSI -D_BSD_TYPES -D_BSD_TIME -woff 1009,1110,1174,1184,1552 -OPT:Olimit=0 -I/usr/local/include -DLANGUAGE_C -DUSE_HSREGEX -DNO_DL_NEEDED

Re: solaris9+apache2+mod_perl2

2002-07-11 Thread Josh Bernstein
Well I commented the little switch statement what was giving me the problems and all seems to be resolved. In src/modules/mod_perl.c I've commend the following out: /*switch (rcfg-status) { case HTTP_MOVED_TEMPORARILY: retval = HTTP_MOVED_TEMPORARILY; break; } */

Working Directory

2002-07-11 Thread Josh Bernstein
After just upgrading to mod_perl2 with Apache2. My current INC path includes a . on the end, which should reference the current working directory, and therefore correctly locate include locate in the script's working directory. The problem is that the Working Directory is set to /. My

POST_MAX and mod_perl ~2.0

2002-07-11 Thread Charles
To alter the allowable size of posted material under mod_perl 1.3x you would use this: use Apache::compat; use Apache::Request; handler { my $r = shift; my $apr = Apache::Request-new($r, POST_MAX=(10*1024)); $apr-args; #get your params here... } What is the suggested technique

END subroutine in Apache::Registry

2002-07-11 Thread Jim Schueler
I just read the fine print: Apache::Registry runs BEGIN subroutines just once per child process, but END routines run every time a script is run. The implication is that an otherwise robust module may behave unexpectedly when it's imported by an Apache::Registry script. Doesn't this cause

Re: Working Directory

2002-07-11 Thread Stas Bekman
Josh Bernstein wrote: After just upgrading to mod_perl2 with Apache2. My current @INC path includes a . on the end, which should reference the current working directory, and therefore correctly locate include locate in the script's working directory. The problem is that the Working

Re: Working Directory

2002-07-11 Thread Francesc X . Noria
On Thu, 11 Jul 2002 16:56:38 -0700 Josh Bernstein [EMAIL PROTECTED] wrote: : /. My question is how can I set the working directory to be the : location of where the script is running. (This would make mod_perl : correctly locate file that I have included in the running script ie: :