-- 
I am trying to use mod_perl and a startup.pl file with cache lib 
references (referenced in the httpd.conf) to speed up my cgis.

##  This seems to be just a warning that something has changed.  Is that right?

[Thu Aug 16 17:47:49 2001] Apache.pm: Subroutine Apache::WRITE 
redefined at /System/Library/Perl/darwin/mod_perl.pm line 14.

## I am not sure what this error means.  I could not find getsockname 
in any of my documentation.

[Thu Aug 16 17:17:48 2001] [error] (22)Invalid argument: getsockname
dyld: /usr/sbin/httpd multiple definitions of symbol __dig_vec
/usr/libexec/httpd/libphp4.so definition of __dig_vec
/Library/Perl/darwin/auto/DBD/mysql/mysql.bundle definition of __dig_vec
dyld: /usr/sbin/httpd multiple definitions of symbol __dig_vec
/usr/libexec/httpd/libphp4.so definition of __dig_vec
/Library/Perl/darwin/auto/DBD/mysql/mysql.bundle definition of __dig_vec

###I assume from this that apache really is starting up

[Thu Aug 16 17:20:32 2001] [notice] caught SIGTERM, shutting down

Thanks,
Brett

P.S. I am not afraid of print. If anyone can direct me to sources 
that will answer my questions I appreciate it.



In case anyone is interested --
My startup.pl checks out.  I commented out the ScriptAlias in my 
httpd.conf and put in the following:

  # ScriptAlias /cgi-bin/ "/Library/WebServer/cgi-bin/"

   PerlRequire /Library/WebServer/startup.pl

   Alias /cgi-bin /Library/WebServer/cgi-bin
   <Location /cgi-bin>
     SetHandler perl-script
     PerlHandler Apache::Registry
     Options ExecCGI
     allow from all
     PerlSendHeader On
   </Location>

Reply via email to