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