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

    Dialog-Administrator

    Scheduled Pinned Locked Moved Entwicklung
    2 Posts 2 Posters 1.2k 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.
    • M Offline
      marco.appoldt
      last edited by

      Hallo,

      nach dem Aufruf des Dialog-Administrators unter den Systemeinstellungen erscheint folgende Fehlermeldung:

      You do not have enough access rights.
      ACL Path: \0\C__MODULE__DIALOG_ADMIN
      Right: browse
      Session: ebeb1a381001efbd3456108c45070b10

      Ich bin als User 'Admin' angemeldet.

      Grüße

      Marco Appoldt

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

        Dann wurden dem Admin beim update scheinbar keine Rechte auf das Modul gegeben.
        Du kannst diese manuell leider (momentan noch) nur per SQL-Script nachtragen:

        
        					SET @MOD_ID =
        					(SELECT isys_module__id
        					 FROM isys_module
        					 WHERE isys_module__const = 'C__MODULE__DIALOG_ADMIN');
        
        					INSERT INTO  `isys_group_2_isys_module` (
        						`isys_group_2_isys_module__id` ,
        						`isys_group_2_isys_module__isys_role__id` ,
        						`isys_group_2_isys_module__isys_module__id` ,
        						`isys_group_2_isys_module__isys_group__id`
        						)
        						VALUES (
        						NULL ,  '1',  @MOD_ID,  '15'
        						);
        					INSERT INTO  `isys_group_2_isys_module` (
        						`isys_group_2_isys_module__id` ,
        						`isys_group_2_isys_module__isys_role__id` ,
        						`isys_group_2_isys_module__isys_module__id` ,
        						`isys_group_2_isys_module__isys_group__id`
        						)
        						VALUES (
        						NULL ,  '2',  @MOD_ID,  '15'
        						);
        						INSERT INTO  `isys_group_2_isys_module` (
        						`isys_group_2_isys_module__id` ,
        						`isys_group_2_isys_module__isys_role__id` ,
        						`isys_group_2_isys_module__isys_module__id` ,
        						`isys_group_2_isys_module__isys_group__id`
        						)
        						VALUES (
        						NULL ,  '3',  @MOD_ID,  '15'
        						);
        						INSERT INTO  `isys_group_2_isys_module` (
        						`isys_group_2_isys_module__id` ,
        						`isys_group_2_isys_module__isys_role__id` ,
        						`isys_group_2_isys_module__isys_module__id` ,
        						`isys_group_2_isys_module__isys_group__id`
        						)
        						VALUES (
        						NULL ,  '4',  @MOD_ID,  '15'
        						);
        						INSERT INTO  `isys_group_2_isys_module` (
        						`isys_group_2_isys_module__id` ,
        						`isys_group_2_isys_module__isys_role__id` ,
        						`isys_group_2_isys_module__isys_module__id` ,
        						`isys_group_2_isys_module__isys_group__id`
        						)
        						VALUES (
        						NULL ,  '5',  @MOD_ID,  '15'
        						);
        
        

        Das script kannst du entweder mit zB phpmyadmin in die Mandanten Datenbank einfügen.
        Oder du speicherst es als script.sql ab und importierst ueber den mysql client (idoit_mandator mit der entsprechenden Mandanten-DB ersetzen) :
        mysql -uroot -p -D idoit_mandator < script.sql

        Wenn das immernoch nicht geht, vergewisser dich bitte einmal ob deine Admin-Rechte-Gruppe die im script fest definierte ID: 15 hat:
        (Ebenfalls zB mit phpmyadmin als SQL-Code ausführen)

        
        select * from isys_group;
        
        

        Dort müsste ungefähr sowas rauskommen:

        Edit  Delete  11  Reader      1  2  11  0
        Edit Delete 12 Editor   Editor     1 2 12 0
        Edit Delete 13 Author Author       1     2      13 0
        Edit Delete 14 Archivar Archivar     1 2 14 0
        Edit  Delete  15  Admin  Admin      1  2  15  0

        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