Search Results for 'bbpress'
-
Search Results
-
Hi just installed bbPress but i can’t acces the admin area. I’ve installed it and integrated it with a wordpress install using two different databases. Everything seemed fine after the install but i cant access the /bb-admin
– http://www.accord5.com/trellis
I was wondering if anyone has created a successful bridge, integration, or tutorial that allow both scripts to use one user login. Even if this has been done on another helpdesk, i would like to know.
The forums didn’t let me post the link to the helpdesk.
Thank you in advance for answering my questions Smile.
Topic: bbpress slow?
Load times from http://WebWait.com:
http://mamo-net.de/forum.php . Average: 0.81s. Median: 0.78s. StdDev: 0.81s. From 10 calls.
http://bbpress.org/forums/ . Average: 1.61s. Median: 1.48s. StdDev: 1.61s. From 10 calls.
http://vanillaforums.org/discussions . Average: 1.52s. Median: 1.50s. StdDev: 1.52s. From 10 calls.
http://www.phpbb.com/community/?sid=89568ac780250f265a0bbb3bd15579af. Average: 1.75s. Median: 1.68s. StdDev: 1.75s. From 10 calls.
what do you say?
i’ve installed Viscacha and was pretty surprised how fast it was and all important plugins are already preinstalled.
i remember when bbpress was the fastest. Good old times.
How do I change the font size on the left of the Header area which says login, register, lost password etc.? Click on this link http://www.invictatrader.com/bbpress to see the header. I could not find it in the CSS unless I missed something or it was set to default in the core files. I am using the default stock theme “Kakumei”.
Thank you.
http://www.liuso.com/bbpress this is my forum address
I try reupload a new rss.php file again but doesn’t working
# BEGIN bbPress
Options -MultiViews
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /bbpress/
.htaccess
RewriteRule ^page/([0-9]+)/?$ /bbpress/index.php?page=$1 [L,QSA]
RewriteRule ^forum/([^/]+)/page/([0-9]+)/?$ /bbpress/forum.php?id=$1&page=$2 [L,QSA]
RewriteRule ^forum/([^/]+)/?$ /bbpress/forum.php?id=$1 [L,QSA]
RewriteRule ^forum/?$ /bbpress/ [R=302,L,QSA]
RewriteRule ^topic/([^/]+)/page/([0-9]+)/?$ /bbpress/topic.php?id=$1&page=$2 [L,QSA]
RewriteRule ^topic/([^/]+)/?$ /bbpress/topic.php?id=$1 [L,QSA]
RewriteRule ^topic/?$ /bbpress/ [R=302,L,QSA]
RewriteRule ^tags/([^/]+)/page/([0-9]+)/?$ /bbpress/tags.php?tag=$1&page=$2 [L,QSA]
RewriteRule ^tags/([^/]+)/?$ /bbpress/tags.php?tag=$1 [L,QSA]
RewriteRule ^tags/?$ /bbpress/tags.php [L,QSA]
RewriteRule ^profile/([^/]+)/page/([0-9]+)/?$ /bbpress/profile.php?id=$1&page=$2 [L,QSA]
RewriteRule ^profile/([^/]+)/([^/]+)/?$ /bbpress/profile.php?id=$1&tab=$2 [L,QSA]
RewriteRule ^profile/([^/]+)/([^/]+)/page/([0-9]+)/?$ /bbpress/profile.php?id=$1&tab=$2&page=$3 [L,QSA]
RewriteRule ^profile/([^/]+)/?$ /bbpress/profile.php?id=$1 [L,QSA]
RewriteRule ^profile/?$ /bbpress/profile.php [L,QSA]
RewriteRule ^view/([^/]+)/page/([0-9]+)/?$ /bbpress/view.php?view=$1&page=$2 [L,QSA]
RewriteRule ^view/([^/]+)/?$ /bbpress/view.php?view=$1 [L,QSA]
RewriteRule ^rss/?$ /bbpress/rss.php [L,QSA]
RewriteRule ^rss/topics/?$ /bbpress/rss.php?topics=1 [L,QSA]
RewriteRule ^rss/forum/([^/]+)/?$ /bbpress/rss.php?forum=$1 [L,QSA]
RewriteRule ^rss/forum/([^/]+)/topics/?$ /bbpress/rss.php?forum=$1&topics=1 [L,QSA]
RewriteRule ^rss/topic/([^/]+)/?$ /bbpress/rss.php?topic=$1 [L,QSA]
RewriteRule ^rss/tags/([^/]+)/?$ /bbpress/rss.php?tag=$1 [L,QSA]
RewriteRule ^rss/tags/([^/]+)/topics/?$ /bbpress/rss.php?tag=$1&topics=1 [L,QSA]
RewriteRule ^rss/profile/([^/]+)/?$ /bbpress/rss.php?profile=$1 [L,QSA]
RewriteRule ^rss/view/([^/]+)/?$ /bbpress/rss.php?view=$1 [L,QSA]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^.*$ /bbpress/index.php [L]
</IfModule>
# END bbPress
In a WPMU install with bbpress as a subdirectory where should the file bbpress-integration.php be placed and how should it be activated (sitewide or just for the main blog)? As it stands now I followed the instructions and placed it in wp-content/plugins folder and activated it but it can be seen and activated by all other users in their respective dashboards. That doesn’t seem right/safe.
Thanks
After wrestling with integration between WP 2.8 and bbPress 1.0.2 for the last day and a half, I gave up and started thinking of ways I could do this a little more straightforwardly.
My problem was I didn’t need any sort of database or user sharing between the sites. I simply wanted a way to display certain parts of my WordPress theme on my bbPress page. Things like a list of the WP categories, a menu being built from categories, a blogroll, etc.
Here’s what I did:
Instead of fully integrating WP, what is usually called “deep integration” so as to gain access to WordPress functions (wp_list_categories, etc.), I simply created a few functions in my WordPress theme’s function.php file that automatically generate the HTML for the items I wanted, and then saved it to a file that I could then call in my bbPress theme.
Part 1: WordPress Theme
Open up your functions.php file in your WordPress theme’s folder (/wp-content/themes/yourtheme/).
Scroll down to the bottom and create your new function. For this example, I’ll use adding a list of categories from your WP blog to your bbPress forum:
function make_cats () {
$output = NULL;
$output = wp_list_categories('echo=0&orderby=ID&hide_empty=0&title_li=<h3>categories</h3>');
$fp = fopen($_SERVER['DOCUMENT_ROOT'] . '/wp-content/themes/your-theme/ext/cats.html', 'w');
fwrite($fp, $output);
fclose($fp);
}
add_action('edit_category_form', 'make_cats');To explain this a bit, basically:
We create a variable called $output, NULL it (make sure it’s empty), and then load the category info into it. The wp_list_categories() function creates an unordered list of the categories with a heading (h3) saying “Categories”. We also use the echo=0 bit to make sure it don’t print the HTML it is generating to the screen, but rather just puts it in $output.
Then we open a file called cats.html in a new folder called ext that we’ve previously created (via FTP or whatever) in your theme directory (/wp-content/themes/your-theme). If the file doesn’t exists, the function will create it, however, the “ext” folder needs to already exist. The file is then fill it with $output. All these files and folders are completely up to you — you can save the file anywhere on your server, I just chose to stick it somewhere easy to remember and that wouldn’t clutter anything up.
The final step is:
add_action(‘edit_category_form’, ‘make_cats’);
This tells WordPress to run this function (make_cats) every time the edit_category_form action is triggered, basically any time you load your “Categories” page in the wp-admin area. There are lots of different actions for virtually anything you can think of. Find the one suitable for your customization here.
Part 2: bbPress Theme
The second part is to load the contents of your newly created HTML file in your bbPress theme. To do this only requires a single line of code inserted into the appropriate place in your theme. Wherever you want the list of categories (or whatever you’re wanting to display), simply add this line:
<?php include $_SERVER['DOCUMENT_ROOT'] . '/wp-content/themes/your-theme/ext/cats.html'; ?>That should do it.
Here are a couple more function examples, both use the “save_post” action, so every time you save (new or edit) a post, it fires and updates (or creates) the HTML files:
Tag Cloud
function make_tags () {
$output = NULL;
$output = wp_tag_cloud('echo=0&smallest=8&largest=22&number=30&orderby=count&order=RAND');
$fp = fopen($_SERVER['DOCUMENT_ROOT'] . '/wp-content/themes/your-theme/ext/tags.html', 'w');
fwrite($fp, $output);
fclose($fp);
}
add_action('save_post', 'make_tags');Recent Blog Posts
function make_posts () {
$output = NULL;
$getsomeposts = new WP_Query('numberposts=10');
$output = '<ul>';
while ($getsomeposts->have_posts()) : $getsomeposts->the_post();
$output .= '<li><a href="'. get_permalink() . '" title="' . the_title('','',FALSE) . '">' . the_title('','',FALSE) . '</a></li>';
endwhile;
$output .= '</ul>';
$fp = fopen($_SERVER['DOCUMENT_ROOT'] . '/wp-content/themes/your-theme/ext/posts.html', 'w');
fwrite($fp, $output);
fclose($fp);
}
add_action('save_post', 'make_posts');Hope that helps someone who is as frustrated with the WP<–>bbP integration as I was. If you have any questions about this, feel free to post ’em here. I’ll do my best to check back.
Hi, I’m using WP2.8 and bbP1.0.2. I’m looking to have access to WordPress’ functions, but do not need any cross-user abilities, so don’t need to wrestle with getting the cookies to jive or the user tables to sync.
Is this possible?
Currently I have:
if ( !defined( 'ABSPATH' ) ) {
include_once( '/pathtowp/wp-blog-header.php' );
}Where, obviously, ‘pathtowp’ is the proper path.
This work great and I have full access to WP’s functions for loading sidebars, categories, etc. However there seems to be something strange going on with the login.
If I am logged in before I enable the line above in my config file, everything is fine. If I am logged out, enable the above line and then try to log in, I get no joy. The page simply reloads as if I had never logged in (no password error or anything like that — just again displays the login box).
I am **guessing** this has something to do with some sort of conflict between bbPress’ login, and the login for WordPress? Maybe something goofy is happening with authentication? But I really don’t know.
If anyone has experienced this and could offer their advice, it would be much appreciated.