Manuelle Installation "isys_registry"
-
Ich bin nun den manuellen Weg gegangen und habe die SQLl-Skripte auf der Datenbank ausgeführt. Wohlbemerkt aber: beide zusammen in einer.
Beim Aufruf im Browser erscheint dann folgende Meldung:
isys_exception_general : Could not find table 'isys_registry' (Extended Information: General exception occured)
In den SQL-Skripten taucht diese Tabelle nicht auf, in der Installationanleitung auch nicht.
-
Die isys_registry ist eigentlich im System Dump enthalten (idoit_system.sql):
CREATE TABLE
isys_registry(
isys_registry__idint(11) NOT NULL auto_increment,
isys_registry__parentidint(11) default NULL,
isys_registry__keyvarchar(255) collate utf8_unicode_ci default NULL,
isys_registry__valuetext collate utf8_unicode_ci,
isys_registry__deletableint(10) unsigned default NULL,
isys_registry__editableint(10) unsigned default '1',
PRIMARY KEY (isys_registry__id),
KEYisys_registry_parentid(isys_registry__parentid,isys_registry__key)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=93 ;–
-- Daten für Tabelleisys_registryINSERT INTO
isys_registryVALUES(1, 0, '[Root]', NULL, 0, 1);
INSERT INTOisys_registryVALUES(24, 1, 'System', '', 0, 1);
INSERT INTOisys_registryVALUES(25, 1, 'Idoit', '', 0, 1);
INSERT INTOisys_registryVALUES(26, 24, 'Directories', '', 0, 1);
INSERT INTOisys_registryVALUES(27, 24, 'User', '', 0, 1);
INSERT INTOisys_registryVALUES(28, 24, 'Libraries', '', 0, 1);
INSERT INTOisys_registryVALUES(29, 27, 'Session', '', 0, 1);
INSERT INTOisys_registryVALUES(30, 27, 'General', '', 0, 1);
INSERT INTOisys_registryVALUES(31, 28, 'MySQL', '', 0, 1);
INSERT INTOisys_registryVALUES(32, 28, 'LDAP', '', 0, 1);
INSERT INTOisys_registryVALUES(33, 28, 'Smarty', '', 0, 1);
INSERT INTOisys_registryVALUES(34, 25, 'Constants', '', 0, 1);
INSERT INTOisys_registryVALUES(35, 25, 'Modules', '', 0, 1);
INSERT INTOisys_registryVALUES(36, 29, 'time_expirationInterval', '1800', 0, 1);
INSERT INTOisys_registryVALUES(37, 29, 'int_guestID', '1', 0, 1);
INSERT INTOisys_registryVALUES(38, 31, 'str_transactionIsolationLevel', 'c_isolation_level_repeatable_read', 0, 1);
INSERT INTOisys_registryVALUES(39, 26, 'theme', '[DIR_WWW]src/themes/default/', 0, 1);
INSERT INTOisys_registryVALUES(40, 26, 'images', '[DIR_WWW]images/', 0, 1);
INSERT INTOisys_registryVALUES(41, 26, 'tools', '[DIR_WWW]src/tools/', 0, 1);
INSERT INTOisys_registryVALUES(42, 26, 'temp', '[DIR_BASE]temp/', 0, 1);
INSERT INTOisys_registryVALUES(43, 26, 'class', '[DIR_BASE]src/classes/', 0, 1);
INSERT INTOisys_registryVALUES(44, 26, 'smarty', '[DIR_BASE]src/themes/default/smarty/', 0, 1);
INSERT INTOisys_registryVALUES(45, 26, 'css_abs', '[DIR_BASE]src/themes/default/css/', 0, 1);
INSERT INTOisys_registryVALUES(46, 26, 'js_abs', '[DIR_BASE]src/tools/js/', 0, 1);
INSERT INTOisys_registryVALUES(47, 26, 'utils', '[DIR_BASE]src/utils/', 0, 1);
INSERT INTOisys_registryVALUES(48, 32, 'int_connectionTimeOut', '10', 0, 1);
INSERT INTOisys_registryVALUES(49, 33, 'str_debuggingControl', 'URL', 0, 1);
INSERT INTOisys_registryVALUES(50, 33, 'bool_compileCheck', 'false', 0, 1);
INSERT INTOisys_registryVALUES(51, 33, 'bool_caching', 'true', 0, 1);
INSERT INTOisys_registryVALUES(52, 33, 'bool_forceCompile', 'false', 0, 1);
INSERT INTOisys_registryVALUES(53, 33, 'str_leftDelimiter', '[{', 0, 1);
INSERT INTOisys_registryVALUES(54, 33, 'str_rightDelimiter', '}]', 0, 1);
INSERT INTOisys_registryVALUES(55, 33, 'str_functionTag', 'isys', 0, 1);
INSERT INTOisys_registryVALUES(56, 33, 'str_blockTag', 'isys_group', 0, 1);
INSERT INTOisys_registryVALUES(57, 25, 'General', '', 0, 1);
INSERT INTOisys_registryVALUES(58, 57, 'Popup', '', 0, 1);
INSERT INTOisys_registryVALUES(59, 58, 'int_defaultWidth', '500', 0, 1);
INSERT INTOisys_registryVALUES(60, 58, 'int_defaultHeight', '500', 0, 1);
INSERT INTOisys_registryVALUES(61, 58, 'str_varName', 'g_isys_popup', 0, 1);
INSERT INTOisys_registryVALUES(62, 58, 'str_windowName', 'isysPopup', 0, 1);
INSERT INTOisys_registryVALUES(63, 24, 'General', '', 0, 1);
INSERT INTOisys_registryVALUES(64, 63, 'str_registryRoot', '[Root]', 0, 1);
INSERT INTOisys_registryVALUES(65, 63, 'str_registryKeyFilter', '/^[a-zA-Z0-9.-]+$/i', 0, 1);
INSERT INTOisys_registryVALUES(66, 24, 'Debugger', '', 0, 1);
INSERT INTOisys_registryVALUES(67, 66, 'int_minDebugVerbosity', '1', 0, 1);
INSERT INTOisys_registryVALUES(68, 66, 'str_filePrefix', 'debug', 0, 1);
INSERT INTOisys_registryVALUES(69, 66, 'str_fileSuffix', '.log', 0, 1);
INSERT INTOisys_registryVALUES(70, 66, 'bool_showInPopup', 'false', 0, 1);
INSERT INTOisys_registryVALUES(71, 66, 'bool_showSmartyDebug', 'false', 0, 1);
INSERT INTOisys_registryVALUES(75, 25, 'i18n', '', 0, 1);
INSERT INTOisys_registryVALUES(76, 75, 'const_defaultLanguage', 'ISYS_LANGUAGE_ENGLISH', 0, 1);
INSERT INTOisys_registryVALUES(77, 35, 'CMDB', '', 0, 1);
INSERT INTOisys_registryVALUES(78, 35, 'System', '', 0, 1);
INSERT INTOisys_registryVALUES(80, 34, 'int_pageLimit', '25', 0, 1);
INSERT INTOisys_registryVALUES(81, 57, 'Quicksave', '0', 0, 0);
INSERT INTOisys_registryVALUES(82, 81, 'b_showQuickSaveButton', '0', 0, 1);
INSERT INTOisys_registryVALUES(83, 27, 'Workflow', '', 0, 0);
INSERT INTOisys_registryVALUES(84, 83, 'int_mytask_entries', '10', 0, 1);
INSERT INTOisys_registryVALUES(85, 57, 'b_showLoadingWait', '0', 0, 1);
INSERT INTOisys_registryVALUES(86, 83, 'int_notify', '15', 0, 1);
INSERT INTOisys_registryVALUES(87, 34, 'SYSID__READONLY', '1', 0, 1);
INSERT INTOisys_registryVALUES(88, 34, 'RACK_GUI_DESCENDING', '1', 0, 1);
INSERT INTOisys_registryVALUES(89, 34, 'INFOBOX__LENGTH', '150', 0, 1);
INSERT INTOisys_registryVALUES(90, 34, 'INFOBOX__DATEFORMAT', 'd.m.Y H:i :', 0, 1);
INSERT INTOisys_registryVALUES(91, 34, 'LOCK__TIMEOUT', '120', 0, 1);
INSERT INTOisys_registryVALUES(92, 34, 'LOCK__DATASETS', '0', 0, 1);
Hello! It looks like you're interested in this conversation, but you don't have an account yet.
Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.
With your input, this post could be even better 💗
Register Login