I am trying to boot a catalyst app, but it keeps failing on start up because it says that it can’t find the module HTML::FormHandler::Field::TextArea that I use. This is the error it gives me:
Can't locate HTML/FormHandler/Field/Textarea.pm in @INC (@INC contains:
/usr/lib64/perl5/site_perl/5.8.8/x86_64-linux-thread-multi
/usr/lib/perl5/site_perl/5.8.8
/usr/lib/perl5/site_perl /usr/lib64/perl5/vendor_perl/5.8.8/x86_64-linux-thread-multi
/usr/lib/perl5/vendor_perl/5.8.8 /usr/lib/perl5/vendor_perl /usr/lib64/perl5/5.8.8/
x86_64-linux-thread-multi
/usr/lib/perl5/5.8.8 .)
However, I’ve looked in my filesystem and I know for a fact that the module is located at /usr/lib/perl5/site_perl/5.8.8/HTML/FormHandler/Field/TextArea.pm. And as you can see above @INC does include the path to this file. Does anyone know why the script can’t find it? Thanks!
Textareashould beTextAreawould be my thought. Including your code would nail it.