re: Why is this book out of print?

2000-07-17 Thread Gunther Birznieks
I think the Perl Cookbook actually provides similar information in a much more digestible form anyway. So you might consider trying that avenue. At 09:49 PM 7/16/00 -0700, m m wrote: Not exactly sure why this book is out of print, "but its available online through the O'Reilly Open Books

Re: Help needed for using Apache::DBI

2000-07-17 Thread Nigel Hamilton
Hi, I've had the same bug for the past 3 weeks. As far as I can tell mod_perl has been installed fine (EVERYTHING=1 etc..) so I'm at loss to explain why ... A couple of other people have mentioned this bug recently too ... has anyone solved it? NIge On Mon,

RE: Help needed for using Apache::DBI

2000-07-17 Thread PHANI MADHAVI
Hi, Yes... installed apache, mod_perl, mysql, dbi and dbd modules using their source code. and mod_perl has been installed with the option EVERTYTHING=1. But of no use.. IF AT ALL ANYBODY KNOWS HOW TO MAKE APACHE::DBI WORK,PLEASE HELP Regards, Madhavi -Original Message- From: Nigel

Re: Help needed for using Apache::DBI

2000-07-17 Thread darren chamberlain
PHANI MADHAVI ([EMAIL PROTECTED]) said something to this effect: IF AT ALL ANYBODY KNOWS HOW TO MAKE APACHE::DBI WORK,PLEASE HELP The guide is quite clear on how to use and set up Apache::DBI: http://perl.apache.org/guide/databases.html#Apache_DBI_Initiate_a_persist

Apache segfault

2000-07-17 Thread Trond Arve Nordheim
Hi. I'm having problems with my Apache segfaulting when I run subroutines from modules that uses DBI. ([Mon Jul 17 13:55:22 2000] [notice] child pid 28327 exit signal Segmentation fault (11)). It seems like the DBI-connection function causes this, but I'm not able to find out why. It's actually

re: Why is this book out of print? (Thanks)

2000-07-17 Thread jmeltze
I will try the online sources - many thanks for the pointers. And I have the Perl Cookbook, so I will look in there too. I checked the local Barnes and Noble, and two Borders stores. No dice. Thanks to all for the help. -- Jonathan On 16 Jul 00, at 21:49, m m wrote: Not exactly sure why

Re: Apache segfault

2000-07-17 Thread Lukas Ertl
On Mon, 17 Jul 2000, Trond Arve Nordheim wrote: Hi. I'm having problems with my Apache segfaulting when I run subroutines from modules that uses DBI. ([Mon Jul 17 13:55:22 2000] [notice] child pid 28327 exit signal Segmentation fault (11)). It seems like the DBI-connection function causes

Re: Apache segfault

2000-07-17 Thread Michael Hanisch
On Mon, 17 Jul 2000, Lukas Ertl wrote: On Mon, 17 Jul 2000, Trond Arve Nordheim wrote: Hi. I'm having problems with my Apache segfaulting when I run subroutines from modules that uses DBI. ([Mon Jul 17 13:55:22 2000] [notice] child pid 28327 exit signal Segmentation fault (11)). It

Re: Why is this book out of print?

2000-07-17 Thread Rodney Broom
I have this book, it's OK. I think it's mostly good for a guide on using LWP, but it sounds like that's what you need. Maybe this will help. ISBN: 156592214X Rodney Broom

Re: Core Dump

2000-07-17 Thread Dana Powers
Here is the backtrace, but as you can see it is a mod_ssl issue, so I have moved this discussion to [EMAIL PROTECTED] If anyone has comments, however, please feel free to let me know! Dana #0 0x4007b105 in SSL_CTX_ctrl () #1 0x8083500 in ssl_init_Module () #2 0x8083827 in ssl_init_Module ()

Re: Web server log wrong time.

2000-07-17 Thread Steven Zhu
Hi Jim: We are starting httpd web server as root, then spawn httpd as www. They all have timezone setup as CDT. I checked the date from different shell. They are all correct. I have /etc/localtime pointing to /usr/share/zoneinfo/US/Central. I don't know why it uses raw clock. Thank you very

