Info
- 67 posts
- 20 voices
- Started 3 years ago by Sam Bauers
- Latest reply from Ipstenu
- This topic is not a support question
bbPress 0.9.0.4 and 1.0-alpha-5 released
-
- Posted 3 years ago #
To remove the warnings when using PHP 4, until Sam fixes it, go into
bb-settings.phpand change the error_reporting line (line 51 in 0.9.0.4 and line 29 in 1.0a5)old:
// Modify error reporting levels error_reporting(E_ALL ^ E_NOTICE);new:
error_reporting(0); -
- Posted 3 years ago #
Almost made it all the way through.
I added the include line to the alpha 5 download and got to step 2 before this error:
Warning: cannot yet handle MBCS in html_entity_decode()! in /home3/wifirepo/public_html/wpmatrix/forum/bb-includes/backpress/functions.core.php on line 389
This is the same warning I get when trying to install 0.9.04.
-
- Posted 3 years ago #
Okay, with 1.0-a-5 trunk I get the same old inactive user when I register via WP. No errors on the page or in the log, though.
Also I got this error, which I fixed by flipping back to the old file:
Call to undefined function wp_check_invalid_utf8() in /home/XX/public_html/forums/bb-includes/functions.wp-core.php on line 60 -
- Posted 3 years ago #
Ok. I downloaded the 1.0 alpha-5. I added the include to functions.core.php. I commented out the error message statement in bb-settings.php. I get through the first step.
But at Step 2, I get this screen:
Oh Dear!
bbpress is already installed, but appears to require an upgrade.
Perhaps you meant to run the upgrade script instead?How do I avoid this error screen?
-
- Posted 3 years ago #
I commented-out the error_reporting line in the "stable" 0.9 download and still get this installation error:
Warning: cannot yet handle MBCS in html_entity_decode()! in /xxx/xxx/xxx/xxx/forum/bb-includes/wp-functions.php on line 113
Can someone put together a working version of bbpress for download?
-
- Posted 3 years ago #
Okay instead of commenting it out, do this instead
error_reporting(0); -
- Posted 3 years ago #
same result.
-
- Posted 3 years ago #
Weird charset (MBCS) errors for PHP 4 users are now fixed in trunk.
-
- Posted 3 years ago #
I have installed it this morning, it's working fine for me now.
Thanks to sambauers,
-
- Posted 3 years ago #
Thanks for the fix Sam.
What's really scary is the code it replaced.I can't believe what I was seeing - did they really build the $table on EACH and EVERY call instead of making it static? That's some serious non-performance thinking.
I mean just look at it, ugh:
function htmlspecialchars_decode( $str, $quote_style = ENT_COMPAT ) { $table = array_flip( get_html_translation_table( HTML_SPECIALCHARS, $quote_style ) ); $table = array_merge( array( ''' => "'" ), $table, array( '&' => "&", '&' => "&" ) ); return strtr( $str, $table );on EVERY call it builds $table?
Well it's gone now so I guess that's what counts.
I hope the error catching routine doesn't slow things down too much.Personally I am waiting for PHP 5.3 to finally "upgrade" from PHP 4
It won't be worth it until then. -
- Posted 3 years ago #
Not sure if this is new since alpha5 or not, but on a fresh install the auth key seems to die when there is a quotation mark
"in the key.Basically a WP key like
define('SECURE_AUTH_KEY', '-\"r642fed3E1d>}MdGFlh@tR!QPU%/!S_6;CjO0}^>6TclyZM9mEKqEn+ <?)3 U#*X;');Ended up like
define('BB_SECURE_AUTH_KEY', '-\');This actually messed up the installer at one point too, displaying part of the key inside an area where it wouldn't normally.
Should I trac this Sam?
-
- Posted 3 years ago #
Personally, I would start a trac ticket. They can determine there if the issue is valid or not, and how to fix it. There have been problems with the WordPress API-generated keys in bbPress before, maybe something was reintroduced.
-
- Posted 3 years ago #
Speaking of reintroduced, I'm logged into my forum and WordPress, but for some reason I am listed as Inactive on my posts when viewing a topic. I thought this was fixed in alpha2?
Why do I get the feeling that alpha5 was bolted on top of an outdated 1.0 version and things went cross eyed?
-
- Posted 3 years ago #
Fixed my fatal call by re-uploading backpress. THAT was weird. And I show as 'Site Admin', jjj.
-
- Posted 3 years ago #
When will the fix migrate to either the public "stable" or public "alpha" version, rather than remain closed to developers? I downloaded the "alpha" and the fatal error remains:
"Fatal error: Call to undefined function: backpress_get_option() in /bb-includes/backpress/functions.core.php on line 412."
-
- Posted 3 years ago #
This seems a great time to mention a new hidden feature in bbPress 1.0 based on a suggestion I made: "Safe Mode"
When you don't know why something isn't working, one quick and easy way to prove if it's a plugin gone wrong or not is to temporarily try "Safe Mode"
The way to activate safe mode is to edit
bb-config.phpand insert$bb->safemode = true;Then your forum will temporarily switch to the default theme (which you should never have tampered with) and disable all plugins, temporarily.
When you are done testing, remove the line from
bb-config.phpThis is far easier than deactivating 20+ plugins, one at a time and then having to activate them again.
-
- Posted 3 years ago #
I'm having an installation error as well :(
Warning: cannot yet handle MBCS in html_entity_decode()! in /home/content/b/r/i/xxxxxx/html/xxxxxx/support/bb-includes/wp-functions.php on line 113
-
- Posted 3 years ago #
I'd say try the nightly build ( http://bbpress.org/nightly-builds/bbpress-latest.zip ) but I'm not really sure when that's updated anymore...
The SVN is open to be downloaded by anyone.
-
- Posted 3 years ago #
The nightly build/bbpress-latest.zip has the MBCS warning screens after step 1 of the installation.
-
- Posted 3 years ago #
I created a new directory and copied the files from bbpress-latest.zip to it. I was able to install bbpress 1.0-alpha 4.
However, there was no screen about creating a user or your first forum or any integration.
-
- Posted 3 years ago #
Update: I was able to integrate bbpress 1.0 alpha 4 with wpmu 6.5 and buddypress beta.
-
- Posted 3 years ago #
is this fixed yet?
-
- Posted 3 years ago #
I sum up to the toll; recent registered users through wordpress can't post in the forum. The "add new" link doesn't appear whenever one of them logs in.
I tried to manually assign roles but whenever I go to the profile page I get a function error there. Forum death :(
-
- Posted 3 years ago #
Even though that error is there, if you change their role from "Inactive" to "Member" the error will go away and the user will have member access.
Forum isn't dead, just high maintenance for right now. ;)
-
- Posted 3 years ago #
@ wordpressfan Congrats for getting it going. I tried bbpress 1.0-alpha 4 and still was having issues getting the install to work.
-
- Posted 3 years ago #
wordpressfan I tried bbpress 1.0 alpha 4 also. I still had install errors :( Congrats.
-
- Posted 3 years ago #
Even though that error is there, if you change their role from "Inactive" to "Member" the error will go away and the user will have member access.
I can't change any role, whenever I go to the profile page I have a php error. Maybe using phpmyadmin but this is a pain.
-
- Posted 3 years ago #
So, the nightly builds seem to be stuck on an old version!!!
You can get the latest trunk from here (zip link at the bottom):
http://trac.bbpress.org/browser/trunk
You will have to manually add BackPress files from here into a directory at bb-includes/backpress (zip link an the bottom):
-
- Posted 3 years ago #
Had anyone had success with alpha 5 (actually r1910) cookie integration with wordpress mu 2.6?
-
- Posted 3 years ago #
You will have to manually add BackPress files from here into a directory at bb-includes/backpress (zip link an the bottom):
I didn't catch this. How do you download all these files?
BTW, what did it happen with 1.05alpha? Does it work?