Search Results for 'bbpress'
-
Search Results
-
Hi,
I tried to install bbPress 1 Alpha 2 + wp_2.6, but in the second step configuration appears :
“logged in” cookie key, but I can not find it. What is it?
Can anyone help me?
bbPress turns 2 years old today!!!
It’s been a big year with new features being added at a rapid pace thanks to hard work by Sam and Mike. It’s an easy guess that we should see a stable 1.0 beta by the end of 2008.
But don’t let the modest sounding “1.0” fool you, it’s practically a “2.0” inside with all the changes since 0.9 including BackPress integration (merges core functions from WordPress) and an XML-RPC api like WordPress as well.
While Matt Mullenweg (Automattic/WordPress founder) created bbPress during Christmas 2004 to power WordPress.org, version 0.7.2 (nicknamed “bix”) was only officially released for public consumption on Saturday October 14th 2006 making it two years old today.
Regardless of being summarily deleted from Wikipedia this year, bbPress has never been more popular. I’ve been tracking bbPress growth via the Top 100 and Top 1000 lists for over a year now and this month shows the list surging to nearly 5000 forums, with bbPress being used in over 80 countries and in dozens of languages.
Roughly 10 sites a day have installed bbPress over the past two years and over 70% them continue to use it. The largest bbPress forum is about to break a million posts by the end of the year and just to be on the Top 100, a forum now needs at least 7000 posts.
bbPress hosted forums via TalkPress (ala WordPress.com) are on the horizon, and with new forum conversion software being developed and more plugins and themes available than ever before, bbPress will definitely make it’s mark in 2009 and should have a very exciting third year!
Hi,
Just one more topic separated from the release topic to make life easier.
Hi,
Installed a zip package of alpha 2 and it went OK and as I couldn’t quite get the logins to work for WP and bbP and tried installing it again.
I saw a few messages about install packages not being complete so I downloaded this second one.
Now when I try to install it, on the final screen it give the following PHP error – but the install seems OK.
Warning: chmod() [function.chmod]: Operation not permitted in /home/1295/htdocs/www.example.com/public_html/forums/bb-admin/class-install.php on line 1021
Warning: Cannot modify header information – headers already sent by (output started at /home/1295/htdocs/www.example.com/public_html/forums/bb-admin/class-install.php:1021) in /home/1295/htdocs/www.example.com/public_html/forums/bb-includes/functions.php on line 2902
I tried a few times but got the same thing, then I comared my first and second packagas and saw that bbpress/bb-admin/class-install.php is very slightl different from line 264
The file in the first package has 2 if statements and the second has 1 if statement as follows:
class-install.php from package 1:
if (!defined(‘BB_INC’)) {
// Define BB_INC
// Tell us to load includes because bb-settings.
php was not loaded
// bb-settings.php is generally not loaded on
steps -1, 0 and 1 but
// there are exceptions, so this is safer than
just reading the step
$this->load_includes = true;
define(‘BB_INC’, ‘bb-includes/’);
}
if (!defined(‘BACKPRESS_PATH’)) {
define(‘BACKPRESS_PATH’, BB_PATH . BB_INC . ‘
backpress/’);
}
class-install.php from package 2:
if (!defined(‘BACKPRESS_PATH’)) {
// Define BACKPRESS_PATH
// Tell us to load includes because bb-settings.
php was not loaded
// bb-settings.php is generally not loaded on
steps -1, 0 and 1 but
// there are exceptions, so this is safer than
just reading the step
$this->load_includes = true;
define(‘BACKPRESS_PATH’, BB_PATH . BB_INC . ‘
backpress/’);
}
But the weird thing is that when I put back the first class-install.php I still get the error. I’m not too fussed as the install goes OK but it could be quite off putting if users get this PHP error.