in reply to Re: mod_perl : Couldnt load Apache.pm
in thread mod_perl : Couldnt load Apache.pm
Thanks for your time. Now my startup.pl looks like
Still have same error - "Apache.pm was not loaded". I have installed mod_perl from apache.org today and Apache::DBI from CPAN. So I thing both are latest packages.#!/usr/bin/perl BEGIN { use Apache::DBI; } $dbh = Apache::DBI->connect_on_init("DBI:mysql:database=dbname;host=lo +calhost","dbuser","dbpass",{ PrintError => 1, RaiseError => 0, AutoCo +mmit => 1}); 1;
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^3: mod_perl : Couldnt load Apache.pm
by chargrill (Parson) on Aug 29, 2007 at 16:53 UTC | |
by perrin (Chancellor) on Aug 29, 2007 at 19:52 UTC |
In Section
Seekers of Perl Wisdom