in reply to Installing Net::LDAP module.

If you do something as root, and then try the same thing as a more mundane user and it doesn't work, then you are almost certainly running into a permission problem. In your case, check whether your user has access rights to the various directories in @INC. To be able to use a module, you need read rights on the directory containing the module and execute rights on every directory in the path leading to it. Of course, this assumes you're on a Unixy OS, but since your superuser is called root, that's probably the case.

CU
Robartes-

Replies are listed 'Best First'.
Re: Re: Installing Net::LDAP module.
by Anonymous Monk on Oct 02, 2002 at 21:10 UTC
    Robert, That worked. Thanks. But aren't modules installed with every directory being executable in the first place?

    I used:

    perl Makefile.PL

    make

    make test

    make install

    Thanks.