On Thu, 27 Jan 2005 08:14:44 -0800, Chris Nandor <[EMAIL PROTECTED]> wrote:
> In article <[EMAIL PROTECTED]>, [EMAIL PROTECTED] (Brian Dimeler)
> wrote:
> 
> > I'm running Apache 1.3.29, perl 5.8.1, Mac OS X 10.3.4 (all factory
> > defaults) and mod_perl 1.29 on a G4 PowerPC. I don't -think- there's
> > anything weird about my mod_perl installation; it was installed from the
> > TAR file on perl.apache.org. I certainly don't recall any difficulty
> > setting it up, and it's worked fine except for the Mac::Glue thing. I do
> > have fast user switching enabled; could that have any effect on this stuff?
> 

look at your code vs. Chris':

> my $book = new Mac::Glue 'Address Book',
>         eppc => 'Address Book',
>         'mac8.local' # hosts both the webserver + addressbook
>         undef, undef, # uid & pid omitted
>         'Mac8', 'mypass' # Mac8 is the Admin user & owner of addressbook
>
> This line apparently causes the server child process to exit:
>
> [Fri Jan 14 11:02:40 2005] [notice] child pid 6070 exit sign

vs.

>    my $book = new Mac::Glue 'Address Book',
>       eppc => 'Address Book',
>       'bourque.local', undef, undef,
>       'pudge', 'pass';
>    print $book->prop('version')->get, "\n\n";
>    $book->activate;

I can't test this right now, but on first blush, it ooks like as you
added comments, you left out the comma after 'mac8.local', and your
thrid and fourth lines come out to:

'mac8.local' undef, undef, [two elements]

instead of

'mac8.local', undef, undef, [three elements]

That's a little typo, but it's a big defference.

HTH,

--jay

Reply via email to