Can't locate loadable object DBD::mysql in @INC

2002-08-17 Thread Nik
Hello Everyone, We are attempting to use a Perl script to access MySQL on Red Hat Linux release 7.2 (Enigma) Kernel 2.4.7-10 on an i686 Unfortunately, the below error keeps appearing: - install_driver(mysql) failed: Can't locate loadable object for module DBD::mysql in

Re: Can't locate loadable object DBD::mysql in @INC

2002-08-17 Thread Wiggins d'Anconia
Changing @INC would work, but to save yourself hassle later and possibly to avoid further problems you might consider upgrading/re-installing DBI, and DBD-mysql through CPAN as well, as that should fix the problems and keep your CPAN installation contiguous, aka you upgraded Perl through CPAN

Re: How fatalsToBrowser works ?

2002-08-17 Thread Connie Chan
Thanks everybody, I've made it =)) code package Die4CGI; use strict; $main::SIG{__DIE__} = \Die4CGI::die; sub die { my $dieMesg = shift; $dieMesg =~ s/ at .+$//; my ($package, $file, $line) = caller; $file =~ s/^C:\\Server\\Staff\\Connie\\Project\\onTry\\/\\/; $file =~ s/\\/\//g; print

Re: Can't locate loadable object DBD::mysql in @INC

2002-08-17 Thread Nik
Thank you for the help, it is appreciated. We installed DBI and DBD

Re: How fatalsToBrowser works ?

2002-08-17 Thread Gunther Birznieks
You might find this link useful... http://perl.apache.org/docs/general/perl_reference/perl_reference.html#Exception_Handling_for_mod_perl Basically, fatalsToBrowser is OK to use, but it can be fraught with underlying issues that Matt outlines pretty well in the above URL. Has also given a

Online installer

2002-08-17 Thread Soheil Shaghaghi
Hello everyone, Can anyone tell me how to create an online cgi installer? Details: I have a program that want to install on my user's website upon their request. What I am looking for is some kind of form which the user fills out entering their ftp username/password, the directory where they want

Re: Online installer

2002-08-17 Thread Connie Chan
Hello everyone, Can anyone tell me how to create an online cgi installer? Details: I have a program that want to install on my user's website upon their request. Where are those 'website' located ? Do you mean you need a configurator at your local(server) side ? What I am looking for is