Title: Vladimir Garagulya's Replies - page 39 | WordPress.org

---

# Vladimir Garagulya

  [  ](https://wordpress.org/support/users/shinephp/)

 *   [Profile](https://wordpress.org/support/users/shinephp/)
 *   [Topics Started](https://wordpress.org/support/users/shinephp/topics/)
 *   [Replies Created](https://wordpress.org/support/users/shinephp/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/shinephp/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/shinephp/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/shinephp/engagements/)
 *   [Favorites](https://wordpress.org/support/users/shinephp/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 571 through 585 (of 3,096 total)

[←](https://wordpress.org/support/users/shinephp/replies/page/38/?output_format=md)
[1](https://wordpress.org/support/users/shinephp/replies/?output_format=md) [2](https://wordpress.org/support/users/shinephp/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/shinephp/replies/page/3/?output_format=md)…
[38](https://wordpress.org/support/users/shinephp/replies/page/38/?output_format=md)
39 [40](https://wordpress.org/support/users/shinephp/replies/page/40/?output_format=md)…
[205](https://wordpress.org/support/users/shinephp/replies/page/205/?output_format=md)
[206](https://wordpress.org/support/users/shinephp/replies/page/206/?output_format=md)
[207](https://wordpress.org/support/users/shinephp/replies/page/207/?output_format=md)
[→](https://wordpress.org/support/users/shinephp/replies/page/40/?output_format=md)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[User Role Editor] ShinePHP](https://wordpress.org/support/topic/shinephp/)
 *  Plugin Author [Vladimir Garagulya](https://wordpress.org/support/users/shinephp/)
 * (@shinephp)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/shinephp/#post-13406182)
 * Thank you for this notification. There is a problem at the provider side. It’s
   under investigation.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[User Role Editor] Editors access to Ad Inserter plugin?](https://wordpress.org/support/topic/editors-access-to-ad-inserter-plugin/)
 *  Plugin Author [Vladimir Garagulya](https://wordpress.org/support/users/shinephp/)
 * (@shinephp)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/editors-access-to-ad-inserter-plugin/#post-13385408)
 * Ad Inserter protects its menu item ‘Settings->Ad Inserter’ with ‘manage_options’
   user capability. It’s simple to grant access to this menu item with free version–
   just grant ‘manage_options’ capability to ‘editor’ role.
    But ‘editor’ role will
   get access to the site settings and many other critical option from other plugins.
   It’s possible to block access to unneeded admin menu items with URE Pro. But 
   look at the Ad Inserter plugin more carefully. It allows to insert into ad blocks
   PHP code.
 * >  * Insert images, HTML, CSS, Javascript or PHP code
   >  * Manual insertion: widgets,
   > shortcodes, PHP function call * PHP code processing
 * User who can execute at the site own PHP code can get full access to the site
   in a minute. There is no sense to restrict such user permissions in any manner.
   You have to decide if you trust to such user so powerful functions or you don’t.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[User Role Editor] Can’t add Admin user](https://wordpress.org/support/topic/cant-add-admin-user/)
 *  Plugin Author [Vladimir Garagulya](https://wordpress.org/support/users/shinephp/)
 * (@shinephp)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/cant-add-admin-user/#post-13374484)
 * URE by default protects users with ‘administrator’ role from other users with‘
   edit_users’ capability: it hides such users and excludes ‘administrator’ role
   from the list of roles available for selection.
 * Workaround:
    1) fully switch off this protection using custom filter: `ure_supress_administrators_protection`.
   Just return TRUE from it.
 * or
 * 2) select user whom you allow to add/edit other administrators and grant him ‘
   ure_manage_options’ user capability – make him superadmin for URE (editing users
   roles) too.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Plugins Garbage Collector (Database Cleanup)] Reduce Admin-ajax calls?](https://wordpress.org/support/topic/reduce-admin-ajax-calls/)
 *  Plugin Author [Vladimir Garagulya](https://wordpress.org/support/users/shinephp/)
 * (@shinephp)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/reduce-admin-ajax-calls/#post-13374394)
 * General logic realized at PGC: 1 AJAX call per installed plugin. So you still
   will have many AJAX calls from PGC in case you have many plugins installed.
    -  This reply was modified 5 years, 8 months ago by [Vladimir Garagulya](https://wordpress.org/support/users/shinephp/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Plugins Garbage Collector (Database Cleanup)] Reduce Admin-ajax calls?](https://wordpress.org/support/topic/reduce-admin-ajax-calls/)
 *  Plugin Author [Vladimir Garagulya](https://wordpress.org/support/users/shinephp/)
 * (@shinephp)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/reduce-admin-ajax-calls/#post-13374388)
 * Hi,
 * It’s a headache for the shared servers users when it’s not enough resources from
   a used service…
 * Version 0.12 of PGC includes this update:
    * Update: Server side “Fatal error:
   Maximum execution time of NN seconds exceeded” should not take place now. PGC
   scans plugins with large quantity of files by splitting job to smaller parts 
   per 500 files.
 * So you have 2 variants:
    1) roll-back to the previous version 0.11.1 or 2) open`
   wp-content/plugins/plugins-garbage-collector/includes/lib.php` file, find line#
   278:
 *     ```
       $files_to_process = 500;
       ```
   
 * and replace 500 to 1000 or any number of your choice.
    It will reduce the quantity
   of AJAX calls from PGC plugin during scanning of your plugins files for the usage
   of database tables.
 * I will allow to use PHP constant (defined at wp-config.php usually) to change
   this value without modifying PGC plugin source code with the next update.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Plugins Garbage Collector (Database Cleanup)] Entries to Delete – unsure](https://wordpress.org/support/topic/entries-to-delete-unsure-2/)
 *  Plugin Author [Vladimir Garagulya](https://wordpress.org/support/users/shinephp/)
 * (@shinephp)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/entries-to-delete-unsure-2/#post-13374366)
 * Hi,
 * It seems that un_termmeta table belongs to the long time not updated “Usernoise
   modal feedback / contact form” plugin. Look at [this file](https://github.com/crowdfavorite-mirrors/wp-usernoise/blob/master/inc/termmeta-api.php).
   
   So if you do not use this plugin, just delete this database table.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[User Role Editor] Can’t add Admin user](https://wordpress.org/support/topic/cant-add-admin-user/)
 *  Plugin Author [Vladimir Garagulya](https://wordpress.org/support/users/shinephp/)
 * (@shinephp)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/cant-add-admin-user/#post-13374334)
 * Hi Bet!
 * Give me more details. Do you not see ‘Administrator’ role to select at user profile
   or something else?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[User Role Editor] I’m Not able to access the editor dashboard.](https://wordpress.org/support/topic/im-not-able-to-access-the-editor-dashboard/)
 *  Plugin Author [Vladimir Garagulya](https://wordpress.org/support/users/shinephp/)
 * (@shinephp)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/im-not-able-to-access-the-editor-dashboard/#post-13372211)
 * I hope that your ‘editor’ role is unchanged and contain needed user capabilities,
   at least from the ‘Posts’ group.
 * Try to deactivate all plugins and make another test. If user will can work with
   
   WordPress as expected, activate plugins one by one to reproduce the problem and
   isolate a conflict.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[User Role Editor] I’m Not able to access the editor dashboard.](https://wordpress.org/support/topic/im-not-able-to-access-the-editor-dashboard/)
 *  Plugin Author [Vladimir Garagulya](https://wordpress.org/support/users/shinephp/)
 * (@shinephp)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/im-not-able-to-access-the-editor-dashboard/#post-13372012)
 * Does editor go to the wp-admin after login or somewhere else?
    Attach screenshot.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[User Role Editor] I’m Not able to access the editor dashboard.](https://wordpress.org/support/topic/im-not-able-to-access-the-editor-dashboard/)
 *  Plugin Author [Vladimir Garagulya](https://wordpress.org/support/users/shinephp/)
 * (@shinephp)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/im-not-able-to-access-the-editor-dashboard/#post-13371494)
 * Do you have active WooCommerce?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[User Role Editor] user role editor wordpresss 5.5.1 error](https://wordpress.org/support/topic/user-role-editor-wordpresss-5-5-1-error/)
 *  Plugin Author [Vladimir Garagulya](https://wordpress.org/support/users/shinephp/)
 * (@shinephp)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/user-role-editor-wordpresss-5-5-1-error/#post-13371491)
 * What do you wait to happen after click at the ‘edit_dashboard’ capability checkbox
   and grant it to a role?
 * ‘edit_dashbpard’ capability is checked by WordPress once at wp-admin/includes/
   dashboard.php and allows to configure selected admin dashboard widget.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[User Role Editor] user role editor wordpresss 5.5.1 error](https://wordpress.org/support/topic/user-role-editor-wordpresss-5-5-1-error/)
 *  Plugin Author [Vladimir Garagulya](https://wordpress.org/support/users/shinephp/)
 * (@shinephp)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/user-role-editor-wordpresss-5-5-1-error/#post-13366695)
 * Try the latest version 5.56.1, which I have published today.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[User Role Editor] Media library control free or pro version?](https://wordpress.org/support/topic/media-library-control-free-or-pro-version/)
 *  Plugin Author [Vladimir Garagulya](https://wordpress.org/support/users/shinephp/)
 * (@shinephp)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/media-library-control-free-or-pro-version/#post-13366550)
 * Hi,
 * You can not make this with any version of URE.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[User Role Editor] Custom user can’t delete users](https://wordpress.org/support/topic/custom-user-cant-delete-users/)
 *  Plugin Author [Vladimir Garagulya](https://wordpress.org/support/users/shinephp/)
 * (@shinephp)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/custom-user-cant-delete-users/#post-13366545)
 * If it’s a WordPress multisite, then ‘remove_users’ capability is required in 
   order user can see the ‘Delete’ link under the user role at the ‘Users’ page.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[User Role Editor] user role editor wordpresss 5.5.1 error](https://wordpress.org/support/topic/user-role-editor-wordpresss-5-5-1-error/)
 *  Plugin Author [Vladimir Garagulya](https://wordpress.org/support/users/shinephp/)
 * (@shinephp)
 * [5 years, 8 months ago](https://wordpress.org/support/topic/user-role-editor-wordpresss-5-5-1-error/#post-13366539)
 * Thanks for this note. This issue will be fixed with the upcoming update of User
   Role Editor.

Viewing 15 replies - 571 through 585 (of 3,096 total)

[←](https://wordpress.org/support/users/shinephp/replies/page/38/?output_format=md)
[1](https://wordpress.org/support/users/shinephp/replies/?output_format=md) [2](https://wordpress.org/support/users/shinephp/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/shinephp/replies/page/3/?output_format=md)…
[38](https://wordpress.org/support/users/shinephp/replies/page/38/?output_format=md)
39 [40](https://wordpress.org/support/users/shinephp/replies/page/40/?output_format=md)…
[205](https://wordpress.org/support/users/shinephp/replies/page/205/?output_format=md)
[206](https://wordpress.org/support/users/shinephp/replies/page/206/?output_format=md)
[207](https://wordpress.org/support/users/shinephp/replies/page/207/?output_format=md)
[→](https://wordpress.org/support/users/shinephp/replies/page/40/?output_format=md)