I'm having a problem that I cannot get past. When I try to open the login page at this address:
http://www.some-domain.com/cgi-bin/DADA/mail.cgi I get this error:
Can't locate DADA/Config.pm in @INC (@INC contains: ./ ./DADA ./DADA/perllib/home/
I changed a portion of the mail.cgi file and the error message changed to reflect the change I had made. It seems I need to have a correct route to something.
The mail.cgi file has these instructions. Have you had to modify this line to get it working?
use lib qw(
./
./DADA
./DADA/perllib/home/httpd/vhosts/yourdomain.com/httpdocs/
../../../perl
../../../perllib
);
# This list may need to be added to. Find the absolute to path to this
# very file. This:
#
# /home/youraccount/www/cgi-bin/dada/mail.cgi
#
# Is an example of what the absolute path to this file may be.
#
# Get rid of, "/mail.cgi"
#
# /home/youraccount/www/cgi-bin/dada
#
# Add that line after, "./DADA/perllib" above.
(ROB: Edited at j-z's request)