Re: Help needed for using Apache::DBI

2000-07-17 Thread Edmund Mergl
PHANI MADHAVI wrote: Hi All, we have installed Apache::DBI module ( system os is linux, web server apache, running mod_perl and mysql is rdbms) in our systems. But it is not working. When i try to compile a sample file to test db connectivity using Apache::DBI, it does not work. Same

errno 19 with read() called from a mod_perl script

2000-07-17 Thread Doug Luce
First, the setup: I'm trying to use the Lingua::Ispell module from my script (running under mod_perl Registry). The Ispell module basically starts ispell as a coprocess via open2(), then feeds it some lines of text and reads the responses. After my script starts and kicks off the ispell

Re: PerlRun question

2000-07-17 Thread Andrew Chen
Thanks for the idea. I went ahead and implemented this, and am very close. I currently have a script looks at all the variables and undefines all of them with a few exceptions (code copied from PerlRun.pm of mod_perl source). The way that the exceptions are managed is that I keep a list of the

Re: PerlRun question

2000-07-17 Thread Perrin Harkins
On Mon, 17 Jul 2000, Andrew Chen wrote: In the to-keep list, there's the obvious stuff (database and other base libraries) but also I ran a blank script and kept all the variables brought up in that blank list (Apache::*, c.). This way I'm not clearing stuff that I'm supposed to. I'd suggest

RE: ORA conference

2000-07-17 Thread Ask Bjoern Hansen
On Sun, 16 Jul 2000, Doug MacEachern wrote: [...] cool, me and brian are leaving around 7, we should be in town by 9, and will go there after checking in. you can sorta tell what i look like from this photo, i'll wear the same shirt. yup, you did. http://photo.tomat.dk/tpc4/dsc_4552.html

Re: Problem with Apache install from source

2000-07-17 Thread Rich Lemanski
Hello, I have been trying to get mod_perl running on my Mandrake Linux 7 system that was supposed to have mod_perl installed along with Apache when I originally installed the OS. I have the following on my system: Apache, Version 1.3.12 perl, version 5.005_03 built for i386-linux gcc version

Re: Problem with Apache install from source

2000-07-17 Thread Rich Lemanski
Hello, I have been trying to get mod_perl running on my Mandrake Linux 7 system that was supposed to have mod_perl installed along with Apache when I originally installed the OS. I have the following on my system: Apache, Version 1.3.12 perl, version 5.005_03 built for i386-linux gcc version

Re: Problem with Apache install from source

2000-07-17 Thread Rich Lemanski
Sorry, I made a typo: the path I enter is http://192.168.0.2/mod-perl/modperl.pl Thanks. Rich Lemanski wrote: Hello, I have been trying to get mod_perl running on my Mandrake Linux 7 system that was supposed to have mod_perl installed along with Apache when I originally installed the OS.

errno 19 with read() called from a mod_perl script

2000-07-17 Thread Doug Luce
First, the setup: I'm trying to use the Lingua::Ispell module from my script (running Registry under mod_perl). The Ispell module runs the ispell executable as a coprocess via open2(). It then feeds the coprocess some lines of text and reads the responses. And, the problem: After my script

Re: Weird Perl behaviour

2000-07-17 Thread G.W. Haywood
Hi there, On Sun, 16 Jul 2000, Ask Bjoern Hansen wrote: On Thu, 13 Jul 2000, G.W. Haywood wrote: httpd.conf I see that %port is a lexical but $Port isn't. Is that a clue? I don't think so. Except if mod_perl does some very weird stuff they should be all separate. Yeah, well I

Re: Web server log wrong time.

2000-07-17 Thread G.W. Haywood
Hi there, On Sat, 15 Jul 2000, Steven Zhu wrote: script runs from command line, it is also correct. The only problem comes from web server which logs wrong time and shows wrong time on browser. Have you tried getting the output of a simple Perl script which prints gmtime and localtime? Are

