leemour
Forum Replies Created
-
My guess you used $bp->database_version.
You should use $bp instead. For line 71 in bp-loader.php the fix is:if (!is_object($bp)) { $bp = new stdClass; }Put this just before the line 71. Worked for me.
Basically, before the line with the error, you need to insert:
if (!is_object($bbp->CLASS)) { $bbp->CLASS = new stdClass; }for example for line:
$bbp->theme_compat->theme = $theme;
you do this:if (!is_object($bbp->theme_compat)) { $bbp->theme_compat = new stdClass; } $bbp->theme_compat->theme = $theme;I have the same problem, using PHP 5.4 (on Windows), I suggest using PHP 5.3 or changing core files manually. Have the same problem with Akismet and bbPress. For bbPress I found a patch:
http://bbpress.trac.wordpress.org/attachment/ticket/1801/0001-patched-bbpress-theme-compat-for-5.4-warning-concern.patch
similar changes could be done to wordpress core to fix it I guess.Forum: Plugins
In reply to: Guestbook plugin with an answer optionThanks, will give it a try.
To solve this problem I used the comments functionality built into wordpress. I changed custom comments function in functions.php to check if the user is logged in. If true, the reply link can be used to answer a comment. If false (not logged in), the reply link will not be shown. I also checked that the page was the one used as guestbook.