Re: mod_perl caching form data?

2003-05-30 Thread David Ressman
equent visits to the same URL, the values will be prefilled by > the browser for you. I was certain that that's what it was, but it just can't be. I've even used browsers on computers that have never been to the site before and the data is still pre-filled out. > mod_per

Re: mod_perl caching form data?

2003-05-30 Thread Cees Hek
subsequent visits to the same URL, the values will be prefilled by the browser for you. mod_perl itself will never prefill form values for you. It is completely up to your script (or the modules it uses) to munge the data coming through. It is possible that you are creating your form fields with CGI

mod_perl caching form data?

2003-05-30 Thread David Ressman
[Sorry if an identical message comes through later. I don't think the list manager liked my address the first time I sent it through.] Hi all, I'm having a problem with mod_perl 1.2.7 that's baffling me completely, and I've been searching and reading for days, but I still

Re: MOD_PERL 2.0?

2003-05-30 Thread Randy Kobes
On Thu, 29 May 2003, FARRINGTON, RYAN wrote: > -- I don;t know if the first message was sent but here it is > again -- just as a test I used the "ALL in ONE" package to get > this installed and it works like a champ except for > Apache::compat errors with something about line 68. =( I don't > have

RE: Large Data Set In Mod_Perl

2003-05-30 Thread Perrin Harkins
On Thu, 2003-05-29 at 13:10, Marc M. Adkins wrote: > My original comment was regarding threads, not processes. I run on Windows > and see only two Apache processes, yet I have a number of Perl interpreters > running in their own ithreads. My understanding of Perl ithreads is that > while the synt

RE: Large Data Set In Mod_Perl

2003-05-30 Thread Marc M. Adkins
g about ithreads here, just processes. The data is > shared by copy-on-write. It's an OS-level feature. See the mod_perl > docs for more info. My original comment was regarding threads, not processes. I run on Windows and see only two Apache processes, yet I have a number o

FW: Large Data Set In Mod_Perl

2003-05-30 Thread Marc M. Adkins
> > It's pretty easy to try, so test it and see if you can spare > the RAM it > > > requires. > > > > Always one of my favorite solutions to this sort of problem > (dumb and fast) > > but in mod_perl won't this eat RAM x number of mod_perl threads

RE: Large Data Set In Mod_Perl

2003-05-30 Thread Perrin Harkins
asy to try, so test it and see if you can spare the RAM it > > requires. > > Always one of my favorite solutions to this sort of problem (dumb and fast) > but in mod_perl won't this eat RAM x number of mod_perl threads??? No. If you load the data during startup (before the fork) it will be shared unless you modify it. - Perrin

RE: Large Data Set In Mod_Perl

2003-05-30 Thread Marc M. Adkins
s. Always one of my favorite solutions to this sort of problem (dumb and fast) but in mod_perl won't this eat RAM x number of mod_perl threads??? In this case one of the advantages of the DBMS is that it is one copy of the data that everyone shares. mma

MOD_PERL 2.0?

2003-05-30 Thread FARRINGTON, RYAN
Title: MOD_PERL 2.0? -- I don;t know if the first message was sent but here it is again -- just as a test I used the "ALL in ONE" package to get this installed and it works like a champ except for Apache::compat errors with something about line 68. =( I don't have the error in

RE: ugh! mod_perl install problem

2003-05-29 Thread Reed, Jonathan S.
That did it. Thank you very much. Jon Reed -Original Message- From: Stas Bekman [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 28, 2003 8:08 PM To: Reed, Jonathan S. Cc: [EMAIL PROTECTED] Subject: Re: ugh! mod_perl install problem Reed, Jonathan S. wrote: > Hello, > I am ha

Re: Large Data Set In Mod_Perl

2003-05-29 Thread Ged Haywood
Hi there, On Wed, 28 May 2003, Perrin Harkins wrote: > simran wrote: [snip] > > * Lookup the _distance_ for the planet _mercury_ on the date _1900-01-01_ [snip] > you can get by with MLDBM or something similar. You might also want to investigate using a compiled C Btree library which could be t

Re: [mp1] .htaccess and mod_perl

2003-05-29 Thread Stas Bekman
Well, Apache::StatINC wasn't distributed with the install of mod_perl that I was using (1.24) or else it wasn't in the global @INC, so I just snapped up the source from cpan and put it (with an addition to @INC) locally in my ensim tree. eh? It's been in the distro for the

Re: [mp1] .htaccess and mod_perl

2003-05-29 Thread Michael L. Artz
:StatINC wasn't distributed with the install of mod_perl that I was using (1.24) or else it wasn't in the global @INC, so I just snapped up the source from cpan and put it (with an addition to @INC) locally in my ensim tree. I will try and get Apache::Reload working, since Stas says so :) I thi

Re: [mp1] .htaccess and mod_perl

2003-05-29 Thread Stas Bekman
We could bundle Apache::Reload with 1.28 I suppose. __ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:[EMAIL PROTECTED] htt

Re: [mp1] .htaccess and mod_perl

2003-05-29 Thread Geoffrey Young
Apache::StatINC is R.I.P. Use Apache::Reload instead. but Apache::StatINC comes with mp1 and Apache::Reload doesn't - it's difficult to install modules on these ensim boxes since you don't have root (and yes, there are other ways around it of course :) --Geoff

Re: Large Data Set In Mod_Perl

2003-05-29 Thread Dale Lancaster
g DB_file, it would probably be somewhere between the Perl hash approach and using the standard SQL database interface. dale - Original Message - From: "simran" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, May 28, 2003 9:29 PM Subject: Large Data Set In

Re: Large Data Set In Mod_Perl

2003-05-29 Thread Perrin Harkins
milar. Currently i do this using a postgres database, however, my question is, is there a quicker way to do this in mod_perl - would a DB_File or some other structure be better? A DBM file will be faster. What you can do is build a key out of planet + date, so that you grab the right record with a single a

Large Data Set In Mod_Perl

2003-05-29 Thread simran
_1900-01-01_ Currently i do this using a postgres database, however, my question is, is there a quicker way to do this in mod_perl - would a DB_File or some other structure be better? I would be interested in knowing if others have dealt with large data sets as above and what solutions they

Re: [mp1] .htaccess and mod_perl

2003-05-29 Thread Stas Bekman
stead. __ Stas BekmanJAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:[EMAIL PROTECTED] http://use.perl.org http://apacheweek.com http://modperlbook.org http://apache.org http://ticketmaster.com

Re: ugh! mod_perl install problem

2003-05-29 Thread Stas Bekman
Reed, Jonathan S. wrote: Hello, I am having a problem installing mod_perl. I have used this same install procedure on other boxes successfully but am having trouble with this one. The error is at the bottom of this message. System specs are as follows. I apologize in advance if this is not

Re: [mp1] .htaccess and mod_perl

2003-05-29 Thread Geoffrey Young
Michael L. Artz wrote: I am stuck in an Ensim environment ugh. What is possible within an .htaccess file as far as perl configuration for mod_perl 1? just about anything. I use an Ensim installation, and am constantly frustrated by it. however, there are ways around just about anything

[mp1] .htaccess and mod_perl

2003-05-29 Thread Michael L. Artz
I am stuck in an Ensim environment (shared web-hosting, Apache 1.3.27 and mod_perl 1.24) and am trying to get around some of the limitations imposed by Ensim. Basically, I have complete .htaccess control but have no way to restart the server or start it with different arguments or modify the

ugh! mod_perl install problem

2003-05-29 Thread Reed, Jonathan S.
Hello, I am having a problem installing mod_perl. I have used this same install procedure on other boxes successfully but am having trouble with this one. The error is at the bottom of this message. System specs are as follows. I apologize in advance if this is not the correct forum for

perl.com: Testing mod_perl 2.0

2003-05-29 Thread Geoffrey Young
for those who haven't already seen it, perl.com ran the second of my series of articles on mod_perl 2.0 late last week. the title is actually a bit decieving. it's about using the Apache-Test testing framework, but although Apache-Test is shown in a mod_perl 2.0 context, Apache-T

Re: Problem adding mod_perl to my web server config.

2003-04-06 Thread Paul Adair
fig.pm *** Makefile.PL options: MP_AP_PREFIX=> /usr/local/apache2 MP_GENERATE_XS => 1 MP_INST_APACHE2 => 1 MP_LIBNAME => mod_perl MP_USE_DSO => 1 MP_USE_STATIC => 1 *** /usr/local/apache2/bin/httpd -V Server version: Apache/2.0.44 Server built: Mar 2

Re: Problem adding mod_perl to my web server config.

2003-04-06 Thread Stas Bekman
Paul Adair wrote: I recently attempted to add mod_perl to my web server configuration. Here is my current web server info. "Apache/2.0.44 (Unix) mod_ssl/2.0.44 OpenSSL/0.9.7a DAV/2 PHP/4.3.1 Sun-ONE-ASP/4.0.0" There are no problems with this config and everything work ok. Paul, please ma

Problem adding mod_perl to my web server config.

2003-04-06 Thread Paul Adair
I recently attempted to add mod_perl to my web server configuration. Here is my current web server info. "Apache/2.0.44 (Unix) mod_ssl/2.0.44 OpenSSL/0.9.7a DAV/2 PHP/4.3.1 Sun-ONE-ASP/4.0.0" There are no problems with this config and everything work ok. I went through all of the co

Re: [mp2.0] W2000, Apache 2.0.45, mod_perl-2 1.99_09-dev crashes

2003-04-05 Thread Sebastian Breier
At 18:35 04.04.2003, Randy Kobes wrote: If this is with ActivePerl 8xx, though, then it may be that there's an incompatibility between modules compiled against Apache 2.0.44 (which the mod_perl ppm package on our site was compiled against) and Apache 2.0.45. The Apache group says that, sta

RE: [mp2.0] W2000, Apache 2.0.45, mod_perl-2 1.99_09-dev crashes

2003-04-04 Thread Sebastian Breier
matic symbol so I have no idea where to look! How exactly do you install Apache and mod_perl-2? My install/upgrade process is this: - Install Apache via MSI file - Open ActivePerl's PPM - Add mod_perl-2 PPM repository ( http://theoryx5.uwinnipeg.ca/cgi-bin/ppmserver?urn:/PPMServer58 ActivePerl

Re: [mp2.0] W2000, Apache 2.0.45, mod_perl-2 1.99_09-dev crashes

2003-04-04 Thread Sebastian Breier
At 18:35 04.04.2003, Randy Kobes wrote: If this is with ActivePerl 8xx, though, then it may be that there's an incompatibility between modules compiled against Apache 2.0.44 (which the mod_perl ppm package on our site was compiled against) and Apache 2.0.45. The Apache group says that, sta

Re: [mp2.0] W2000, Apache 2.0.45, mod_perl-2 1.99_09-dev crashes

2003-04-04 Thread Randy Kobes
On Fri, 4 Apr 2003, Sebastian Breier wrote: > Hi. > > I just upgraded Apache to 2.0.45 (from 2.0.44), > and now most of my perl-generated sites crash. > They worked perfectly before. > > Server is Apache 2.0.45 on W2000 + mod_perl-2 1.99_09-dev, > as said in the subj

RE: [mp2.0] W2000, Apache 2.0.43 + mod_perl 1.99_09 does not start

2003-04-04 Thread Randy Kobes
On Fri, 4 Apr 2003, Melchior, Matthijs wrote: > > -Original Message- > > From: Randy Kobes [mailto:[EMAIL PROTECTED] > > Sent: Thursday, April 03, 2003 17:59 > > > > On Thu, 3 Apr 2003, Melchior, Matthijs wrote: > > > > > Hello, > >

RE: [mp2.0] W2000, Apache 2.0.45, mod_perl-2 1.99_09-dev crashes

2003-04-04 Thread Melchior, Matthijs
Title: RE: [mp2.0] W2000, Apache 2.0.45, mod_perl-2 1.99_09-dev crashes Sebastian, > -Original Message- > From: Sebastian Breier [mailto:[EMAIL PROTECTED]] > Sent: Friday, April 04, 2003 17:51 > > At 17:38 04.04.2003, Melchior, Matthijs wrote: > > >Seb

RE: [mp2.0] W2000, Apache 2.0.45, mod_perl-2 1.99_09-dev crashes

2003-04-04 Thread Sebastian Breier
ly is your problem with the installation? Mine went through without complaining, and the Apache worked after that. mod_perl-2 is installed over ActivePerl 5.8's PPM shell. No problems anywhere. Just now with 2.0.45. :-) We can get in touch off-list and exchange more details Sure... maybe this a

RE: [mp2.0] W2000, Apache 2.0.45, mod_perl-2 1.99_09-dev crashes

2003-04-04 Thread Melchior, Matthijs
Title: RE: [mp2.0] W2000, Apache 2.0.45, mod_perl-2 1.99_09-dev crashes Sebastian,     Sooo, it IS possible to get this running on W2000. thanks! Now the big question: what is different between your system and ours...? Do you remember what happened during install, what non

[mp2.0] W2000, Apache 2.0.45, mod_perl-2 1.99_09-dev crashes

2003-04-04 Thread Sebastian Breier
Hi. I just upgraded Apache to 2.0.45 (from 2.0.44), and now most of my perl-generated sites crash. They worked perfectly before. Server is Apache 2.0.45 on W2000 + mod_perl-2 1.99_09-dev, as said in the subject. I just checked again with 2.0.44, everything works (nothing changed except Apache

RE: [mp2.0] W2000, Apache 2.0.43 + mod_perl 1.99_09 does not start

2003-04-04 Thread Melchior, Matthijs
Title: RE: [mp2.0] W2000, Apache 2.0.43 + mod_perl 1.99_09 does not start Randy,     sorry for the text+html, I am trying to get that changed... > -Original Message- > From: Randy Kobes [mailto:[EMAIL PROTECTED]] > Sent: Thursday, April 03, 2003 17:59 . > >

Re: [mp2.0] make test failure in mod_perl 1.99_08

2003-04-03 Thread Stas Bekman
ccurs because my apache2 is located in /usr/local/apache2 and installed by root. The user that I built mod_perl with is not root, therefore it sqawks. I overcame this by building mod_perl as root. I also had to run the tests as root, but I think that some of the tests will eventually fail in this

Re: [mp2.0] make test failure in mod_perl 1.99_08

2003-04-03 Thread Stas Bekman
ror during server startup or when the actual tests are run? Can you remove the 'PerlModule TestHooks::trans' that you have added, rebuild mod_perl with MP_TRACE=1 (perl Makefile.PL MP_TRACE=1 ...) and now run: rm t/logs/error_log MOD_PERL_TRACE=h t/TEST -start (run 'env MOD_PERL_TRAC

RE: [mp2.0] make test failure in mod_perl 1.99_08

2003-04-03 Thread Hensley, Richard
Title: RE: [mp2.0] make test failure in mod_perl 1.99_08 As an aside, one of the interesting issues that I ran across when running make test was the following: /usr/local/apache2/bin/httpd  -d /home/rhensle/modperl-2.0/t -f /home/rhensle/mo dperl-2.0/t/conf/httpd.conf -DAPACHE2 using Apache

RE: [mp2.0] make test failure in mod_perl 1.99_08

2003-04-03 Thread Hensley, Richard
Title: RE: [mp2.0] make test failure in mod_perl 1.99_08 I tried it with the lastest snapshot, and the patch below. I still get the following in the error_log [Thu Apr 03 16:49:00 2003] [error] failed to resolve handler `TestHooks::trans' [Thu Apr 03 16:49:00 2003] [error] [client 127.

Re: [mp2.0] make test failure in mod_perl 1.99_08

2003-04-03 Thread Stas Bekman
Stas Bekman wrote: Hensley, Richard wrote: Unfortunately, I can not access cvs from behind the corporate firewall. I was using the contents of mod_perl-2.0-current.tar.gz, which is the best I can do. Sorry. You can get the latest cvs snapshots here: http://cvs.apache.org/snapshots/modperl-2.0

Re: [mp2.0] make test failure in mod_perl 1.99_08

2003-04-03 Thread Stas Bekman
Hensley, Richard wrote: Unfortunately, I can not access cvs from behind the corporate firewall. I was using the contents of mod_perl-2.0-current.tar.gz, which is the best I can do. Sorry. You can get the latest cvs snapshots here: http://cvs.apache.org/snapshots/modperl-2.0/ I'll update th

RE: [mp2.0] make test failure in mod_perl 1.99_08

2003-04-03 Thread Hensley, Richard
Title: RE: [mp2.0] make test failure in mod_perl 1.99_08 Unfortunately, I can not access cvs from behind the corporate firewall. I was using the contents of mod_perl-2.0-current.tar.gz, which is the best I can do. Sorry. -Original Message- From: Stas Bekman [mailto:[EMAIL PROTECTED

Re: [mp2.0] make test failure in mod_perl 1.99_08

2003-04-03 Thread Stas Bekman
Can you give it a try with the latest cvs, without the changes you have applied? Thanks. http://perl.apache.org/download/source.html#2_0_Development_Source_Distribution __ Stas BekmanJAm_pH --> Just Another mod_p

RE: [mp2.0] make test failure in mod_perl 1.99_08

2003-04-03 Thread Hensley, Richard
Title: RE: [mp2.0] make test failure in mod_perl 1.99_08 I was able to make my tests work, I had to do the following: I had to put the user that built mod_perl in the httpd.conf file. I also had to declare TestHooks::init and TestHooks::trans in the httpd.conf using the PerlModule directive

[mp2.0] make test failure in mod_perl 1.99_08

2003-04-03 Thread Hensley, Richard
Title: [mp2.0] make test failure in mod_perl 1.99_08 1. Problem Description:    make test is failing badly. I get the following from the t/logs/error_log [Wed Apr 02 16:58:51 2003] [error] [client 127.0.0.1] Can't locate TestHooks/ini t/first.pm in @INC (@INC contains: /home/rh

Re: [mp2.0] W2000, Apache 2.0.43 + mod_perl 1.99_09 does not start

2003-04-03 Thread Randy Kobes
On Thu, 3 Apr 2003, Melchior, Matthijs wrote: > Hello, > We have a problem getting mod_perl to run on a W2000 server. > It does work on another machine running WinNT4, so I think there are > no errors in my configuration files. > > httpd.conf: > 176: LoadModul

RE: [mp2.0] W2000, Apache 2.0.43 + mod_perl 1.99_09 does not start

2003-04-03 Thread Melchior, Matthijs
Title: RE: [mp2.0] W2000, Apache 2.0.43 + mod_perl 1.99_09 does not start Thanks for your reply.     Your web page effectively describes the steps I have taken to arrive at my current situation, OK on WinNT, failes on W2000! I keep asking myself "what procedure could not be

Re: [mp2.0] W2000, Apache 2.0.43 + mod_perl 1.99_09 does not start

2003-04-03 Thread Jean-Michel Hiver
> Hello, > We have a problem getting mod_perl to run on a W2000 server. > It does work on another machine running WinNT4, so I think there are > no errors in my configuration files. Actually I'm having a windows machine at home and I got mod_perl working with ActiveState p

[mp2.0] W2000, Apache 2.0.43 + mod_perl 1.99_09 does not start

2003-04-03 Thread Melchior, Matthijs
Title: [mp2.0] W2000, Apache 2.0.43 + mod_perl 1.99_09 does not start Hello,     We have a problem getting mod_perl to run on a W2000 server. It does work on another machine running WinNT4, so I think there are no errors in my configuration files. httpd.conf: 176: LoadModule perl_module

Re: How to make apache with both mod_perl and mod_ssl?

2003-04-02 Thread Stas Bekman
Charlie Smith wrote: How to make apache with both mod_perl and mod_ssl? RTFM: http://perl.apache.org/docs/1.0/guide/install.html#Installation_Scenarios_for_mod_perl_and_Other_Components __ Stas BekmanJAm_pH --> J

How to make apache with both mod_perl and mod_ssl?

2003-04-02 Thread Charlie Smith
How to make apache with both mod_perl and mod_ssl? -- This message may contain confidential information, and is intended only for the use of the individual(s) to whom it is addressed. ==

Re: installing mod_perl with Apache and mod_ssl

2003-03-30 Thread Stas Bekman
Richard Kurth wrote: Hello , I am trying to install mod_perl with Apache apache_1.3.27 mod_ssl-2.8.12-1.3.27 and Frontpage This is what I am doing to install it but for some reason mod_perl does not install properly. [...] This might help: http://perl.apache.org/docs/1.0/guide/install.html

installing mod_perl with Apache and mod_ssl

2003-03-30 Thread Richard Kurth
Hello , I am trying to install mod_perl with Apache apache_1.3.27 mod_ssl-2.8.12-1.3.27 and Frontpage This is what I am doing to install it but for some reason mod_perl does not install properly. cd /tmp tar xfz apache_1.3.27.tar.gz #Frontpage Module cd /tmp cd apache_1.3.27 rm -f apache_1.3.27

Re: Mod_perl 1.99_09dev on AIX4.3.3

2003-03-27 Thread Stas Bekman
ner, saying the following errors are harmless. __ Stas Bekman JAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mailto:[EMAIL PROTECTED] http://use.perl.or

RE: Mod_perl 1.99_09dev on AIX4.3.3

2003-03-27 Thread ODELL, TODD E (SWBT)
TECTED]' Subject: Re: Mod_perl 1.99_09dev on AIX4.3.3 Stas Bekman wrote: > ODELL, TODD E (SWBT) wrote: [...] >> ulimit -c unlimited; t/TEST -clean >> >> Error in option spec: "verbose:1" >> >> make: 1254-004 The error code from the last command

Re: "make test" fails - Solaris8, Perl5.8.0, mod_perl 1.99_08

2003-03-27 Thread Stas Bekman
/httpd tbreak main run -d `pwd`/t -f `pwd`/t/conf/httpd.conf -DONE_PROCESS -DNO_DETATCH -DAPACHE2 # run through all the way to after mod_perl is loaded b load_module continue b apr_sockaddr_info_get now: % cd modperl-2.0 % gdb -command=/tmp/debug p.s. I prefer using ddd which runs gdb underneath, if

"make test" fails - Solaris8, Perl5.8.0, mod_perl 1.99_08

2003-03-27 Thread Adrian Klingel
Hello List, I am having a mysteriously difficult time getting mod_perl installed on Solaris 8. Perl 5.8.0 is installed and was compiled from source. No threads. Apache 2.0.44 is installed and was compiled from source. Here is the output from "make test". Of course there is a co

Re: Mod_perl 1.99_09dev on AIX4.3.3

2003-03-27 Thread Stas Bekman
lete, as I haven't removed the rule itself. I've now committed the right fix to cvs. Please test it. __ Stas Bekman JAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> h

Re: Mod_perl 1.99_09dev on AIX4.3.3

2003-03-26 Thread Stas Bekman
things are to be left in @ARGV Getopt::Long::Configure(qw(pass_through permute)); __ Stas Bekman JAm_pH --> Just Another mod_perl Hacker http://stason.org/ mod_perl Guide ---> http://perl.apache.org mail

RE: Mod_perl 1.99_09dev on AIX4.3.3

2003-03-26 Thread ODELL, TODD E (SWBT)
-Original Message- From: Stas Bekman [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 26, 2003 7:21 PM To: ODELL, TODD E (SWBT) Cc: '[EMAIL PROTECTED]' Subject: Re: Mod_perl 1.99_09dev on AIX4.3.3 ODELL, TODD E (SWBT) wrote: > Stas, > The output of per

Re: make errors with mod_perl-1.99_08 on aix 4.3.3 & 5.1

2003-03-26 Thread Stas Bekman
rawing board and get the ld-time resolving working. However if somebody can give me an access to a fast aix machine, I'll be much more productive. The machine that I have an access to is a way too slow (takes an hour and longer to build mod_perl). Meanwhile, can you please test whether

Re: Mod_perl 1.99_09dev on AIX4.3.3

2003-03-26 Thread Stas Bekman
ou add: PerlModule TestHooks::init somewhere in t/conf/httpd.conf after mod_perl.so is loaded and then run 't/TEST' (not 'make test' as it'll overwrite t/conf/httpd.conf) __ Stas BekmanJ

RE: make errors with mod_perl-1.99_08 on aix 4.3.3 & 5.1

2003-03-26 Thread Priest, Darryl - BALTO
Original Message- From: Stas Bekman [mailto:[EMAIL PROTECTED] Sent: Monday, March 24, 2003 2:50 AM To: Justin Derrick Cc: Priest, Darryl - BALTO; '[EMAIL PROTECTED]' Subject: Re: make errors with mod_perl-1.99_08 on aix 4.3.3 & 5.1 I've applied some fixes for mod_perl to bui

RE: Oracle9.2 and mod_perl - advice sought

2003-03-26 Thread Goehring, Chuck Mr., RCI - San Diego
PROTECTED] Sent: Wednesday, March 26, 2003 1:35 AM To: [EMAIL PROTECTED] Subject: RE: Oracle9.2 and mod_perl - advice sought Chris, Dmitri, Chuck, Thank you all.. Have got myself a safari bookshelf and cpan shell at the ready.. Wish me luck... Databases here I come ;-) - Jim > -Origi

RE: Mod_perl 1.99_09dev on AIX4.3.3

2003-03-26 Thread ODELL, TODD E (SWBT)
e test shows this in the t/logs/error_log: END in modperl_extra.pl, pid=43520 [Wed Mar 26 11:59:17 2003] [notice] Apache/2.0.44 (Unix) mod_perl/1.99_09-dev Perl/v5.6.1 PHP/4.3.1 configured -- resuming normal operations [Wed Mar 26 11:59:17 2003] [info] Server built: Mar 4 2003 21:18:40 [Wed Mar 26 11:59:

Re: Another wicked mod_perl question :)

2003-03-26 Thread Perrin Harkins
Jean-Michel Hiver wrote: I know that it's possible to chain Apache handlers in a way that the next handler is executed if the previous handler returned DECLINED. It sound like you're looking for this: http://perl.apache.org/docs/1.0/guide/config.html#Stacked_Handlers The next handler is also execut

Another wicked mod_perl question :)

2003-03-26 Thread Jean-Michel Hiver
Hi List, I know that it's possible to chain Apache handlers in a way that the next handler is executed if the previous handler returned DECLINED. I would like to have the following execution chain: Handler1 Handler2 ... HandlerN CGI script (running either as pure CGI or under Apache::Registry).

RE: Oracle9.2 and mod_perl - advice sought

2003-03-26 Thread Jim Morrison [Mailing-Lists]
IL PROTECTED] > Subject: Re: Oracle9.2 and mod_perl - advice sought > > > This book might be useful to you too! > > Perl for Oracle DBAs > http://www.oreilly.com/catalog/oracleperl/ > > HTH, > > Christopher Taranto > > At 06:12 PM 3/25/03 +, you wrote: >

Re: Mod_perl 1.99_09dev on AIX4.3.3

2003-03-25 Thread Stas Bekman
ODELL, TODD E (SWBT) wrote: On Mar 24 Stas Bekman Wrote: I've applied some fixes for mod_perl to build on aix. I could only test with aix 5.1 on powerpc. Please test that things work on other configurations. I got 1.99_09dev working on AIX4.3.3/apache 2.0.44 on powerpc_power3. I had tr

Re: Oracle9.2 and mod_perl - advice sought

2003-03-25 Thread Christopher Taranto
of a site/product/service.. I'm happiest writing Perl - under mod_perl - so I'd like to stick to that, but most importantly I need the solution with the lowest transaction overheads.. (The webserver and OracleDB are going to be on different boxes..) I'm told the best solution is to

RE: Oracle9.2 and mod_perl - advice sought

2003-03-25 Thread Dmitri Bichko
well. I am currently using this with mod_perl (on linux) and Oracle 9.2 (on solaris). Dmitri -Original Message- From: Jim Morrison [Mailing-Lists] [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 25, 2003 1:13 PM To: [EMAIL PROTECTED] Subject: Oracle9.2 and mod_perl - advice sought

RE: Oracle9.2 and mod_perl - advice sought

2003-03-25 Thread Goehring, Chuck Mr., RCI - San Diego
. DBD-Oracle-1.12.tar.gz DBI-1.32.tar.gz Using separate boxes works fine. Chuck -Original Message- From: Jim Morrison [Mailing-Lists] [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 25, 2003 10:13 AM To: [EMAIL PROTECTED] Subject: Oracle9.2 and mod_perl - advice sought Hello

Mod_perl 1.99_09dev on AIX4.3.3

2003-03-25 Thread ODELL, TODD E (SWBT)
On Mar 24 Stas Bekman Wrote: >I've applied some fixes for mod_perl to build on aix. >I could only test with aix 5.1 on powerpc. Please test that things work on >other configurations. I got 1.99_09dev working on AIX4.3.3/apache 2.0.44 on powerpc_power3. I had trouble with make

Oracle9.2 and mod_perl - advice sought

2003-03-25 Thread Jim Morrison [Mailing-Lists]
Hello all, Quick request for advice/direction... I'm about to take receipt of an Oracle 9.2 server - for the development of a site/product/service.. I'm happiest writing Perl - under mod_perl - so I'd like to stick to that, but most importantly I need the solution with the low

[DIGEST] mod_perl digest 2003/02/24

2003-03-24 Thread jgsmith
-- mod_perl digest February 24, 2002 - March 24, 2003 -- Recent happenings in the mod_perl world... Features o

Re: Addition of directory to @INC variable via startup script/mod_perl

2003-03-24 Thread Perrin Harkins
Jason Jolly wrote: When I stop/start the server and run a script with the following code: foreach $item (@INC) { print ($item . ""); } I only get the output: /usr/local/lib/perl5/5.8.0/sun4-solaris /usr/local/lib/perl5/5.8.0 /usr/local/lib/perl5/site_perl/5.8.0/sun

Addition of directory to @INC variable via startup script/mod_perl

2003-03-24 Thread Jason Jolly
::Registry();    use CGI();    use CGI::Session();    use CGI::Carp();    use DBI();    use Net::LDAP();       $ENV{MOD_PERL} or die "not running under mod_perl!";       1;   When I stop/start the server and run a script with the following code:       foreach $item (@INC) {    pr

Re: make errors with mod_perl-1.99_08 on aix 4.3.3 & 5.1

2003-03-23 Thread Stas Bekman
I've applied some fixes for mod_perl to build on aix. I could only test with aix 5.1 on powerpc. Please test that things work on other configurations. __ Stas BekmanJAm_pH --> Just Another mod_perl Hac

Re: notes() and mod_perl ErrorDocuments

2003-03-20 Thread Geoffrey Young
Hann, Brian wrote: Partially, and yes that seems to work. But here's the thing: When a user fails to enter a good password they will be given a chance to enter questions like "What is your mother's maiden name", etc. and get their account unlocked. Without passing the enc_key and system_id in f

RE: notes() and mod_perl ErrorDocuments

2003-03-20 Thread Hann, Brian
an -Original Message- From: Geoffrey Young [mailto:[EMAIL PROTECTED] Sent: Thursday, March 20, 2003 1:45 PM To: Hann, Brian Cc: [EMAIL PROTECTED] Subject: Re: notes() and mod_perl ErrorDocuments Hann, Brian wrote: > Thanks, that worked. Now I can use the regular authentication stuff. >

Re: notes() and mod_perl ErrorDocuments

2003-03-20 Thread Geoffrey Young
Hann, Brian wrote: Thanks, that worked. Now I can use the regular authentication stuff. As I said in my last email, in the interest of preventing location pollution, is there some way I could make those PerlSetVars available to subsequent requests to a different location? I can't think of any

RE: notes() and mod_perl ErrorDocuments

2003-03-20 Thread Hann, Brian
thout copying them to a separate location for each one. Perhaps with some kind of shared memory? Brian -Original Message- From: Geoffrey Young [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 19, 2003 3:12 PM To: Hann, Brian Subject: Re: notes() and mod_perl ErrorDocuments Hann,

Does "Indexes" work with mod_perl?

2003-03-19 Thread Daisuke Maki
Hi, I'm having a hard time making mod_perl(1.27) enabled Apache treat requests to directories so that the directory listing is shown (like the default behavior when there is not DirectoryIndex file). I pretty much just threw away all of my mod_perl specific configuration from my httpd.conf

Re: notes() and mod_perl ErrorDocuments

2003-03-19 Thread Geoffrey Young
Hann, Brian wrote: Actually I think I got it, but thanks for the tip on $r->prev->notes. I'll have to give it a try. And yes, I've been poring over the cookbook for most of the day :) :) Here's what I ended up doing: When I hit a place in my authen module that required me to do: $r->note_basic_

RE: notes() and mod_perl ErrorDocuments

2003-03-19 Thread Hann, Brian
SO-8859-1'); $r->status(401); $r->send_http_header; So far it seems to be working fine, and my notes() are coming across. Brian -Original Message- From: Geoffrey Young [mailto:[EMAIL PROTECTED] Sent: Wednesday, March 19, 2003 2:23 PM To: Hann, Brian Cc: [EMAIL PROTECTED] Subjec

Re: notes() and mod_perl ErrorDocuments

2003-03-19 Thread Geoffrey Young
Hann, Brian wrote: I have a mod_perl handler set as the 401 ErrorDocument for a certain location that requires authentication. I would like to store data in notes() in the first location so that the 401 handler can access them. Is that possible? So far I haven't been able to get it to

notes() and mod_perl ErrorDocuments

2003-03-19 Thread Hann, Brian
Title: Message I have a mod_perl handler set as the 401 ErrorDocument for a certain location that requires authentication.  I would like to store data in notes() in the first location so that the 401 handler can access them.  Is that possible? So far I haven't been able to get it to

Re: inline mod_perl - is this possible?

2003-03-19 Thread Helmut Zeilinger
Hi, Apache::ASP also works very fine: http://www.apache-asp.org/ Helmut --On Wednesday, March 19, 2003 03:55:20 -0800 "www.ReadNotify.com" <[EMAIL PROTECTED]> wrote: Hi, I want to do this (serverside of course); is it possible? I am running print $ENV{MOD_PERL}; print &quo

Re: inline mod_perl - is this possible?

2003-03-19 Thread Randal L. Schwartz
>>>>> "www" == www ReadNotify com <[EMAIL PROTECTED]> writes: www> www> I am running www> www> print $ENV{MOD_PERL}; www> print "process ID $$"; www> www> on Apache!! www> www> What modules/config/etc do I need to set up

Re: inline mod_perl - is this possible?

2003-03-19 Thread Thomas Klausner
Hi! On Wed, Mar 19, 2003 at 03:55:20AM -0800, www.ReadNotify.com wrote: > I want to do this (serverside of course); is it > possible? > > > I am running > > print $ENV{MOD_PERL}; > print "process ID $$"; > > on Apache!! > > > What modules/c

inline mod_perl - is this possible?

2003-03-19 Thread www.ReadNotify.com
Hi, I want to do this (serverside of course); is it possible? I am running print $ENV{MOD_PERL}; print "process ID $$"; on Apache!! What modules/config/etc do I need to set up? Chris. __ Do you Yahoo!? Yahoo! Platinum - Watch

Re: mod_perl + GnuPG

2003-03-13 Thread Stas Bekman
Gareth Palmer wrote: I'm getting a strange error while trying to using the GnuPG module while running under mod_perl (everything works fine when executing from a shell) The message is: Can't locate object method "OPEN" via package "Apache::RequestRec" (perh

RE: mod_perl not sending cookies

2003-03-13 Thread Tom Murphy
ar.html". The path "/" is the most general path. If the path is not specified, it as assumed to be the same path as the document being described by the header which contains the cookie. > -Original Message- > From: Andrew Fritz [mailto:[EMAIL PROTECTED] > Sent: Thursday,

RE: mod_perl not sending cookies

2003-03-13 Thread Tom Murphy
Usually when I have this problem the path and/or domain is incorrect. Try it without either. Tom > -Original Message- > From: Andrew Fritz [mailto:[EMAIL PROTECTED] > Sent: Thursday, March 13, 2003 12:25 PM > To: [EMAIL PROTECTED] > Subject: mod_perl not sending cook

Re: mod_perl not sending cookies

2003-03-13 Thread Richard Clarke
PROTECTED]> Sent: Thursday, March 13, 2003 8:24 PM Subject: mod_perl not sending cookies > I'm using Apache:AuthCookie. I have set up a basic test site. It appears > that AuthCookie never send the cookie even though the call to: > $r->err_headers_out->add("Set-C

mod_perl not sending cookies

2003-03-13 Thread Andrew Fritz
I'm using Apache:AuthCookie. I have set up a basic test site. It appears that AuthCookie never send the cookie even though the call to: $r->err_headers_out->add("Set-Cookie" => $cookie); is there. If I modify the call to include a simple cookie: $r->err_headers_out->add("Set-Cookie" => 'a=b'

mod_perl + GnuPG

2003-03-11 Thread Gareth Palmer
I'm getting a strange error while trying to using the GnuPG module while running under mod_perl (everything works fine when executing from a shell) The message is: Can't locate object method "OPEN" via package "Apache::RequestRec" (perhaps you forgot to load "

<    1   2   3   4   5   6   7   8   9   10   >