Forum Replies Created
-
In reply to: Where is the importer?
I managed to get past the fatal error by adding these two lines in my bp-config.php file:
define('BB_DATABASE_CLASS', 'BPDB');
define('BB_DATABASE_CLASS_INCLUDE', false);Now I’m getting more errors:
Warning: Missing argument 2 for BPDB::__construct(), called in .../forum-svn/bb-settings.php on line 197 and defined in .../lomo-content/plugins/bbpress/bbp-admin/importers/bbpress.php on line 29
Warning: Missing argument 3 for BPDB::__construct(), called in .../forum-svn/bb-settings.php on line 197 and defined in .../lomo-content/plugins/bbpress/bbp-admin/importers/bbpress.php on line 29
Warning: Missing argument 4 for BPDB::__construct(), called in .../forum-svn/bb-settings.php on line 197 and defined in .../lomo-content/plugins/bbpress/bbp-admin/importers/bbpress.php on line 29
Fatal error: Cannot redeclare bb_cache_users() (previously declared in .../lomo-content/plugins/bbpress/bbp-admin/importers/bbpress.php:103) in .../forum-svn/bb-includes/functions.bb-users.php on line 39This is using bbPress plugin 2.0-beta-2b and bbPress standalone trunk.
In reply to: Where is the importer?I managed to get past the fatal error by adding these two lines in my bp-config.php file:
define('BB_DATABASE_CLASS', 'BPDB');
define('BB_DATABASE_CLASS_INCLUDE', false);Now I’m getting more errors:
Warning: Missing argument 2 for BPDB::__construct(), called in .../forum-svn/bb-settings.php on line 197 and defined in .../lomo-content/plugins/bbpress/bbp-admin/importers/bbpress.php on line 29
Warning: Missing argument 3 for BPDB::__construct(), called in .../forum-svn/bb-settings.php on line 197 and defined in .../lomo-content/plugins/bbpress/bbp-admin/importers/bbpress.php on line 29
Warning: Missing argument 4 for BPDB::__construct(), called in .../forum-svn/bb-settings.php on line 197 and defined in .../lomo-content/plugins/bbpress/bbp-admin/importers/bbpress.php on line 29
Fatal error: Cannot redeclare bb_cache_users() (previously declared in .../lomo-content/plugins/bbpress/bbp-admin/importers/bbpress.php:103) in .../forum-svn/bb-includes/functions.bb-users.php on line 39This is using bbPress plugin 2.0-beta-2b and bbPress standalone trunk.
In reply to: Where is the importer?I’m using standard integration. Even disabled all other plugins and switched to twentyten.
Maybe my alpha version isn’t alpha enough…
In reply to: Where is the importer?I’m using standard integration. Even disabled all other plugins and switched to twentyten.
Maybe my alpha version isn’t alpha enough…
In reply to: Where is the importer?De-activated all other plugins and switched to the twentyten theme.
When trying to import, I got:
Fatal error: Cannot redeclare class BPDB in /home/cristi/git/lomo/forum/bb-includes/backpress/class.bpdb.php on line 39
The standalone version of bbPress is 1.1-alpha.
In reply to: Where is the importer?De-activated all other plugins and switched to the twentyten theme.
When trying to import, I got:
Fatal error: Cannot redeclare class BPDB in /home/cristi/git/lomo/forum/bb-includes/backpress/class.bpdb.php on line 39
The standalone version of bbPress is 1.1-alpha.
In reply to: Where is the importer?Thanks.
Should mention that somewhere in the installation instructions.
In reply to: Where is the importer?Thanks.
Should mention that somewhere in the installation instructions.
In reply to: Can't create forums in bbPress 2.0-beta1Oh right, I remembered that I hardcoded the capabilities, using the $wp_user_roles global.
bbPress can’t add the custom caps it needs in this case.
In reply to: Can't create forums in bbPress 2.0-beta1Oh right, I remembered that I hardcoded the capabilities, using the $wp_user_roles global.
bbPress can’t add the custom caps it needs in this case.
In reply to: Nginx Rewrite Rules for Pretty PermalinksI have WP running at
/
and bbPress at/forum/
.This is the configuration I’m using:
Note that there was an error in one of the rules Sam posted:
rewrite ^/topic/([^/]+)/?$ /bbpress/topic.php?id=$1 last;
should have been
rewrite ^/topic/([^/]+)/?$ /topic.php?id=$1 last;
In reply to: Paging not updatedIn reply to: where is my passwordRead this (it’s for WordPress but it works just as well for bbPress):
http://www.devlounge.net/articles/reset-a-wordpress-password-from-phpmyadmin
In reply to: Make tags an option not a requirementA workaround would be to simply hide them from your theme (out of sight, out of mind, you know).
In reply to: Must I know php to design a theme?I just need a quick solution and to get on with using it. If I find the right “overall” theme, is it easy enough to just change the header say?
Yes, you probably just need to edit the CSS file and change the image.
You don’t need to learn the entire PHP language. You can learn things as you go. Just read a good beginners tutorial to learn the basics of PHP and you’re good to go.