You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fatal error: Allowed memory size of 268435456 bytes exhausted (tried to allocate 130968 bytes) in /wp-content/plugins/pods/includes/data.php on line 1033
When I try to open stream plugin settings, tab "Exclude": wp-admin/admin.php?page=wp_stream_settings&tab=exclude
My wp_users table has thousands of users. The problem disappear when I replace the current table with an empty table.
Disabling the field authors_and_roles by commenting lines 302-309 on settings.php solves the issue too.
/*array( 'name' => 'authors_and_roles', 'title' => esc_html__( 'Authors & Roles', 'stream' ), 'type' => 'select2_user_role', 'desc' => esc_html__( 'No activity will be logged for these authors and/or roles.', 'stream' ), 'choices' => self::get_roles(), 'default' => array(),),*/
The text was updated successfully, but these errors were encountered:
It seems that the AJAX loading of users isn't being handled properly here. We have fixed this recently on the list table screen in #428 it could be that the same just needs to be done here in the Exclude tab.
The fix for this could possibly be done alongside #527 in the same PR.
No sure if related with wp-stream but Im getting:
When I try to open stream plugin settings, tab "Exclude":
wp-admin/admin.php?page=wp_stream_settings&tab=exclude
My
wp_users
table has thousands of users. The problem disappear when I replace the current table with an empty table.Disabling the field
authors_and_roles
by commenting lines 302-309 onsettings.php
solves the issue too.The text was updated successfully, but these errors were encountered: