Re: Apache mod-perl fails to execute

2000-09-19 Thread rwk
> [EMAIL PROTECTED] wrote: > > > > open(F, '> /tmp/count) > > --^^ > > Is that just a typo in the email, or is there really a closing ' > missing? Just a typo in the email... > > > > I don't know where to begin to debug this. Any suggestions? > > The apache error_log fi

Re: Apache mod-perl fails to execute

2000-09-19 Thread Brian S. Craigie
[EMAIL PROTECTED] wrote: > > open(F, '> /tmp/count) --^^ Is that just a typo in the email, or is there really a closing ' missing? > > I don't know where to begin to debug this. Any suggestions? The apache error_log file (usually in /usr/local/apache/logs or somewhere

Re: Apache mod-perl fails to execute

2000-09-19 Thread Alexander Farber (EED)
[EMAIL PROTECTED] wrote: > it finishes. So the "use DBI" is working, but the httpd deamon dies > anyway, but only when "use DBI" is present. Maybe you have to specify the path to Perl modules by setting the PERL5LIB in your httpd's environment or by using "use lib qw (/path/to/modules)" in your

Apache mod-perl fails to execute

2000-09-19 Thread rwk
I have what must be a very stupid problem... I cannot get Apache httpd to start when I use DBI in the startup file. Here are two examples of my startup file. The first one works (i.e., httpd runs). The second one fails (i.e., httpd won't run.) 1. Startup.pl #!/usr/bin/perl # use DBI; 1; 2.