Emotions Mod and Tik Tak mod help

I need help with the Emotions mod and Tik Tak mod. I cannot make Emotions mod active again in Studio. It gives an error message. For Tik Tak videos mod it doesn't display the video when clicked to watch the video. The page is blank. Can someone from UNA please help me fix these issues? I am on UNA Cloud

  • 669
  • More
Replies (9)
    • Hello @Will Roberts !

      Did you contact with @MSolutions about problems of his mods? Do both apps require the changes in the code?

      • I did but it seems limited because he doesn't have access to the server

        • Are you running UNA 13 beta version or UNA 12.1 ?

          • 13 beta version the problem happened after A2

            • I updated the Tik Tok module for a client running UNA 13 beta . The membership level action for deleting any entry is missing. The SQL code is shown below but the module developer must add this as an update since you are hosted on UNA Cloud.

              -- ACL

              SET @iIdActionProfileDeleteAny = (SELECT `ID` FROM `sys_acl_actions` WHERE `Module`='ms_tiktak' AND `Name`='delete any entry' LIMIT 1);

              DELETE FROM `sys_acl_actions` WHERE `ID`=@iIdActionProfileDeleteAny;

              DELETE FROM `sys_acl_matrix` WHERE `IDAction`=@iIdActionProfileDeleteAny;

              INSERT INTO `sys_acl_actions` (`Module`, `Name`, `AdditionalParamName`, `Title`, `Desc`, `Countable`, `DisabledForLevels`) VALUES

              ('ms_tiktak', 'delete any entry', NULL, '_ms_tiktak_acl_action_delete_any_profile', '', 1, 3);

              SET @iIdActionProfileDeleteAny = LAST_INSERT_ID();

              SET @iUnauthenticated = 1;

              SET @iAccount = 2;

              SET @iStandard = 3;

              SET @iUnconfirmed = 4;

              SET @iPending = 5;

              SET @iSuspended = 6;

              SET @iModerator = 7;

              SET @iAdministrator = 8;

              SET @iPremium = 9;

              INSERT INTO `sys_acl_matrix` (`IDLevel`, `IDAction`) VALUES

              (@iAdministrator, @iIdActionProfileDeleteAny);

                Login or Join to comment.