Search Results for '+.+default+.+'
-
Search Results
-
I am upgrading an old .83 bbpress installation to Alpha 1.0r6.
I have about 6k posts in the .83 database.
After upgrading the database I’ve noticed the following problems. Several of the posts in the database were made by users no longer in the database. If a topic containing posts by these now ‘anonymous’ users is displayed, I get the following error at the top of the screen.
DB Error in wp_users::append_meta: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '32) /* WP_Users::append_meta */' at line 1
SELECT user_id, meta_key, meta_value FROM wp_usermeta WHERE user_id IN (1,,32) /* WP_Users::append_meta */If I delete the anonymous posts in the thread, the problem goes away. Using PHPAdmin I checked the user ID’s assigned to the posts and there are no users with those user ID’s in wp_users. (I have an integrated installation).
I thought the problem was a result of an upgrade, so I created a new user, made some posts, and then deleted that user. The problem still exists. I have not tried this on a clean install and it would be useful if someone could try that.
I am running the default Kak. Blue theme.
I believe I tracked the problem request to a backpress file.
bb-includes/backpress/class.wp-users.php:
if ( $metas = $this->db->get_results("SELECT $meta_field, meta_key, meta_value FROM {$this->db->$meta_table} WHERE $meta_field IN ($ids) /* WP_Users::append_meta */") ) {
I am not a SQL sleuth but I believe the $ids field is being populated with nulls associated with deleted users.
Hello,
I would like to have bbPress in two languages, using the same forum DB. So when viewing in language 1, the forum’s interface would be in language 1 with all the postings listed, and in language 2, the interface would be in language 2 with the same postings listed.
I plan on achieving this with bbPress theme switcher ( http://bbpress.org/plugins/topic/bbpress-theme-switcher/ ) and the link to switch between the themes/languages would be /bbpress/?bbtheme=lang1 and /bbpress/?bbtheme=lang2
I would also like to set up a php page at the root of the web domain to auto-detect and forward to the appropriate mediawiki language page based on
1) user’s browser language preferences if this is a first time visit
2) last connection’s languages preferences, which would be saved in the form of bbPress’s theme preference cookie.
with a file structure of
/blog
/blog/bbpress
/blog/wiki
/langdetect.php
My code so far is:
?php
/* langdetect.php */
$defaultlang = ‘en’
$lang = $defaultlang;
/* bbPress theme cookie detection */
if cookie exists {
(read cookie and set $lang to either en or ko.. bla bla)
}
/* WordPress and/or MediaWiki last visit language detection */
elseif previous visit info exists {
(i’ll figure this out later)
}
/* detect in-browser lang pref … modified from http://kaldung.com/en/php_detectbrowserlanguage.html */
else {
$langlist = explode(‘,’, $_SERVER);
foreach($langlist as $curLang) {
$curLang = explode(‘;’, $curLang);
/* use regular expression for language detection */
if (preg_match(‘/(ko|en)-?.*/’, $curLang[0], $reg)) {
$lang = $reg[1];
break;
}
}
}
/* redirect */
if ( $lang==’ko’ ) { header( ‘Location: http://ENGLISHPAGE’ ) ; }
else { header( ‘Location: http://ENGLISHPAGE’ ) ; }
?>
How can I read the bbPress cookie that contains the Theme Switcher theme preference?
Hi,
I’m trying to setup a demo forum of bbPress (Version 1.0-alpha-6 ) to allow users to create their own bbPress themes. The template generator itself is powered by WordPress, and bar the occasional bug seems to work fine. The bbPress themes it exports seem to be working okay too bar a few code gremlins which I intend to iron out once I get the system up and running.
What should happen, is that you should be able to go to the following URL, make as many modifications as you want, click submit and bam! a new design for your bbPress forum should be shown. However for some reason, whenever the bbPress forum loads it kills the session variables which store all of the data relating to the current design
http://pixopoint.com/demo/bbpress/?generator=on
When you go back to the WordPress version (http://pixopoint.com/?generator=on) the original design is gone and it reverts back to the default
Any ideas?
As a temporary measure I plan to create a WordPress Page with the same HTML as would be in the bbPress forum so that users can see their design as they’re modifying it. But it would make a lot more sense if they could modify it within a real live bbPress forum.
Hi all,
I have a problem with localization of forum.
/**
* bbPress Localized Language, defaults to English.
*
* Change this to localize bbPress. A corresponding MO file for the chosen
* language must be installed to a directory called “my-languages” in the root
* directory of bbPress. For example, install de.mo to “my-languages” and set
* BB_LANG to ‘de’ to enable German language support.
*/
define(‘BB_LANG’, ‘it_IT’);
I have edited the bb-config.php and made the directory called “my-languages” in the root directory of bbpress with inside my languages file, but i didn’t see any change.
I have make a deep integration with wp 2.7
Thanks
Hi
This may sound like an odd thing to do, but I’m intending to adapt bbpress to enable members to self-register and upload articles for review, and only Admins see these posts. (Therefore, _ck_’s Hidden Forum and Attachments plugins are great, as are the Instant_Password & Human_Test).
Though to stream-line this further: when a person registers, they post/upload there article in an a Submissions forum, but I don’t want anyone else (apart from admins) to see this type of post.
Could the bozo setting be used? That is, when a person registers, there status is by default bozo, therefore no other registered users can see this post.
Can this work, and how to default a registered user as bozo?
thanks
Topic: Single topic only
I’m trying to find a way to us bbPress that allows me to have only a single topic and nothing more for the whole site.
I have a site, http://bulldogs.rleague.com/ which is basically a guestbook on steroids with user moderation, profiles and various security features. The main feature, and the thing that has kept it alive for over 12 years, is the very simple, flowing format which evolved from a guestbook.
I want to replace the bespoke PHP because I’m tired of maintaining it all, and adding new features is a pain in the neck.
I’ve been playing with bbPress today and it has the simplistic approach that suits my needs. However, I need to find a way to basically make the default landing page a topic, and to hide/remove all functionality that is related to multiple topics and multiple forums.
I’m happy to mess with the core code and maintain it for upgrades, but a plugin approach would be preferable. However, I don’t know where to even start. Is it something I can achieve with a different template, or do core functions need modification or plugin-based override?
The other piece to this puzzle, and I think I saw an answer already, is that the display order of posts needs to change to be the most recent at the top.
Any help people can provide is appreciated.
Cheers,
Chris.
is there an easy way to set the Topic Status/Post Status filters in the Dashboard -> Manage -> sub-tabs to default to All? it currently defaults to Deleted.
thanks.