in reply to Re: How do I...Redirect error.log data to a file of my chosing
in thread How do I...Redirect error.log data to a file of my chosing

Perl is functional as I did a simple "hello world" test.

The problem that I am finding *now* is that the "use lib" I have defined to point to my modules location is invalid. I have tried the following:

use lib "/lib";
use lib "/cgi-bin/lib";
use lib "$ENV{'DOCUMENT_ROOT'}/cgi-bin/lib";
use lib "/home/httpd/www.shrum.net/cgi-bin/lib";

...but none of these work. I have a email into the support guys at 1dollarhosting to get the correct prefix path to use in the "USE LIB".

Thanx

======================
Sean Shrum
http://www.shrum.net

  • Comment on Re: Re: How do I...Redirect error.log data to a file of my chosing

Replies are listed 'Best First'.
Re: Re: Re: How do I...Redirect error.log data to a file of my chosing
by Kanji (Parson) on Jun 02, 2002 at 21:50 UTC

    With this much grief, I would have changed providers long before now ...

    That said, you probably want use lib './lib'; if the lib directory is in the same place you keep your CGIs.

    That should even work in a chrooted environment, but if it doesn't I suggest some careful probing of where your scripts think they are and what they can see.

        --k.