Search Results for 'bbpress'
-
Search Results
-
Hello,
I am intergrating BB into WordPress and am hitting a wall.
When I attempt to go to step three of installation I meet the following text:
bbPress database error: [Column ‘post_text’ cannot be part of FULLTEXT index]
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
1. Created table bb_forums
2. Created table bb_posts
3. Created table bb_topics
4. Created table bb_topicmeta
5. Created table bb_tags
6. Created table bb_tagged
7. Changed type of wp_usermeta.meta_key from varbinary(255) to varchar(255)
8. Changed type of wp_usermeta.meta_value from longblob to longtext
9. Changed type of wp_users.user_login from varbinary(60) to varchar(60)
10. Changed type of wp_users.user_pass from varbinary(64) to varchar(64)
11. Changed type of wp_users.user_nicename from varbinary(50) to varchar(50)
12. Changed type of wp_users.user_email from varbinary(100) to varchar(100)
13. Changed type of wp_users.user_url from varbinary(100) to varchar(100)
14. Changed type of wp_users.display_name from varbinary(250) to varchar(250)
15. Added index wp_users UNIQUE KEY user_login (user_login)
bbPress database error: [Table ‘louise.bb_posts’ doesn’t exist]
INSERT INTO bb_posts (forum_id, topic_id, poster_id, post_text, post_time, poster_ip, post_status, post_position) VALUES (‘1’, ‘1’, ‘1’, ‘
First Post! w00t.
‘,’2007-05-10 15:35:23’, ‘192.168.2.4’, ‘0’, 1)
bbPress database error: [Table ‘louise.bb_posts’ doesn’t exist]
SELECT post_id, poster_id FROM bb_posts WHERE topic_id = 1 AND post_status = 0 ORDER BY post_time
bbPress database error: [Table ‘louise.bb_posts’ doesn’t exist]
SELECT * FROM bb_posts WHERE post_id = 0
Finished!
I am doing everything to the letter and cannot see what I’m doing wrong…..
The only things I change to install is the directory titles from:
wordpress to ‘journal’
and
bbpress to ‘message_board’
Help would be greatly appreciated. As its driving me mental. All of this just so I can have people sign in to both wordpress and bbpress at the same time.
Thanks
Hello there, you masters of bbPress!
I am very new to this software, so please have patience with me. I installed it some days ago and noticed a strange thing – whenever I restart the pc the next day – I am automatically logged on. It is very practical but since I am paranoid about security, it does not contribute to peace of mind. It does not matter if this is a Firefox2 or IE7 browser, I noticed the symptom on both.
Has it something to do with session cookies on my system? I don’t have this issue with 2 of my WPs nor any other website. My bbPress and wp are separate bodies, not integrated.
I find bbPress very cute and I hope I can make it work somehow with your help.
Topic: bbpress wysiwyg status
Any word on a simple WYSIWYG plugin or feature for bbPress. Something similar to what is on WordPress support forums would be awesome.
Topic: Installing with IP Subdomain
Can you install BBPress using an IP Subdomain (example: http://111.111.111~directory)? I’m working for a client who wants to get their new site set-up before switching over their existing domain name. I’m wondering: can I install BBPress using the IP address or should I wait for the domain transfer? If I can install now using the IP subdomain, what are the implications for the install when the domain transfer goes through?
I’m planning a BBPress integration with WordPress, which I have installed and customized nicely and don’t want to mess-up at this point or else I’d go for it with BBPress and see what happens. Does anyone have experience with this issue they can share?
Thanks.
Topic: Plugin: lotsolinks
Hello!
I’ve been working on my first plugin for a while, and I don’t even know if it’s useful! It deals with users with websites to promote for fun or for profit. The concept is this: users can specify tags in their profiles possibly related to their website. Then, in the topics they start, everytime another user use one of those words in their posts inside the topic, these words are wrapped in a link to the topic poster’s website.
Am I clear? Now you too can have annoying intellitxt’s on your forums
without the thousands of visitors! And you’re not referring to big advertising companies but to your dudes with a web presence. It is a give and take thing. Cause you might raise their pagerank like this, but they have to come to your site and post good topics and take care the discussion goes along etc. It might even be a socializing exercise in tricking the posters to type the tags you’ve specified! Cause they are not visible to the public.
And here comes the reality check part. I’ve been just “hacking around ” with this thing and I’m aware things should look prittier than they are now. First things first, it requires the ra_custom_profile_keys plugin as an easy way to add a field in the registration. Which is not a so bad thing after all. Good plugin. But more importantly I needed a way to hide the tags field in the profile view and I only managed to do it by modifying one of the template-functions, which I know is absolutely an ugly thing to do, even if I just added a line.
It’s all in the code
and you can see it in function here. (I was hunting for a marketable domain name, sue me).
Btw, if you happen to try it out and things go wrong… I really hope I could help you about it but don’t hold your breath.
Ciao
Topic: Import from vBulletin 3.6.5
Hello!
I use currently vBulletin 3.6.5 and would like to switch to bbpress. 2 questions:
1) Is there an importer? For threads / forums / users?
2) How does it look like with performance? Is it comparable? Especially with larger boards (300-500 users online)?
Thanks!!!
Topic: Function integration problem
“bbPress will not have access to WordPress’ functions unless you manually tell bbPress to load WordPress first. In order to do that, you need to put require_once(‘path/to/wp-blog-header.php’); in bbPress’ config.php (wp-blog-header is in the same directory as WordPress’ wp-config.php file).”
Just uploaded bbpress and tried doing this on http://www.ceciliabjerling.com/wordpress/forum/
You can see the error message there and perhaps tell me what I’m doing wrong.
I changed
require_once( BBPATH . ‘bb-settings.php’ );
to the path where my wp-blog-header.php is