error when creating a group
- This topic has 4 replies, 2 voices, and was last updated 12 years ago by .
Viewing 5 posts - 1 through 5 (of 5 total)
Viewing 5 posts - 1 through 5 (of 5 total)
- You must be logged in to reply to this topic.
Tagged: user group
The following occurred after assigning privileges to members – http://community.mgx.com/ nevertheless the group is listed.
Warning: array_keys() [function.array-keys]: The first argument should be an array in /home/magixarc/public_html/community/wp/wp-content/plugins/bbpress/includes/core/capabilities.php on line 453
Warning: Invalid argument supplied for foreach() in /home/magixarc/public_html/community/wp/wp-content/plugins/bbpress/includes/core/capabilities.php on line 453
Warning: array_keys() [function.array-keys]: The first argument should be an array in /home/magixarc/public_html/community/wp/wp-content/plugins/bbpress/includes/core/capabilities.php on line 453
Warning: Invalid argument supplied for foreach() in /home/magixarc/public_html/community/wp/wp-content/plugins/bbpress/includes/core/capabilities.php on line 453
Warning: array_keys() [function.array-keys]: The first argument should be an array in /home/magixarc/public_html/community/wp/wp-content/plugins/bbpress/includes/core/capabilities.php on line 453
Warning: Invalid argument supplied for foreach() in /home/magixarc/public_html/community/wp/wp-content/plugins/bbpress/includes/core/capabilities.php on line 453
Warning: array_keys() [function.array-keys]: The first argument should be an array in /home/magixarc/public_html/community/wp/wp-content/plugins/bbpress/includes/core/capabilities.php on line 453
Warning: Invalid argument supplied for foreach() in /home/magixarc/public_html/community/wp/wp-content/plugins/bbpress/includes/core/capabilities.php on line 453
Warning: array_keys() [function.array-keys]: The first argument should be an array in /home/magixarc/public_html/community/wp/wp-content/plugins/bbpress/includes/core/capabilities.php on line 453
Warning: Invalid argument supplied for foreach() in /home/magixarc/public_html/community/wp/wp-content/plugins/bbpress/includes/core/capabilities.php on line 453
Warning: Cannot modify header information – headers already sent by (output started at /home/magixarc/public_html/community/wp/wp-content/plugins/bbpress/includes/core/capabilities.php:453) in /home/magixarc/public_html/community/wp/wp-content/plugins/buddypress/bp-groups/bp-groups-actions.php on line 134
Warning: Cannot modify header information – headers already sent by (output started at /home/magixarc/public_html/community/wp/wp-content/plugins/bbpress/includes/core/capabilities.php:453) in /home/magixarc/public_html/community/wp/wp-content/plugins/buddypress/bp-groups/bp-groups-actions.php on line 135
Warning: Cannot modify header information – headers already sent by (output started at /home/magixarc/public_html/community/wp/wp-content/plugins/bbpress/includes/core/capabilities.php:453) in /home/magixarc/public_html/community/wp/wp-includes/pluggable.php on line 881
Hi Mary – are you seeing this in your front end or in the log? These are warnings, and while informative, don’t necessarily point to an error. You server may be configured to display or hide these warning, depending upon settings. Let us know if you are looking at the log or the front end. Thanks.
Hi Scott, this is what the user sees on the front end after setting up a group
It sounds like your hosting provider has PHP error reporting turned up too high. These kinds of minor warnings are not harmful to your site, and they should not be appearing on the front end.
You may consider contacting your host to ask about a lower error level, but in the meantime you should be able to hide the warning messages by opening your wp-config.php file in your FTP client, and adding the following lines just above “/* That’s all, stop editing! Happy blogging */”:
ini_set( 'display_errors', 'Off' ); ini_set( 'error_reporting', E_NONE );
That fixed it, thank you!