Search Results for '"wordpress'
-
Search Results
-
Topic: Database error
When trying to post I get this message:
bbPress database error: [Unknown column ‘post_title’ in ‘field list’]
UPDATE bb_posts SET post_title=’Testy mctest test’ WHERE post_id=’11
I am using the wordpress database (different prefix for bb stuff) but there doesn’t seem to be a post_title column, here’s the output from mysql:
mysql> describe bb_posts;
+
+
+
+
+
+
+| Field | Type | Null | Key | Default | Extra |
+
+
+
+
+
+
+| post_id | bigint(20) | NO | PRI | NULL | auto_increment |
| forum_id | int(10) | NO | | 1 | |
| topic_id | bigint(20) | NO | MUL | 1 | |
| poster_id | int(10) | NO | MUL | 0 | |
| post_text | text | NO | MUL | | |
| post_time | datetime | NO | MUL | 0000-00-00 00:00:00 | |
| poster_ip | varchar(15) | NO | | | |
| post_status | tinyint(1) | NO | | 0 | |
| post_position | bigint(20) | NO | | 0 | |
+
+
+
+
+
+
+9 rows in set (0.00 sec)
I have looked around, but can’t seem to find anything about it on here. The forum/topic actually shows up when I go back to the page, but this is rather inconvenient. Thanks to anyone willing to help out with this.
WP version = 2.51
MySQL version = Server version: 5.0.45-Debian_1ubuntu3.3-log Debian etch distribution
bbPress version = latest (just got it 3 or 4 days ago) so 0.9.0.2
Thanks,
-Scott.
hi, I wanna inset bbpress into my wordpress just like what bbpress.org website does. Is there any clue? Thanks!
I’ve recently upgraded my WP to 2.5.1, and the integration with BBpress 0.8.2 (via bbPress Integration 0.74 by Michael Adams) has broken the login on the BBpress side for the admin/keymaster account. It doesn’t help that my server won’t send emails, so I can’t set the password because I never get the registration email (weirdly it never change the WordPress admin login. Should it?).
Anyway, my question is this – how can I manually reset the password for the admin account, or re-create the link between admin (WP) and keymaster (bb)? Is it possible, without going through the link that auto-generates a password?
Also, if I de-activate the integration plugin (on WP and bb) and upgrade bbPress to 0.9.0.2, can I force a new password for the bb keymaster account? There doesn’t seem to be a table for bb_users, and I don’t want to mess with the WP admin account.
Without a keymaster account, can I even upgrade?
Thanks,
Yes, yes, newbie, here. Sorry about that before anyone bumps me or deletes me for duping or just raises their eyebrows and walks swiftly on. I have used google and other searches frequently. But I still can’t work out this database name, database user and password issue. I have copied the unzipped files into website.com/htdocs/blog1 where NetworkSolutions put WordPress for me. So now BBpress sits at the same level as WordPress. Is that right?
Now I have copied the values from the WP_config file (did it make those up on install?) but I still get “There was a problem connecting to the database you specified. Please check the settings, then try again.” I’m surprised these bear no relation to my actual WordPress password and user name.
I haven’t changed any settings from WordPress since I installed it. Is there a permissions issue?
Thanks (please)
Michael
Topic: Security issues?
I have never been hacked while using it but after reading about the recent security issues with WordPress 2.3 and script kiddies hacking those sites, I have to make sure that its completely safe. Were you ever hacked while using bbpress on your website. Thanks for your opinion and views.
Hi,
I want to convert from my phpBB forum to bbPress however I need 1 more plugin to make it happen.
I need a Plugin for bbPress which will monitor RSS feed’s and post new items into bbPress as a post.
Does anyone know of a free plugin which does this today?
For WordPress, I’m using the Plugin – FeedWordpress
URL – http://projects.radgeek.com/feedwordpress/
It works great and has many great options. Hopefully something exists for bbPress.
Thanks!
Topic: where is my bb-admin ?
I install a WP2.5.1 and then trying to integrate bbpress with it.
but mayde due to permission issue, there is error when installing, so I manaually modified bb-config.php according to related document.
but after integration, bbpress admin panel disappeared, even I login as admin and then manually type the bb-admin url, it redirects me to bb-press main page.
Some part of bb-config.php as below, I think it is possiblly the cause(P.S. db prefix for bb is bb_ , db prefix for WP is wp251_):
// If you are running multiple bbPress installations in a single database,
// you will probably want to change this.
$bb_table_prefix = ‘bb_’; // Only letters, numbers and underscores please!
$bb->new_keymaster = ‘admin’; // or whatever the name of the account is.
// Change this to localize bbPress. A corresponding MO file for the
// chosen language must be installed to bb-includes/languages.
// For example, install de.mo to bb-includes/languages and set BB_LANG to ‘de’
// to enable German language support.
define(‘BB_LANG’, ”);
// If your bbPress URL is http://bbpress.example.com/forums/ , the examples would be correct.
// Adjust the domain and path to suit your actual URL.
// Just the domain name; no directories or path. There should be no trailing slash here.
$bb->domain = ‘http://myeasymaster.com/bbpress902/bbpress/’; // Example: ‘http://bbpress.example.com’
// There should be both a leading and trailing slash here. ‘/’ is fine if the site is in root.
$bb->path = ‘/’; // Example: ‘/forums/’
// What are you going to call me?
$bb->name = ‘New bbPress Site’;
// This must be set before running the install script.
$bb->admin_email = ‘webmaster@myeasymast.com’;
// Set to true if you want pretty permalinks.
$bb->mod_rewrite = false;
// The number of topics that show on each page.
$bb->page_topics = 30;
// A user can edit a post for this many minutes after submitting.
$bb->edit_lock = 60;
// Your timezone offset. Example: -7 for Pacific Daylight Time.
$bb->gmt_offset = 0;
// Your Akismet Key. You do not need a key to run bbPress, but if you want to take advantage
// of Akismet’s powerful spam blocking, you’ll need one. You can get an Akismet key at
// http://wordpress.com/api-keys/
$bb->akismet_key = false;
// The rest is only useful if you are integrating bbPress with WordPress.
// If you’re not, just leave the rest as it is.
$bb->wp_table_prefix = ‘wp251_’; // ‘wp_’; // WordPress table prefix.
$bb->wp_home = ‘http://myeasymaster.com/wordpress251/wordpress’;
// WordPress – Options->General: Blog address (URL) // No trailing slash
$bb->wp_siteurl = ‘http://myeasymaster.com/wordpress251/wordpress’;
// WordPress – Options->General: WordPress address (URL) // No trailing slash
/* Stop editing */
define(‘BBPATH’, dirname(__FILE__) . ‘/’ );
require_once( BBPATH . ‘bb-settings.php’ );
?>