Added PerlRequire /usr/local/apache2/conf/startup.pl to httpd.conf
startup.pl content:

#!/usr/bin/env /usr/local/bin/perl
use Authen::Simple::NIS

Error presented:
[Mon Jun 04 07:56:38 2007] [error] /usr/local/apache2/conf/startup.pl
did not return a true value at (eval 2) line 1.\n
[Mon Jun 04 07:56:38 2007] [error] Can't load Perl file:
/usr/local/apache2/conf/startup.pl for server cabal:0, exiting...

thoughts?

On 6/4/07, Perrin Harkins <[EMAIL PROTECTED]> wrote:
On 6/4/07, Gustavo Schroeder <[EMAIL PROTECTED]> wrote:
> PerlModule Authen::Simple::NIS

In general, it's better to load your modules from a separate file.
Try making a startup.pl that looks like this:

use Authen::Simple::NIS

and then load it from httpd.conf like this:

PerlRequire startup.pl

That may show you some error messages that you missed before.

- Perrin

Reply via email to