On Wed, Nov 12, 2014 at 4:54 AM, Patton, Billy N <billy.pat...@h3net.com> wrote: > I’ve , mistakenly, updated to Mac OS 10.10 Yosemite. > That completely caused my app to fail in Apache 2.4. > Looks like it might be a version problem for TT.pm
TT.pm is really 'Template.pm'. Are you sure the Perl you're using has it installed? What does 'perl -MTemplate -e 1' tell you if you run it in a terminal? On my Yosemite install, the system perl (at /usr/bin/perl) does not have Template.pm installed. I'm not sure whether installed modules were propagated across the update process (because I don't rely on the system perl for anything), but I would strongly suspect they were _not_. You should consider -- *strongly* consider -- using perlbrew or plenv to set up a Perl installation that is not under the control of your operating system vendor. That helps reduce the occurrence of these issues. > I’ve tried to install a new TT.pm from cpan but it tells me that it is up to > date. > I’ve tried changing the Template->new to HTML::Template-> new with bad > results. > I’ve tried changing use Template to use HTML::Template with bad results > I’ve tried changing the use Template 2.0; to use Template. results are still > it fails; One more note. This ^^ is what thrashing looks like. Don't start randomly changing around pieces of your code hoping things will magically work. Look at the actual error message that you're getting, from the code that used to work. What does that say? j. -- To unsubscribe, e-mail: beginners-unsubscr...@perl.org For additional commands, e-mail: beginners-h...@perl.org http://learn.perl.org/