Re: PerlRun question

2000-07-17 Thread Andrew Chen
On Mon, 17 Jul 2000, Perrin Harkins wrote: I think it's trying to call a method for an object that doesn't exist anymore. My guess is that I am keeping a certain variable that keeps a list of the object in memory or something similar that I should really be flushing. Because I'm

Common request..

2000-07-17 Thread Michael Bacarella
Howdy, I'm going to pull the infamous "I've never been a part of this list and I only come join the community once I have a problem" bit. In retrospect, I'm an idiot for not having joined sooner. I apologize for the blatant intrusion but I'm sure at least some of you have been in this position

Re: Common request..

2000-07-17 Thread Ken Williams
Michael, Here's TFM you can R to solve your problem: http://perl.apache.org/guide/config.html#A_Script_From_One_Virtual_Host_C You're not going crazy, the scripts are (probably) actually stomping on each other. Welcome to the list - we're not (very) fascist toward newbies or people who

Re: PerlRun question

2000-07-17 Thread Ken Williams
[EMAIL PROTECTED] (Perrin Harkins) wrote: On Mon, 17 Jul 2000, Andrew Chen wrote: On Mon, 17 Jul 2000, Perrin Harkins wrote: I think it's trying to call a method for an object that doesn't exist anymore. My guess is that I am keeping a certain variable that keeps a list of the

RE: ORA conference

2000-07-17 Thread brian moseley
On Mon, 17 Jul 2000, Ask Bjoern Hansen wrote: http://photo.tomat.dk/tpc4/dsc_4552.html hey that didn't take long. nice evening of hanging with mod_perl buddies. in fact i just left everybody at the pub, buncha lushes. cutely enough, when i started netscape on this terminal, it was set up for

Re: ORA conference

2000-07-17 Thread John D Groenveld
in fact i just left everybody at the pub, buncha lushes. I resemble that remark... John [EMAIL PROTECTED] The Applied Research Laboratory Pennsylvania State University State College, Pennsylvania not to be confused with Upenn, OSU, U Mich or any other University

RE: Help needed for using Apache::DBI

2000-07-17 Thread PHANI MADHAVI
Hi, The script is running as a mod_perl script ( httpd.conf of Apache webserver has been modified so that the scripts run under mod_perl rather than under CGI). Madhavi -Original Message- From: Edmund Mergl [mailto:[EMAIL PROTECTED]] Sent: Monday, July 17, 2000 11:08 PM To: PHANI

Can Apache/mod_perl RPM distros work???

2000-07-17 Thread Richard M. Lemanski
I know that I have probably beat this issue to a dead horse but has anyone been successful getting Apache to work with mod_perl from RPM installations in the initial setup of Linux (RedHat 6.2, Mandrake Linux 7.0 or the like)? Bear with me, this email includes all my configuration information

Re: Can Apache/mod_perl RPM distros work???

2000-07-17 Thread Michael Todd Glazier
I finally got mod_perl with DSO running perfectly under Redhat 6.2 by doing a no-no. I kept the default Apache RPM that came with Redhat (it's a very convenient set-up) and compiled mod_perl DSO outside the Apache source tree using apxs. INHO, keeping the Apache RPM and compiling mod_perl

RE: Help needed for using Apache::DBI

2000-07-17 Thread PHANI MADHAVI
Hi, All the guidelines given in the guide have been followed. Specifically, there is a section which goes by the title ' my apache does not work ' { Make sure you have it installed. Make sure you configured mod_perl with EVERYTHING=1. Use the example script eg/startup.pl (in the

RE: ORA conference

2000-07-17 Thread Jason Bodnar
Yeah, sorry about that guys. I got cornered by our VP of Business Development and he poured beer down my throat all night. Hope the Crown and Anchor worked out fine for you guys. On Mon, 17 Jul 2000, brian moseley wrote: On Mon, 17 Jul 2000, Ask Bjoern Hansen wrote: