Hello,
Warning: Cannot modify header information - headers already sent by (output started at /homepages/8/d675263813/htdocs/app675511823/wp-content/plugins/wpforo/wpf-includes/wpf-hooks.php:1281) in /homepages/8/d675263813/htdocs/app675511823/wp-includes/pluggable.php on line 1179
USER AGENT | Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/57.0.2987.133 Safari/537.36 |
Web Server | Apache |
PHP Version | 7.0.15 |
MySQL Version | 5.5.54 |
PHP Max Post Size | 67108864 |
PHP Max Upload Size | 67108864 |
PHP Memory Limit | 268435456 |
PHP DateTime Class | Verfügbar |
Usually the "Warning: Cannot modify header information - headers already sent by" COULD be the result of a modified php file (by hand) and inserting some White Space.
Have you modified by hand anything in WP or wpForo PHP files ?
Any caching ? Plugin or else ?
Yes -> Yoast SEO and Akismet
Neither Yoast or Akismet is a caching plugin.
Also enable DEBUG.LOG and check.
This is something strange, it looks like the wpforo_subscriptios table is damaged in your database or subscribers where not users. We're going to adapt wpForo core for such case in next version release. But for now please do this small change in wpForo files. Open /wp-content/plugins/wpforo/wpf-includes/wpf-hooks.php file using cPangel > File Manager or through FTP client.
Find this line:
if( isset($topic['status']) && $topic['status'] == 1 ){
Change to this:
if( isset($topic['status']) && $topic['status'] == 1 && isset($subscriber['userid']) ){
Please Note: there are two lines with this code, you can change both (line 1365, line 1280)