Search Results for '+.+default+.+'
-
Search Results
-
New users have no role, even though I have New User Default Role set to Subscriber in WP Admin -> General.
Perhaps this is because I didn’t have the WP integration plugin, so I installed that. Then I get “Cannot redeclare bb_int_set_current_user()” 404 for any forum page.
Topic: bbPress 0.8.3.1 released
From Sam’s Post on the main bbPress blog:
Due to popular demand we have bundled a bug-fix release for bbPress. 0.8.3.1 (still called “Desmond” I believe) and it is now available for download.
This version is not the latest development release so as to remain as compatible as possible with the current version of WordPress.
The primary reason for the release is to fix some bugs in the MySQLi implementation. We anticipate that MySQLi support will be dropped in the future and to this end we have made MySQL the default extension instead of MySQLi.
A few other fixes and enhancements have also snuck in:
- Deep forum breadcrumbs with thanks to baptiste
- More consistent topic labeling methods – users of the support forum plugin will probably need to upgrade to version 2.3.3
- Some fixes to stop orphaned sub-forums from disappearing from all view
- There is now one of those fancy checkboxes to mark a user as a bozo
A couple of those changes will affect existing themes. If you have questions about adapting your theme to be compatible with the new topic labeling and forum breadcrumb features, then ask over on this forum topic.
Topic: Experimenting with bb-cache
I’ve recently enabled the hard cache, to see how it handles on a test forum with only a few users. The first problem I’ve come across has been an error with $bb_cache->get_forums() – the array it was returning when cached was 0, instead of containing the forum ids.
I fixed it by a simple reversal of the sections of code within the get_forums() function in cache.php:
$forums = (array) $bbdb->get_results("SELECT * FROM $bbdb->forums $where ORDER BY forum_order");
if ( $this->use_cache && $normal && $forums )
$this->write_cache(BBPATH . 'bb-cache/bb_forums', $forums);
$_forums = array();
foreach ( $forums as $forum )
$_forums[(int) $forum->forum_id] = $bb_forum_cache[(int) $forum->forum_id] = $forum;After reversing them (the above are their original positions), I then made sure the write cache line was using $_forums, instead of $forums.
No idea if this may have other consequences I’ve yet to unearth, but I thought it may be worth noting here.
I’ve also used the “load all options” function from wordpress as a basis for creating a global array containing all topicmeta options. By default (even with cache enabled, although maybe I’ve missed a setting), there were several calls to to topicmeta, whereas only one was really required.
Changed my config information & followed the steps at DevLounge
Now when i try to go to the install page @
http://the3rdplace.co.uk/home/bbpress/
I get this error :
Fatal error: Call to undefined function: __() in /home/the3eco/public_html/home/bbpress/bb-includes/
default-filters.php on line 81
This is line 81 :
bb_register_view( ‘no-replies’, __(‘Topics with no replies’), array( ‘post_count’ => 1 ) );
Anyone have any advice on what i should do ?
Many thanks in advance
I use BBPress 0.8.3 here:http://bbpress.org.ru
but I can’t see my custom themes even the default theme in the panel.I can only see”Dashboard Users Content “when I login to panel…
Why?
Update:My forum has upgraded to 0.8.3 from 0.8.2,I find there add two options about Mysql Datebase in the config.php of the new version(0.8.3) .It set the Datebase CHARSET and COLLATE to utf8.
Then I created a new Mysql datebase and set the config.php correctly,but when I install it,it said:
“Warning: mysql_get_server_info() [function.mysql-get-server-info]: A link to the server could not be established in /home/.lewis/okokb/bbpress/forums/bb-includes/db-mysqli.php on line 80”
then I check the line 80 of the file,db-mysqli.php,it looks seem that the version of my Mysql Datebase must be 4.1.0?
isn’t it? but my Mysql datebase are all above 4.1.0.
But I saw that,when I signup with a new Datebase,I can see my custom themes in the panel.
Now I want to know,if BB require only 4.1.0(the version of the mysql datebase)….
I’m very sorry about that my English is not good,I hope you can understand what I mean….
Thanks all.
dupola
Topic: BB Poll Plugin
I was wondering if there was a way to make all post have a default poll question. Im starting a freebie forum, where users can submit free stuff they find online, I would like to set each post started to have a simple yes/no poll, like did this freebie offer work? Can this be done?
