Re: Passing a hash to a cgi outside a form?

2000-08-21 Thread Dana Powers
You might also try Data::Dumper to create eval-able expressions -> hashes, arrays, and other complex objects. Dana

Re: Core Dump

2000-07-17 Thread Dana Powers
() #3 0x80b49a9 in ap_init_modules () #4 0x80be4e5 in ap_child_terminate () #5 0x80bed03 in main () On Sun, 16 Jul 2000, Ask Bjoern Hansen wrote: > On Thu, 13 Jul 2000, Dana Powers wrote: > > > This may or may not have anything to do with mod_perl, but I am subscribed to > > this

Re: Coredump

2000-07-14 Thread Dana Powers
Thanks a lot, i knew gdb was what I should be using, but I've never had to use it so the uptake was a bit slow. Here is the stack trace: #0 0x4007b105 in SSL_CTX_ctrl () #1 0x8083500 in ssl_init_Module () #2 0x8083827 in ssl_init_Module () #3 0x80b49a9 in ap_init_modules () #4 0x80be4e5 in ap

Coredump

2000-07-14 Thread Dana Powers
Do any of you know a better place to look for help with my apache coredump problem? (see earlier message) I looked all over the apache website and found nothing useful. No mailing lists, or newsgroups or the like. All I found was bug-reporting info, which this certainly doesnt fall into yet. Dana

Core Dump

2000-07-13 Thread Dana Powers
This may or may not have anything to do with mod_perl, but I am subscribed to this list, so I figure I'll start here. I have just compiled Apache/mod_ssl/mod_perl and installed it with essentially no problems, but when I send a SIGHUP or SIGUSR1 to apache, it coredumps. This didnt happen before I

Re: DBI:mysql question

2000-07-12 Thread Dana Powers
You'll need to use $sth = $dbh->prepare(...); and $sth->execute(); Then ($lock) = $sth->fetchrow_array(); and $sth->finish(); $dbh->do assumes that you are inserting or updating and so you dont expect any results back. A GET_LOCK does not work like that, as you have noted, so you will need to trea

Re: Using modules

2000-07-10 Thread Dana Powers
# Library: /path/to/library/foo.pm use lib 'path/to/library'; use foo; Make sure that the process has permissions to read the file too. Dana On Sun, 09 Jul 2000, Srinidhi Rao S wrote: > > Hi all, > I have a small problem. I have a package which is not situated in perl\lib folder. >It has a

Re: Apache : mod_perl vs fastcgi

2000-07-06 Thread Dana Powers
On Thu, 06 Jul 2000, Pramod Sokke wrote: > >1) I installed apache with mod_perl - the speed increased.But I didn't > >understand HOW mod_perl optimizes use of resources and increases speed ? > >Does it share perl interpreter, script or anything else? > > The Perl runtime library is linked into th

Re: Script that stays on the same page

2000-07-05 Thread Dana Powers
I would try using a Non-Parsed-Header (NPH) script and return something like this: print << "END"; HTTP/1.0 204 No Response END Dana On Mon, 03 Jul 2000, Pierre-Yves BONNETAIN wrote: > Hello, > >For my server, I need to write some script that will be 'regularly' > triggered (GET o