Community
    • Categories
    • Recent
    • Popular
    • Users
    • Search
    • Register
    • Login

    Manuelle Installation "isys_registry"

    Scheduled Pinned Locked Moved Betrieb
    2 Posts 2 Posters 921 Views 1 Watching
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • R Offline
      RenéP
      last edited by

      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.

      1 Reply Last reply Reply Quote 0
      • dsD Offline
        ds
        last edited by

        Die isys_registry ist eigentlich im System Dump enthalten (idoit_system.sql):

        CREATE TABLE isys_registry (
          isys_registry__id int(11) NOT NULL auto_increment,
          isys_registry__parentid int(11) default NULL,
          isys_registry__key varchar(255) collate utf8_unicode_ci default NULL,
          isys_registry__value text collate utf8_unicode_ci,
          isys_registry__deletable int(10) unsigned default NULL,
          isys_registry__editable int(10) unsigned default '1',
          PRIMARY KEY  (isys_registry__id),
          KEY isys_registry_parentid (isys_registry__parentid,isys_registry__key)
        ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=93 ;

        –
        -- Daten für Tabelle isys_registry

        INSERT INTO isys_registry VALUES(1, 0, '[Root]', NULL, 0, 1);
        INSERT INTO isys_registry VALUES(24, 1, 'System', '', 0, 1);
        INSERT INTO isys_registry VALUES(25, 1, 'Idoit', '', 0, 1);
        INSERT INTO isys_registry VALUES(26, 24, 'Directories', '', 0, 1);
        INSERT INTO isys_registry VALUES(27, 24, 'User', '', 0, 1);
        INSERT INTO isys_registry VALUES(28, 24, 'Libraries', '', 0, 1);
        INSERT INTO isys_registry VALUES(29, 27, 'Session', '', 0, 1);
        INSERT INTO isys_registry VALUES(30, 27, 'General', '', 0, 1);
        INSERT INTO isys_registry VALUES(31, 28, 'MySQL', '', 0, 1);
        INSERT INTO isys_registry VALUES(32, 28, 'LDAP', '', 0, 1);
        INSERT INTO isys_registry VALUES(33, 28, 'Smarty', '', 0, 1);
        INSERT INTO isys_registry VALUES(34, 25, 'Constants', '', 0, 1);
        INSERT INTO isys_registry VALUES(35, 25, 'Modules', '', 0, 1);
        INSERT INTO isys_registry VALUES(36, 29, 'time_expirationInterval', '1800', 0, 1);
        INSERT INTO isys_registry VALUES(37, 29, 'int_guestID', '1', 0, 1);
        INSERT INTO isys_registry VALUES(38, 31, 'str_transactionIsolationLevel', 'c_isolation_level_repeatable_read', 0, 1);
        INSERT INTO isys_registry VALUES(39, 26, 'theme', '[DIR_WWW]src/themes/default/', 0, 1);
        INSERT INTO isys_registry VALUES(40, 26, 'images', '[DIR_WWW]images/', 0, 1);
        INSERT INTO isys_registry VALUES(41, 26, 'tools', '[DIR_WWW]src/tools/', 0, 1);
        INSERT INTO isys_registry VALUES(42, 26, 'temp', '[DIR_BASE]temp/', 0, 1);
        INSERT INTO isys_registry VALUES(43, 26, 'class', '[DIR_BASE]src/classes/', 0, 1);
        INSERT INTO isys_registry VALUES(44, 26, 'smarty', '[DIR_BASE]src/themes/default/smarty/', 0, 1);
        INSERT INTO isys_registry VALUES(45, 26, 'css_abs', '[DIR_BASE]src/themes/default/css/', 0, 1);
        INSERT INTO isys_registry VALUES(46, 26, 'js_abs', '[DIR_BASE]src/tools/js/', 0, 1);
        INSERT INTO isys_registry VALUES(47, 26, 'utils', '[DIR_BASE]src/utils/', 0, 1);
        INSERT INTO isys_registry VALUES(48, 32, 'int_connectionTimeOut', '10', 0, 1);
        INSERT INTO isys_registry VALUES(49, 33, 'str_debuggingControl', 'URL', 0, 1);
        INSERT INTO isys_registry VALUES(50, 33, 'bool_compileCheck', 'false', 0, 1);
        INSERT INTO isys_registry VALUES(51, 33, 'bool_caching', 'true', 0, 1);
        INSERT INTO isys_registry VALUES(52, 33, 'bool_forceCompile', 'false', 0, 1);
        INSERT INTO isys_registry VALUES(53, 33, 'str_leftDelimiter', '[{', 0, 1);
        INSERT INTO isys_registry VALUES(54, 33, 'str_rightDelimiter', '}]', 0, 1);
        INSERT INTO isys_registry VALUES(55, 33, 'str_functionTag', 'isys', 0, 1);
        INSERT INTO isys_registry VALUES(56, 33, 'str_blockTag', 'isys_group', 0, 1);
        INSERT INTO isys_registry VALUES(57, 25, 'General', '', 0, 1);
        INSERT INTO isys_registry VALUES(58, 57, 'Popup', '', 0, 1);
        INSERT INTO isys_registry VALUES(59, 58, 'int_defaultWidth', '500', 0, 1);
        INSERT INTO isys_registry VALUES(60, 58, 'int_defaultHeight', '500', 0, 1);
        INSERT INTO isys_registry VALUES(61, 58, 'str_varName', 'g_isys_popup', 0, 1);
        INSERT INTO isys_registry VALUES(62, 58, 'str_windowName', 'isysPopup', 0, 1);
        INSERT INTO isys_registry VALUES(63, 24, 'General', '', 0, 1);
        INSERT INTO isys_registry VALUES(64, 63, 'str_registryRoot', '[Root]', 0, 1);
        INSERT INTO isys_registry VALUES(65, 63, 'str_registryKeyFilter', '/^[a-zA-Z0-9.-]+$/i', 0, 1);
        INSERT INTO isys_registry VALUES(66, 24, 'Debugger', '', 0, 1);
        INSERT INTO isys_registry VALUES(67, 66, 'int_minDebugVerbosity', '1', 0, 1);
        INSERT INTO isys_registry VALUES(68, 66, 'str_filePrefix', 'debug
        ', 0, 1);
        INSERT INTO isys_registry VALUES(69, 66, 'str_fileSuffix', '.log', 0, 1);
        INSERT INTO isys_registry VALUES(70, 66, 'bool_showInPopup', 'false', 0, 1);
        INSERT INTO isys_registry VALUES(71, 66, 'bool_showSmartyDebug', 'false', 0, 1);
        INSERT INTO isys_registry VALUES(75, 25, 'i18n', '', 0, 1);
        INSERT INTO isys_registry VALUES(76, 75, 'const_defaultLanguage', 'ISYS_LANGUAGE_ENGLISH', 0, 1);
        INSERT INTO isys_registry VALUES(77, 35, 'CMDB', '', 0, 1);
        INSERT INTO isys_registry VALUES(78, 35, 'System', '', 0, 1);
        INSERT INTO isys_registry VALUES(80, 34, 'int_pageLimit', '25', 0, 1);
        INSERT INTO isys_registry VALUES(81, 57, 'Quicksave', '0', 0, 0);
        INSERT INTO isys_registry VALUES(82, 81, 'b_showQuickSaveButton', '0', 0, 1);
        INSERT INTO isys_registry VALUES(83, 27, 'Workflow', '', 0, 0);
        INSERT INTO isys_registry VALUES(84, 83, 'int_mytask_entries', '10', 0, 1);
        INSERT INTO isys_registry VALUES(85, 57, 'b_showLoadingWait', '0', 0, 1);
        INSERT INTO isys_registry VALUES(86, 83, 'int_notify', '15', 0, 1);
        INSERT INTO isys_registry VALUES(87, 34, 'SYSID__READONLY', '1', 0, 1);
        INSERT INTO isys_registry VALUES(88, 34, 'RACK_GUI_DESCENDING', '1', 0, 1);
        INSERT INTO isys_registry VALUES(89, 34, 'INFOBOX__LENGTH', '150', 0, 1);
        INSERT INTO isys_registry VALUES(90, 34, 'INFOBOX__DATEFORMAT', 'd.m.Y H:i :', 0, 1);
        INSERT INTO isys_registry VALUES(91, 34, 'LOCK__TIMEOUT', '120', 0, 1);
        INSERT INTO isys_registry VALUES(92, 34, 'LOCK__DATASETS', '0', 0, 1);

        1 Reply Last reply Reply Quote 0

        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
        • First post
          Last post