Re: [Codestriker-user] CodeStriker installation issues
Brought to you by:
sits
From: David S. <dav...@gm...> - 2012-08-26 07:23:56
|
Actually this is strange, as the code looks like this: my $template = Template->new(); eval("use Template;"); die "Unable to load Template module: $@\n" if $@; But it should actually be like this: eval("use Template;"); die "Unable to load Template module: $@\n" if $@; my $template = Template->new(); Can you try changing it to see if it makes any difference? For some mysterious reason, this was never a problem in the past with earlier perls. Cheers, David |