@@ -, +, @@ is not done yet --- installer/onboarding.pl | 6 ++++++ 1 file changed, 6 insertions(+) --- a/installer/onboarding.pl +++ a/installer/onboarding.pl @@ -18,6 +18,7 @@ # along with Koha; if not, see . use Modern::Perl; +use C4::Context; use C4::InstallAuth; use CGI qw ( -utf8 ); use C4::Output; @@ -36,6 +37,11 @@ use Koha::IssuingRules; my $input = new CGI; my $step = $input->param('step'); +unless ( C4::Context->preference('Version') ) { + print $input->redirect("/cgi-bin/koha/installer/install.pl"); + exit; +} + #Getting the appropriate template to display to the user my ( $template, $loggedinuser, $cookie ) = C4::InstallAuth::get_template_and_user( --