|
From: Tom P. <to...@in...> - 2001-03-29 20:33:32
|
on 3/29/01 3:13 PM, Brian Aker at br...@ta..., wrote:
> Tom Pryor wrote:
>>
>> How do you add users after you have installed the module via cpan?
> Two ways. Go back to the directory where you downloaded it too
> and type perl Makefile.PL (it will ask you if you want to keep your
> old definitions, do). Or, edit the Password.pm file by hand in
> site_perl.
> Or just rerun the entire thing and add back in all the info.
>
> On my list is to make this easier, but I have a few things a head
> of it.
> -Brian
Cool,
Like this
my $virtual1 = {
'alton' => {
'driver' => 'mysql',
'username' => 'alton',
'attributes' => {},
'port' => '',
'database' => 'AAAAA',
'password' => 'XXXXX',
'host' => 'localhost',
'connect' =>
'DBI:mysql:database=alton;host=localhost'
}
'alton2' => {
'driver' => 'mysql',
'username' => 'alton2',
'attributes' => {},
'port' => '',
'database' => 'BBBBB',
'password' => 'YYYYYY',
'host' => 'localhost',
'connect' =>
'DBI:mysql:database=alton;host=localhost'
}
};
Thanks!
Sincerely,
--
Tom Pryor
daVinci Interactive, LLC
http://www.dvia.com/
office: 888-346-5973
to...@da...
Your single source for all your web development needs.
Domain Names, Hosting, Monitoring, Design and Programming
|