Search Results for 'bbpress'
-
AuthorSearch Results
-
December 3, 2009 at 2:46 am #81753
In reply to: What's happening with bbPress?
sockmoney
MemberWe invested in bbPress since it was open-source and we could take it whatever direction we wanted. I would recommend the same for those here worried about future support (if you like the product).
If you still want to move to another forum software, I would first pick a new platform… and then find out if they have a import utility. If they do, find out the format of data required and build a script to dump the data from bbPress in that format.
If you are not able to do this yourself, hire a programmer. Someone fluent in MySQL and php/perl should be able to pull this off fairly easily.
December 3, 2009 at 12:29 am #82001In reply to: ck bbpress, show case and promotion
Macmenddotcom
ParticipantI just put my idea of 5 top forums on my blog with bbpress number 1 see it here http://www.macmend.com
December 2, 2009 at 11:29 pm #81752In reply to: What's happening with bbPress?
Tomcraft1980
MemberIt’s a shame…
December 2, 2009 at 11:27 pm #82130In reply to: Date and time problem (translation)
Elias
MemberUse the .pot-file for the bbPress version you are translating – you can import it in your poedit project.
December 2, 2009 at 7:33 pm #81985In reply to: Help with integration
Hard Seat Sleeper
ParticipantThanks Buddha,
I tried all of these, to no avail. I also tried that other page, worked my way through it, but that thread just kind of fizzed out with no resolution either. I’ve tried to read that 101 page before. it’s too long with too much conflicting info.
One of them led me to this page, to generate a SALT:
https://api.wordpress.org/secret-key/1.1/salt
I tried that, put it in both config files, and it didn’t work.
The only headway I made was that in adding your “speedup” rules, I was unable to log out of bbpress. At least it was something.
The cookie hash I generated here:
http://www.adamek.biz/md5-generator.php
Some said to include the www. in these url values (cookiehash, COOKIE_DOMAIN, etc), some said not, I tried both and still couldn’t get it to work.
I appreciate your help Buddha, it might be that I need to learn more about cookies; as it is, I’m just stabbing in the dark here, I’m not totally familiar with how all these things work.
December 2, 2009 at 7:13 pm #80392In reply to: WP plugins in deep integration
buddha-trance
Member@arpowers – I deep integrated my local installation, just to test, and I have the same problem. All template tags work fine, but the Page Mash plugin is displaying all hidden pages, and the sidebar is only displaying the default place holder widgets, but not the other ones.
I believe that the problem is that the plugin settings and other data are stored in the wp_options table, and this is not being pulled into bbPress. It seems like deep integration allows for the use of the wp template tags, but not much more beyond it… Maybe there is a way to make the wp_options table available to bbPress, by defining something in bb-config.php?
December 2, 2009 at 7:10 pm #66176In reply to: WordPress + bbPress Integration 101
lokrin2000
MemberWell, I took the header, footer, index, style sheet and image folder from the WP theme and transfered them over to the bbP theme folder. I then renamed index.php to forum.php and combined both css files into one which is currently pretty bloated. After clearing out my browser cache the bbP page is pretty good looking, just like the WP page.
There are a few things that need tweaking, such as a blank line near the footer on the main page and the tag list on the message pages.
Still have to add a physical link between the two. (Although the header image will still take you to the main blog site.)
December 2, 2009 at 7:06 pm #81666In reply to: stast.php?
johnhiler
MemberYou can see that here:
December 2, 2009 at 7:05 pm #81182In reply to: if logged in
December 2, 2009 at 3:16 pm #80633In reply to: Buddybar in bbpress
af3
ParticipantSame issue here. I think its related to adminbar.css … all menu appears but vertical! The calvary is yet to come….
December 2, 2009 at 2:43 pm #81200In reply to: exporting bbpress to punbb / fluxbb
miletjs
MemberThey have importers only from phpbb I think.
December 2, 2009 at 2:35 pm #82000In reply to: ck bbpress, show case and promotion
Elias
MemberI wrote a long German text on my german bbPress-Website to draw some attention to the current, sad situation from German bbPress-Users — many of them can’t read English easily…
December 2, 2009 at 12:40 pm #81984In reply to: Help with integration
buddha-trance
MemberI remember struggling a bit to make it work, and I have tried several different recommendations I found in these forums. Now there is this guide that may be very helpful
https://bbpress.org/forums/topic/wordpress-and-bbpress-integration-101
Let me tell you what I have defined in my config files, to make it work seamlessly:
1 – wp-config
SECRET_KEY your value
AUTH_KEY your value
SECURE_AUTH_KEY your value
LOGGED_IN_KEY your value
NONCE_KEY your value
then, at the end of the wp-config file
define('COOKIEHASH', 'your value');
define('COOKIE_DOMAIN', '.www.yourdomain.com');
define('SITECOOKIEPATH', '/wp-admin');
define('COOKIEPATH', '/');– on the cookie_domain there must be a . (period) before the url
– sitecookiepath is for root installations, if you have WP in a subdirectory, then change the path to, for example /blog/wp-admin
– cookiepath is OK with just ‘/’ (also if WP is in a subdirectory, at least this was my case, even if the integration plugin told me otherwise, which did not work for me)
2 – bb-config
BB_AUTH_KEY to match the WP key
BB_SECURE_AUTH_KEY to match the WP key
BB_LOGGED_IN_KEY to match the WP key
BB_NONCE_KEY to match the WP key
then, at the end of the bb-config file I have
// Start integration speedups
// WordPress database integration speedup
$bb->wp_table_prefix = 'yourprefix_';
// WordPress cookie integration speedup
$bb->wp_siteurl = 'url to match what you have in WP general settings';
$bb->wp_home = 'url to match what you have in WP general settings';
$bb->cookiepath = '/';
$bb->authcookie = 'wordpress_here goes the same sequence of numbers to match the cookiehash in wp-config';
$bb->secure_auth_cookie = 'wordpress_sec_here goes the same sequence of numbers to match the cookiehash in wp-config';
$bb->logged_in_cookie = 'wordpress_logged_in_here goes the same sequence of numbers to match the cookiehash in wp-config';
$bb->admin_cookie_path = '/forums-directory/bb-admin';
$bb->core_plugins_cookie_path = '/forums-directory/bb-plugins';
$bb->user_plugins_cookie_path = '/forums-directory/my-plugins';
$bb->sitecookiepath = '';
$bb->wp_admin_cookie_path = '/wp-admin';
$bb->wp_plugins_cookie_path = '/wp-content/plugins';
// End integration speedups– the last two if WP is installed at the root, otherwise
‘/blog-directory/wp-admin’
‘/blog-directory/wp-content/plugins’;
to get sets of keys
https://api.wordpress.org/secret-key/1.1/
https://api.wordpress.org/secret-key/1.1/salt
I can’t remember how I got that cookiehash value…
a possible helpful thread, just in case
Currently on WP 2.8.6 and bbPress 1.0.2
I hope this helps.
December 2, 2009 at 12:25 pm #32434Topic: BBPress Polls for 1.02 or other polls working?
in forum PluginsMarius-
MemberHas anyone got BBPress Polls working perfectly with version 1.02?
I tried it a few months back, and didnt turn out good.
Is there any other poll plugins that works?
December 2, 2009 at 12:24 pm #81371In reply to: Installation memory problem
batarista
MemberIncreased memory_limit in php.ini from 8Mb to 16Mb & restarted wampserver: bbPress installation then worked perfectly.
;;;;;;;;;;;;;;;;;;;
; Resource Limits ;
;;;;;;;;;;;;;;;;;;;
max_execution_time = 30 ; Maximum execution time of each script, in seconds
max_input_time = 60 ; Maximum amount of time each script may spend parsing request data
memory_limit = 16M ; Maximum amount of memory a script may consume (8MB)
Many thanks for your very impressive software and excellent support :>)
December 2, 2009 at 12:07 pm #81067In reply to: Help out with bbPress
Denis de Bernardy
Member@Matt: I’ll be needing a new forum on my own site shortly; one that fully integrates with multiple WP installs. So I can certainly babysit the code base if you need someone to oversee BBPress for a day per week or so.
It *would* be much more appropriate if CK and Sam were around, however. My understanding is CK got pissed. Where is Sam at?
D.
December 2, 2009 at 11:18 am #81999In reply to: ck bbpress, show case and promotion
Marius-
MemberGlad you’re in on it folks.
I believe that if BBPRess was included in the WordPress install, as a default plugin or something, it would force higher interest.
December 2, 2009 at 11:10 am #81967In reply to: bbShowcase shut down?
buddha-trance
Member@kriskl, @sockmonkey – There are many plugins that work with 1.0.2, though they were developed up to the 9.0x version. I am currently using 26 plugins (and have a few more inactive at the moment), there were also several others that I tested to work, but didn’t need.
Here is an initial list to get started, when they were testing the alpha version, before the official 1.0 release
https://bbpress.org/forums/topic/list-of-plugins-that-work-on-rc1
Sometimes, it is also mentioned in the discussions on the individual plugin page.
Of course, having a local test install allows me to test them, before using the plugins on a live site…
December 2, 2009 at 11:03 am #82044f1f
MemberThanks for the quick reply.
I can’t find any file called php_errorlog in my bbpress installation. Where is it usually stored?
December 2, 2009 at 9:13 am #81066In reply to: Help out with bbPress
Denis de Bernardy
MemberWhere did Sam go? He felt all alone and decided to stop, or was he assigned something else?
December 2, 2009 at 7:01 am #32437Topic: atahualpa problems
in forum Themesshansta
ParticipantHello,
I have successfully integrated bbpress 1 and lastest wordpress but having trouble with the header and footer in the forum..
This is what I have done so far…
Copied and renamed kakumei to my-templates/newtheme/
Added <?php get_header(); ?> & <?php get_footer(); ?> to all the required php files.
I then added
define(‘WP_BB’, true);
if ( !defined(‘DB_NAME’) ) {
require_once( dirname(__FILE__) . ‘/../wp-config.php’);
}
define(‘WP_BB’, true);
if ( !defined(‘DB_NAME’) ) {
require_once( dirname(__FILE__) . ‘/../wp-blog-header.php’);
}
to the bb-config.php
& then added
<link rel=”stylesheet” href=”/discussions/my-templates/newtheme/style.css” type=”text/css” media=”screen” />
<link rel=”stylesheet” href=”/discussions/my-templates/newtheme/style-rtl.css” type=”text/css” media=”screen” />
to the WP theme header.php
The forum shows up in the with what looks like the header and footer of my WP theme…
I have a problem with all the css not working… Does adding the url for the css in the WP theme header work or do i need to do this another way?
Thanks
December 2, 2009 at 6:46 am #82121In reply to: Add cookie integration settings
hatter
MemberHere’s a good starting point: https://bbpress.org/forums/topic/wordpress-and-bbpress-integration-101
December 2, 2009 at 2:49 am #81966In reply to: bbShowcase shut down?
sockmoney
Memberkriskl – You could always go with version 9.06. Most of the plugins work with 9.0x versions right now, no need to wait for the developers to upgrade to 1.0x. Then once the plugins catch up, upgrade to 1.0x.
We run 9.0x right now and have no problems so far (beyond a few cosmetic tweaks) with any of the plugins we are using… which is about 20 or so.
I don’t think bbPress is going anywhere. It is a great little piece of community software. If WP decides to stop supporting it, I bet someone (maybe one of us?) will pick it up and fork off into a new direction for it.
Just today I got an email from someone who visited my bbPress site and they wanted to know what software I was running. They said they really liked it and was hoping it was a plug-in to WP so they could run it. It is feedback like this that WP needs to hear…
December 2, 2009 at 2:02 am #81993In reply to: Where are the themes
buddha-trance
MemberI guess it depends on the complexity of the WP theme, but when I matched the looks of the forums, with some trial and error, it wasn’t too complicated. In short, it was a matter of matching header, footer, and use the “hottags” section as the sidebar. If I can backtrack my steps, I will post about it, in case it may help other people, while we are waiting for the official docs.
This WordPress plugin by Sam Bauers also looked very interesting, but I think it’s not working with the latest version of WP, after 2.6.2. It would be nice if the plugin could be updated.
December 2, 2009 at 1:41 am #82002In reply to: New Theme For BBPress
buddha-trance
Member@arpowers – from your site:
iBlogPro now is one of the only WordPress themes with its very own matching BBPress forum Template.
This is a wonderful idea that any theme developer should keep in mind! Kudos for that.
Themes that already come with the matching forum templates for bbPress, will help in keeping the momentum going for this great platform. Such implementation will make bbPress the logical choice, rather than having people looking around for forum platforms, and getting confused.
As for the looks of the theme, what can I say…. I am a mac addict… Very cool!!!
-
AuthorSearch Results