可以教我怎麼加嗎?
The wizard.php script has to be removed after the installation process.
               Please remove it first to continue.");
        die();
    }
   // initialize the session
   SessionManager::init();
    $controller = new AdminController();
    // load the plugins, this needs to be done *before* we call the
    // Controller::process() method, as some of the plugins _might_
    // add new actions to the controller
    $pluginManager =& PluginManager::getPluginManager();
    $pluginManager->loadPlugins();
    // give control to the, ehem, controller 

    $controller->process( HttpVars::getRequest(), "op");
?>