Search Results for 'bbpress'
-
Search Results
-
I’m trying to integrate WordPress MU 2.8.3 and bbPress 1.0.2
When I access my site through WordPress everything works fine, I see myself logged in at bbPress and I can access the admin area. When I access my site through bbPress and then go to /wp-admin/, it redirects me here: /wp-login.php?redirect_to=http%3A%2F%2Fwww.mydomain.com%2Fwp-admin%2F. I can fill in the login name and password, and it’ll let me in, but it should just appear the dashboard in the first place…
I’ve followed Sam’s screencast, step by step, and tried it over three times with fresh installs… but still happens the same. But I don’t know, maybe I’m missing something.
First I install Wordpres Mu. Then I go to the bbPress installation page. I fill in everything to integrate it with WordPress. Then I map the user registrations, although I have also left this step for the last one in another installation/integration. I go WordPress, download the bbPress plugin, copy the cookies configuration, paste it into wp-config.php. The I delete all the cookies and temp files in my browser.
It’s strange, cause when I go to the home page of the site I can see I’m logged in:
WordPress ยต
This is a WordPress Mu powered site.
You can:
* Site Admin
* Log out
* Create a new blog
* Edit this file at wp-content/themes/home/home.php with your favourite text editor and customize this screen.
But it still won’t access the administration dashboard. I’ve tried registering another user giving it administration control, but the redirection thing still happens.
It’s kinda funny cause one of the times I installed WordPress Mu and bbPress while I was testing, I could integrate them with no problem. But when I tried it under the final domain, it always happens the same, and gives me that ‘little’ problem.
These are the cookies when I access the admin areas:
After WordPress login:
wordpress_logged_in_*****************
wordpress_*************
bb_user-settings-time-1
After going from WordPress Admin Dashboard to bbPress Admin Dashboard:
wordpress_logged_in_*****************
wordpress_*****************
wordpress_*****************
wordpress_test_cookie
bb_user-settings-time-1
wp-settings-time-1
wp-settings-1
I delete all the browser’s cookies and do the opposite.
After bbPress login:
wordpress_logged_in_*****************
wordpress_*************
bb_user-settings-time-1
After going from bbPress Admin Dashboard to WordPress Admin Dashboard:
This is when the redirection problem comes in!
wordpress_test_cookie
wordpress_logged_in_*****************
still in heavy development but I got the crucial stuff working.
Once I got most functions and plugins working at a decent level I will make my own theme out of it.
Topic: i'm confused about mysql
I registered a hosting space on http://www.netsons.com (it’s free). They offer a mysql database. I istalled wordpress and bbpress on the space, and worked. But the question is: when i installed bbpress…it asked me about a mysql url…i inserted netsons’s mysql url… it sayed ok.
But when i register a new user on forum…the record is not in netsons’s mysql!!! the user is visible only in bbpress forum panel.
So: why it asked me about a mysql URL if it don’t use it?
i’m newbie from italy…sorry
Topic: Plugin for comment nesting?
I would like to have my comment’s nested. I already have a comment nesting plugin for WP, but not sure if that could be reused for bbPress.
I have seen many people asking that tags are not getting deleted in bbPress 1.0 (Even I faced the same problem, but it was working in the default theme). So I just thought of writing a solution for it.
Open the topic-tags.php of your theme.
You would find something like this:
<?php if ( $public_tags ) : ?>
<div id="othertags">
<ul id="yourtaglist">
<?php foreach ( $public_tags as $tag ) : ?>
<li id="tag-<?php echo $tag->tag_id; ?>_<?php echo $tag->user_id; ?>">
<a href="<?php bb_tag_link(); ?>" rel="tag"><?php bb_tag_name(); ?></a> <?php $tags = bb_get_tag_remove_link (); if ($tags) echo '<small>'.$tags.'</small>'; ?>
</li>
<?php endforeach; ?>
</ul>
</div>Replace it with:
<?php if ( bb_get_topic_tags() ) : ?>
<?php bb_list_tags(); ?>That’s it!
You can also view the changes to topic-tags.php of the default theme in the trac:
