Gossamer Forum
Home : Products : Others : MySQLMan :

fatal undef error

Quote Reply
fatal undef error
I can't seem to get this working.

DEBUG
==========================================
Error Message : fatal undef error:
Script Location : f:/ftp/mysql/mysql.cgi
Perl Version : 5.006

on Win2k Professional running Apache with ActivePerl and mySQL (win32 binary)

same error when ran on IIS 5.0

almost no changes made to the cfg file

and I got DBI and DBD-mySQL installed for ActivePerl

Quote Reply
Re: fatal undef error In reply to
Have you tried adding the following codes at the top of the mysql.cgi script?

Code:

use lib 'f:/ftp/mysql';


Regards,

Eliot Lee
Quote Reply
Re: fatal undef error In reply to
Yeah, I put it in there but it's still not working.

Quote Reply
Re: fatal undef error In reply to
nevermind, i got it.
looks like i needed to use:
use lib 'C:/inetpub/perl/site/lib';
instead of
use lib 'C:/inetpub/perl/lib';
(might be an ActivePerl thing)