Forum Replies Created

Viewing 15 posts - 916 through 930 (of 2,529 total)
  • Author
    Posts
  • Vladimir
    Keymaster

    I missed this topic somehow. My apologies for delay with response.
    The recent clarification is very important. I missed during development the scenario with user account activation via link sent by email and tested only interactive user creation by admin without confirmation email involved. So look at this part (activation of account with multiple roles via link from confirmation email) as a feature, which is not realized yet. I will add it definitely. I will try to make it with the next update.

    in reply to: Smart Slider 3 Access Not Working #5547
    Vladimir
    Keymaster

    As “Not selected” requires careful tuning by including additional URL arguments to white list, I asked you to show how do you build “Selected” list. Is it direct inversion of that you showed above? I wonder why do you have a problem with access to Widgets and Menus under Appearance with “Selected” model. It’s the 1st time I get such report. If it’s possible to looks at your site on-line send URL and admin credentials to suport [at-sign] role-editor.com

    in reply to: Smart Slider 3 Access Not Working #5542
    Vladimir
    Keymaster

    Hi,

    Show screenshot of “Admin menu access” selection you made for the “Block Selected” variant.

    “Block not Selected” requires more careful tuning to workaround a redirection to admin dashboard. Explanation is here.

    in reply to: other roles bug #5540
    Vladimir
    Keymaster

    I published version 4.50.1 just now be cause of other bug report – Front-end menu access add-on was not loaded due to it. Both bugs were fixed at 4.50.1 release.

    in reply to: other roles bug #5537
    Vladimir
    Keymaster

    Hi,

    Thanks for this bug report. I confirm it. I will include a fix into upcoming version 4.50.1. I will publish it in a few days, just in case some other bugs will be discovered. Until that, it will be available as beta version 4.50.1.b1.

    Quick fix – replace URE_Other_Role_Access::update_data() method with this version:

    
        public function update_data() {
        
            if (!isset($_POST['action']) || $_POST['action']!=='ure_update_other_roles_access') {
                return;
            }
            
            $editor = URE_Editor::get_instance();
            if (!current_user_can(self::OTHER_ROLES_ACCESS_CAP)) {
                $editor->set_notification( esc_html__('URE: you have not enough permissions to use this add-on.', 'user-role-editor') );
                return;
            }
            $ure_object_type = filter_input(INPUT_POST, 'ure_object_type', FILTER_SANITIZE_STRING);
            if ($ure_object_type!=='role' && $ure_object_type!=='user') {
                $editor->set_notification( esc_html__('URE: other roles access: Wrong object type. Data was not updated.', 'user-role-editor') );
                return;
            }
            $ure_object_name = filter_input(INPUT_POST, 'ure_object_name', FILTER_SANITIZE_STRING);
            if (empty($ure_object_name)) {
                $editor->set_notification( esc_html__('URE: other roles access: Empty object name. Data was not updated', 'user-role-editor') );
                return;
            }
                            
            if ($ure_object_type=='role') {
                $this->objects->save_access_data_for_role($ure_object_name);
            } else {
                $this->objects->save_access_data_for_user($ure_object_name);
            }
            
            $editor->set_notification( esc_html__('Other roles access data was updated successfully', 'user-role-editor') );
            
        }
        // end of update_data()
    
    in reply to: Import not working #5535
    Vladimir
    Keymaster

    Workaround:
    Deactivate new version of URE Pro at the new site.
    Copy older version of URE Pro via FTP to other folder of new site, like user-role-editor-pro-4.40.
    Activate older version of URE Pro.
    Fulfill roles import.
    Deactivate older version of URE Pro. Delete it via FTP.
    Activate back newer version of URE Pro.

    You can make similar steps with newer version of URE Pro at old site. But you will need to export/import roles one by one. Newer versions of URE Pro (4.41+) do not support multiple roles export/import as a single operation.
    It will be added with time.

    in reply to: Import not working #5534
    Vladimir
    Keymaster

    Got it. This file was exported with older version of URE Pro. It’s format is not compatible with versions of URE Pro starting from 4.41:

    
    = [4.41] 06.02.2018 =
    * Core version: 4.40.1
    * New: Export-import module was rewritten:
    * - Attention: New exported data format is not compatible with data exported by older versions.
    * - Users->User Role Editor: Export/Import buttons applied to the single currently selected role only.
    
    in reply to: Import not working #5531
    Vladimir
    Keymaster

    Send me exported .dat file (support [at-sign] role-editor.com). I will check what is wrong with its content.

    in reply to: new update bug #5522
    Vladimir
    Keymaster

    I plan to publish version 4.50 at the 1st week of March.

    in reply to: new update bug #5520
    Vladimir
    Keymaster

    Hi Armel,

    One of updated files is JavaScript file. It sends critical parameter related to the redirection.
    Force full refresh for User Role Editor page at network admin (or clear browser cache) to be sure that the latest JavaScript works during your test.

    in reply to: new update bug #5518
    Vladimir
    Keymaster

    Issue with redirection after “Plugins access” data update from the network admin was fixed at 4th beta.

    in reply to: new update bug #5517
    Vladimir
    Keymaster

    Thanks again for this information. I thought that I just messed browser tabs when I saw something similar during today’s testing. Redirection after click update at “Access to plugins” dialog should not take place. User should stay at the same URE page under Network admin. This update saves plugins access data for the main site. So Yes, you need to click “Network Update” in order to replicate them to other subsites.
    I will check what’s wrong and prepare the fix.

    in reply to: new update bug #5513
    Vladimir
    Keymaster

    Try beta 3 (v. 4.50.b3). It’s still may be not ready for the production environment, but such stage is near.

    in reply to: Change plugin capability #5512
    Vladimir
    Keymaster

    As your test showed – it’s not ready for the production environment yet. But it’s very near. I work on the fix for bugs discovered with your help.

    in reply to: new update bug #5511
    Vladimir
    Keymaster

    Thanks a lot for the help with testing.
    I discovered few other bugs under WordPress multisite after your report. I work on the fix.

Viewing 15 posts - 916 through 930 (of 2,529 total)