Title: Getting E_ERROR
Last modified: November 18, 2019

---

# Getting E_ERROR

 *  [3dwesupport](https://wordpress.org/support/users/3dwesupport/)
 * (@3dwesupport)
 * [6 years, 7 months ago](https://wordpress.org/support/topic/getting-e_error/)
 * we’re using buddyboss plugin and theme and having same issue as this ticket [https://www.role-editor.com/forums/topic/getting-e_error/](https://www.role-editor.com/forums/topic/getting-e_error/)
   
   we can provide theme and plugin access once you provide email as it is available
   only to registered users. thanks for your help in advance.

Viewing 3 replies - 1 through 3 (of 3 total)

 *  Plugin Author [Vladimir Garagulya](https://wordpress.org/support/users/shinephp/)
 * (@shinephp)
 * [6 years, 7 months ago](https://wordpress.org/support/topic/getting-e_error/#post-12146935)
 * support [at-sign] role-editor.com
 *  [wbonadmin](https://wordpress.org/support/users/wbonadmin/)
 * (@wbonadmin)
 * [6 years, 7 months ago](https://wordpress.org/support/topic/getting-e_error/#post-12148093)
 * I am having the same issue and look forward to a solution.
 *  Plugin Author [Vladimir Garagulya](https://wordpress.org/support/users/shinephp/)
 * (@shinephp)
 * [6 years, 7 months ago](https://wordpress.org/support/topic/getting-e_error/#post-12148675)
 * The reason of a problem is a line of code at the BuddyBoss platform plugin. Open
   wp-content/plugins/buddyboss-platform/bp-load.php file and look at the line #
   149:
 *     ```
       apply_filters( 'all_plugins', 'bp_core_unset_bbpress_buddypress_active_all_plugins', - 1 );
       ```
   
 * It incorrectly calls `apply_filters’ for WordPress core ‘all_plugins’ filter.
   Why do I think so? Be cause of it sends to it not array with plugins list, as
   WordPress itself does at includes/class-wp-plugins-list-table.php:91:
    `$all_plugins
   = apply_filters( 'all_plugins', get_plugins() );` where function `get_plugins()`
   returns “array Key is the plugin file path and the value is an array of the plugin
   data”.
 * But it sends own function ‘bp_core_unset_bbpress_buddypress_active_all_plugins’
   and priority value: -1. These parameters are valid for `add_filter()` function.
   
   I suppose this is just a typo.
 * More, `bp_core_unset_bbpress_buddypress_active_all_plugins()` function which 
   belongs to BuddyBoss Platform plugin accept a single $plugins parameter and returns
   it unchanged.
 * So quick fix is replace line #149 with this valid version:
 *     ```
       add_filter( 'all_plugins', 'bp_core_unset_bbpress_buddypress_active_all_plugins', - 1 );
       ```
   

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Getting E_ERROR’ is closed to new replies.

 * ![](https://ps.w.org/user-role-editor/assets/icon-256x256.jpg?rev=1020390)
 * [User Role Editor](https://wordpress.org/plugins/user-role-editor/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/user-role-editor/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/user-role-editor/)
 * [Active Topics](https://wordpress.org/support/plugin/user-role-editor/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/user-role-editor/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/user-role-editor/reviews/)

 * 3 replies
 * 3 participants
 * Last reply from: [Vladimir Garagulya](https://wordpress.org/support/users/shinephp/)
 * Last activity: [6 years, 7 months ago](https://wordpress.org/support/topic/getting-e_error/#post-12148675)
 * Status: not resolved