Hallo,
nach der Installation habe ich keine Login-Seite.
Der Installer install.sh und Install-Wizard http://<server>/installer/
liefen sauber durch.
Datenbanken wurden sauber angelegt.
MySQL durchgestartet.
Keine Einträge in Apache-Errorlog.
Meine config.inc:
/****************************************************************************
- i-doIT Servicemanagementsystem
- Shortname: Configuration
- Module: Globals
- Author: Andr�W�ten
- Description:
- Variables for configuration
- Change Log:
- 06.10.2004 - Andr�W�ten
- Code refactored and added as config.inc to i-doIT
*/
/* Global configuration parameters */
$configGlobal = array(
"version" => "0.8.5", // i-doIT Version
"htmlTitle" => "i-doIT", // Title in browser
"navTitle" => "i-doIT", // Title in navigation bar
"maxSessTime" => 1800, // maximal session time in seconds
"theme" => "default", // Theme to use
#"baseDir" => "/usr/local/perf/i-doit", // i-doIT base directory,
"baseDir" => "/i-doit", // i-doIT base directory,
// remember! this is for html, not
// real pathnames
"loginTypes" => array("sql"), // login types
"globalPassword" => "enter_here", // global administration password, set it here
"language" => "de", // language to use
"mainMaxAnnouncements" => 6, // Specify maximal announcements on main page here
"mainMaxUpdates" => 20, // Specify maximal updates on main page
"companyName" => "Meine Firma" // Company name (should be outsourced to DB)
);
/* Theme directory */
$configGlobal["themeDir"] = "themes/".$configGlobal["theme"]."/";
?></server>