Hi Jaron, On Mon, Jan 13, 2003 at 09:37:54AM -0600, Jaron Parsons wrote: > Hopefully someone might be able to help me out with some of these > installation problems I am having, I hve been hacking my way through it, > but have hit a snag, and I am not sure where to go from here. > > First . About my system > > I am running FreeBSD 4.7, Apache 1.3.23 with SSL, Mod_perl, mod_php4. > It is a beefy system hardware wise, so I don't think that is the issue, > but if someone would like to know the specs I would be happy to post > them. > > I have installed all the perl modules from CPAN that are listed in the > INSTALL instructions. > > When I try to run the installer.pl I get a 500 Internal Server error > page, and looking at the apache error log I see: > > [Mon Jan 13 09:07:00 2003] [error] syntax error at > /usr/local/www/data.default/pages/OpenTRS/bin/cgi-bin/../../Kernel/Confi > g.pm line 539, near "$_;" > > BEGIN failed--compilation aborted at > /www/data/pages/OpenTRS/bin/cgi-bin/installer.pl line 38.
It is a bug in 0.5 Beta8 with Perl 5.0 (see http://bugs.otrs.org/show_bug.cgi?id=54). Change the following in Kernel/Config.pm ~ line 539: [...] push (@ISA, $Self->{SubConfigs}->{$_}); $Self->$_; [...] to: [...] push (@ISA, $Self->{SubConfigs}->{$_}); $Self->$_() [...] and it will work. PS: OTRS 1.0 RC1 is released (ftp://ftp.gwdg.de/pub/misc/otrs/)! :) > Jaron Parsons Martin -- Martin Edenhofer - <martin at edenhofer.de> - http://martin.edenhofer.de/ -- "Security is a process, not a product." - Bruce Schneier _______________________________________________ OTRS mailing list: otrs - Webpage: http://otrs.org/ Archive: http://lists.otrs.org/pipermail/otrs To unsubscribe: http://lists.otrs.org/cgi-bin/listinfo/otrs
