X-Git-Url: http://wagnertech.de/gitweb/gitweb.cgi/mfinanz.git/blobdiff_plain/8e009de46807bec412ef3c3d449648b18c4ad01a..bf0271ab38dc2616ebdb7883e06d412d23db6612:/dispatcher.fpl diff --git a/dispatcher.fpl b/dispatcher.fpl index 7fae716f1..c83503612 100755 --- a/dispatcher.fpl +++ b/dispatcher.fpl @@ -2,11 +2,14 @@ use strict; -use FCGI; use SL::Dispatcher; - -SL::Dispatcher::pre_startup(); -my $request = FCGI::Request(); -SL::Dispatcher::handle_request('FastCGI') while $request->Accept() >= 0; +use SL::FCGIFixes; +use SL::LXDebug; + +our $dispatcher = SL::Dispatcher->new('FastCGI'); +$dispatcher->pre_startup_setup; +SL::FCGIFixes::apply_fixes(); +$dispatcher->pre_startup_checks; +$dispatcher->handle_all_requests; 1;