Search Results for '\"wordpress\"'
-
Search Results
-
I’m using wordpress 3.0.1 and bbpress 1.0.2. I was trying to bbpress integrate with wordpress. No matter whether I try to integrate at the time of installation or do it from the admin dashboard, I lose my access to the bbpress’s dashboard.
I did searched in the support forums but wouldn’t find any solution that works.
I did the datebase integration between wordpress and bbpress. It seems to have worked, but now I can’t log into my bbpress admin as before. Now I can only use my wordpress login…which shows me as a user, but not as an administrator. I know that in the dashboard there was on option to make the wordpress admin the bbpress admin, but I didn’t select that, and now I can’t get back there. thoughts?
I have a script that I made that pulls the count of posts a user does on bbpress and displays it on wordpress page template. For some reason I can’t get it to work. I know I need to add something to wordpress but I am not sure what. Here is the script so far.
function get_user_posts_forums1($user_id) {
global $wpdb; // I know I need to change this
$count = $bbdb->get_results(“
SELECT COUNT( * ) AS total
FROM {$bbdb->posts}
WHERE poster_id = {$user_id};”, object);
return $count[0]->total;
}
Any ideas?