Skip to:
Content
Pages
Categories
Search
Top
Bottom

More “Main Themes”

Published on March 16th, 2007 by thomask

I would like to group my forums into groups, as I can do with other forums. Just simple text field (title) and id would solve it (plus way to put each forum to some group / Main theme

integration with wordpress…

Published on March 16th, 2007 by

hi.

everything works well but i just cant add header from wordpress. i add to my bbpress config:

require_once( ‘../wp-blog-header.php’ )

my directories look like this:

/wordpress – here is the wordpress

/wordpress/forum – here is the bbpress

whats wrong :)?

and i want to remove ‘views part’ .

suggester

Published on March 16th, 2007 by thomask

it would be great, if the forum would have a suggester function, as e.g. google groups for google products (can be seen e.g. here http://groups.google.com/group/Google-Groups-Guide/post?_done=%2Fgroup%2FGoogle-Groups-Guide%2Ftopics%3Flnk%3Doa%26&_doneTitle=Back+to+topics& but you may need to join the group first)

simply what is it – when user type the title of the post, the ajax magic will search for existing posts and recommend the most relevant topics – it helps a lot to prevent repeating same and same questions again and again.

Here it should work also for tags, but they would have to be moved before title, otherwise it would not have much sense

custom fields for posts

Published on March 16th, 2007 by thomask

I need custom fields for posts

the best would be if i could do

1. selection of the vendor from selectbox

2. selection of the product of that vendor from selectbox

3. some inputbox for adding number (e.g. price)

And then i need to be able to show topics per that vendor, per products, and show the value of inputbox (price) in posts list (plus some javascript to sort by that column)

I vander i could probably solve the first two problems with replacing tags feature (so user will select Vendor + product, and it will make 2 tags – vendor product, i just do not know how to solve problem, when there is a space in vendor name or product name (can I use “vendor name” “product name” or hack it so the separator will be coma or semicolon?

The third point is probably more common need, so i wander, if somone has allready made it

thx

bbPress Romanian Support

Published on March 16th, 2007 by c00l2sv

You can get the file at: http://e-stas.net/files/fc.php/1

The version I’ve tranlated: 0.81

I will also support this translation once bbPress will be upgraded.

Thank you guys for a wonderfull bbs.

Modlook Tag In Forums

Published on March 16th, 2007 by Trent Adams

Hey everyone! It isn’t too often that a spammer makes it past Akismet in these forums, but if they do, could we use the tag “modlook” so that I can stay on top of it! ? That is the tag used in the other forums from Automattic and a great way for me to use an RSS feeder on the road! I will be the first to show what the tag looks like in this thread!

Please, spammers and things that are of urgent attention only please!

Thanks,

Trent

What’s integration?

Published on March 15th, 2007 by

Hi,

I’m new to bbpress, and I’m trying to install it. I already use wordpress. There are lots of posts that talk about integration, but I’m not sure what ‘integration’ really means.

Is there a site where I can look and see an example of ‘integration’? What are the benefits? How do a BLOG and FORUM integrate? Thank you! :)

-daniel

simple way to add TinyMCE to BBpress

Published on March 15th, 2007 by

1. download the latest version of TinyMCE , I use version tinymce_2_1_0

2. unzip file and upload “jscripts” folder to your server/bbpress/my-plugins/, so link will like this (http://example.com/bbpress/my-plugins/jscripts)

3. add code to the bbpress templates header file (http://example.com/bbpress/bb-templates/kakumei/header.php),

ADD CODE before ‘/head’ of header.php

<script language=”javascript” type=”text/javascript” src=”http://example.com/bbpress/my-plugins/jscripts/tiny_mce/tiny_mce.js”></script>

<script language=”javascript” type=”text/javascript”>

tinyMCE.init({

mode : “textareas”

});

</script>

4. Done! you can check it out when Post content in your bbpress. :)

see demo capture: http://img147.imageshack.us/img147/5363/tinymceao7.jpg

p/s: I need someone pitch in and help me how to hack bbpress to support more allowed markup like <u> <tr> <td> <font color> <font size>… etc

Step Two Database Error

Published on March 14th, 2007 by

Hi,

I just installed bbPress and on STEP TWO I got a screen with the error below. I’m not a programmer or anything, I just know basic HTML and that’s it, so I don’t know where to look for a way to fix this. Can anyone give me some pointers on how to fix this? Or is there a service where I can pay to have this fixed and running smoothly? Thanks!

bbPress database error

Second Step

Now we’re going to create the database tables and fill them with some default data.

bbPress database error: [Access denied for user 'boomanfloral'@'localhost' to database 'mysql']
CREATE TABLE bb_forums ( forum_id int(10) NOT NULL auto_increment, forum_name varchar(150) NOT NULL default '', forum_desc text NOT NULL, forum_order int(10) NOT NULL default '0', topics bigint(20) NOT NULL default '0', posts bigint(20) NOT NULL default '0', PRIMARY KEY (forum_id) )

bbPress database error: [Access denied for user 'boomanfloral'@'localhost' to database 'mysql']
CREATE TABLE bb_posts ( post_id bigint(20) NOT NULL auto_increment, forum_id int(10) NOT NULL default '1', topic_id bigint(20) NOT NULL default '1', poster_id int(10) NOT NULL default '0', post_text text NOT NULL, post_time datetime NOT NULL default '0000-00-00 00:00:00', poster_ip varchar(15) NOT NULL default '', post_status tinyint(1) NOT NULL default '0', post_position bigint(20) NOT NULL default '0', PRIMARY KEY (post_id), KEY topic_id (topic_id), KEY poster_id (poster_id), KEY post_time (post_time), FULLTEXT KEY post_text (post_text) ) TYPE = MYISAM

bbPress database error: [Access denied for user 'boomanfloral'@'localhost' to database 'mysql']
CREATE TABLE bb_topics ( topic_id bigint(20) NOT NULL auto_increment, topic_title varchar(100) NOT NULL default '', topic_poster bigint(20) NOT NULL default '0', topic_poster_name varchar(40) NOT NULL default 'Anonymous', topic_last_poster bigint(20) NOT NULL default '0', topic_last_poster_name varchar(40) NOT NULL default '', topic_start_time datetime NOT NULL default '0000-00-00 00:00:00', topic_time datetime NOT NULL default '0000-00-00 00:00:00', forum_id int(10) NOT NULL default '1', topic_status tinyint(1) NOT NULL default '0', topic_open tinyint(1) NOT NULL default '1', topic_last_post_id bigint(20) NOT NULL default '1', topic_sticky tinyint(1) NOT NULL default '0', topic_posts bigint(20) NOT NULL default '0', tag_count bigint(20) NOT NULL default '0', PRIMARY KEY (topic_id), KEY forum_id (forum_id), KEY topic_time (topic_time), KEY topic_start_time (topic_start_time) )

bbPress database error: [Access denied for user 'boomanfloral'@'localhost' to database 'mysql']
CREATE TABLE bb_topicmeta ( meta_id bigint(20) NOT NULL auto_increment, topic_id bigint(20) NOT NULL default '0', meta_key varchar(255) default NULL, meta_value longtext, PRIMARY KEY (meta_id), KEY user_id (topic_id), KEY meta_key (meta_key) )

bbPress database error: [Access denied for user 'boomanfloral'@'localhost' to database 'mysql']
CREATE TABLE bb_users ( ID bigint(20) unsigned NOT NULL auto_increment, user_login varchar(60) NOT NULL default '', user_pass varchar(64) NOT NULL default '', user_nicename varchar(50) NOT NULL default '', user_email varchar(100) NOT NULL default '', user_url varchar(100) NOT NULL default '', user_registered datetime NOT NULL default '0000-00-00 00:00:00', user_status int(11) NOT NULL default '0', display_name varchar(250) NOT NULL default '', PRIMARY KEY (ID), UNIQUE KEY user_login (user_login) )

bbPress database error: [Access denied for user 'boomanfloral'@'localhost' to database 'mysql']
CREATE TABLE bb_usermeta ( umeta_id bigint(20) NOT NULL auto_increment, user_id bigint(20) NOT NULL default '0', meta_key varchar(255) default NULL, meta_value longtext, PRIMARY KEY (umeta_id), KEY user_id (user_id), KEY meta_key (meta_key) )

bbPress database error: [Access denied for user 'boomanfloral'@'localhost' to database 'mysql']
CREATE TABLE bb_tags ( tag_id bigint(20) unsigned NOT NULL auto_increment, tag varchar(200) NOT NULL default '', raw_tag varchar(50) NOT NULL default '', tag_count bigint(20) unsigned NOT NULL default '0', PRIMARY KEY (tag_id) )

bbPress database error: [Access denied for user 'boomanfloral'@'localhost' to database 'mysql']
CREATE TABLE bb_tagged ( tag_id bigint(20) unsigned NOT NULL default '0', user_id bigint(20) unsigned NOT NULL default '0', topic_id bigint(20) unsigned NOT NULL default '0', tagged_on datetime NOT NULL default '0000-00-00 00:00:00', PRIMARY KEY (tag_id,user_id,topic_id), KEY tag_id_index (tag_id), KEY user_id_index (user_id), KEY topic_id_index (topic_id) )

1. Created table bb_forums
2. Created table bb_posts
3. Created table bb_topics
4. Created table bb_topicmeta
5. Created table bb_users
6. Created table bb_usermeta
7. Created table bb_tags
8. Created table bb_tagged

bbPress database error: [Table 'mysql.bb_topicmeta' doesn't exist]
SELECT * FROM bb_topicmeta WHERE topic_id = '0' AND meta_key = 'bb_db_version'

bbPress database error: [Table 'mysql.bb_topicmeta' doesn't exist]
INSERT INTO bb_topicmeta ( topic_id, meta_key, meta_value ) VALUES ( '0', 'bb_db_version', '688' )

bbPress database error: [Table 'mysql.bb_users' doesn't exist]
INSERT INTO bb_users (user_login, user_pass, user_email, user_url, user_registered) VALUES ('daniel', 'fae46cfefe5fb87eedf6f8801e497d06', 'daniel@boomanfloral.com', 'http://boomanfloral.com', '2007-03-14 22:01:31')

bbPress database error: [Table 'mysql.bb_usermeta' doesn't exist]
SELECT * FROM bb_usermeta WHERE user_id = '1' AND meta_key = 'from'

bbPress database error: [Table 'mysql.bb_usermeta' doesn't exist]
INSERT INTO bb_usermeta ( user_id, meta_key, meta_value ) VALUES ( '1', 'from', 'Vista, CA' )

bbPress database error: [Table 'mysql.bb_usermeta' doesn't exist]
SELECT * FROM bb_usermeta WHERE user_id = '1' AND meta_key = 'interest'

bbPress database error: [Table 'mysql.bb_usermeta' doesn't exist]
INSERT INTO bb_usermeta ( user_id, meta_key, meta_value ) VALUES ( '1', 'interest', 'Unusual Plants & Internet' )

bbPress database error: [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 ' '', , '', '2007]
INSERT INTO bb_topics (topic_title, topic_poster, topic_poster_name, topic_last_poster, topic_last_poster_name, topic_start_time, topic_time, forum_id) VALUES ('Your first topic', , '', , '', '2007-03-14 22:01:31', '2007-03-14 22:01:31', 1)

bbPress database error: [Table 'mysql.bb_topics' doesn't exist]
SELECT * FROM bb_topics WHERE topic_id = 0 AND topic_status = 0

bbPress database error: [Table 'mysql.bb_forums' doesn't exist]
UPDATE bb_forums SET topics = topics + 1 WHERE forum_id = 1

bbPress database error: [Table 'mysql.bb_topics' doesn't exist]
SELECT * FROM bb_topics WHERE topic_id = 1 AND topic_status = 0

Finished!

Bad slash prevents style sheet

Published on March 14th, 2007 by

Someone please tell me how I screwed this up: My forum won’t display using the proper style sheet. When viewing the page source, I see that in compiling the header, one of the slashes, between the domain and the path, is reversed:

<link rel=”stylesheet” href=”http://www.ghoulash.comforums/my-templates/kakumei/style.css” type=”text/css” />

I’ve reviewed my config file and all of the relevant .php files, but I can’t find where the slash gets reversed. This is an issue in Firefox on Mac and IE in Windows. It’s not an issue in Safari on Mac, which forgives the reversed slash.

I’d appreciate any ideas or suggestions. Thanks.

Skip to toolbar