]> wagnertech.de Git - kivitendo-erp.git/blobdiff - admin.pl
Problem ist erledigt, muss nicht mehr dokumentiert werden.
[kivitendo-erp.git] / admin.pl
deleted file mode 120000 (symlink)
index 385000d1b34a6025982f3a10bac6d64bebbf6974..0000000000000000000000000000000000000000
--- a/admin.pl
+++ /dev/null
@@ -1 +0,0 @@
-am.pl
\ No newline at end of file
new file mode 100755 (executable)
index 0000000000000000000000000000000000000000..ef97a15a1465b964407359930805122102865810
--- /dev/null
+++ b/admin.pl
@@ -0,0 +1,16 @@
+#!/usr/bin/perl
+
+use strict;
+
+BEGIN {
+  unshift @INC, "modules/override"; # Use our own versions of various modules (e.g. YAML).
+  push    @INC, "modules/fallback"; # Only use our own versions of modules if there's no system version.
+  push    @INC, "SL";               # FCGI won't find modules that are not properly named. Help it by inclduging SL
+}
+
+use SL::Dispatcher;
+
+SL::Dispatcher::pre_startup();
+SL::Dispatcher::handle_request('CGI');
+
+1;