Skip to:
Content
Pages
Categories
Search
Top
Bottom

Error when deleting forum

Published on April 6th, 2008 by

Hi,

When I try to delete a forum and all of its posts, I get the following error:

Fatal error: Call to undefined function array_may() in /home/username/public_html/forums/bb-admin/admin-functions.php on line 507

Any suggestions?

P.S. Sorry, I posted this in the wrong forum.

Newbie: Which file should I upload bbpress to?

Published on April 6th, 2008 by Hermiony

Hi,

I followed the instructions and uploaded and unzipped bbpress to my server. I wasn’t sure exactly where to upload to so I put it in ‘uploads’. According to the instructions I should then be greeted by the bbpress installer at my url, but this didn’t happen. I assume I’ve uploaded it to the wrong place. Any advice?

Site7 theme for wordpress and bbpress

Published on April 6th, 2008 by so1o

here is my latest theme

http://www.adityanaik.com/forums/

the site has a working integration of wp 2.5 and bb 0.9

Only key holders add topics

Published on April 6th, 2008 by

How can I make it so only key holders can add topics.

Sorry I’m new to use these forums

Getting Not Found error

Published on April 6th, 2008 by stuzog

I’ve installed bbPress 0.9.0.1 in a WordPress 2.5 site. It works for a while then when I try to access a topic I get:

Not Found

Sorry, but you are looking for something that isn’t here.

and the theme displayed is that of the WordPress blog. After that, only the bbPress front page is useable.

trick to make relative URLs instead of full URI

Published on April 5th, 2008 by _ck_

It was really bothering me how a page full of links was wasting so many bytes on full absolute URI’s with the domain name, etc. when all it needed was a tidy relative URL. The front page alone is 4k bigger just because of all the full URIs on the tag cloud and views, etc.

ie. https://www.bbpress.org/forums/forum/plugins

vs. /forums/forum/plugins

(multiply that by a few hundred)

So it dawned on me just now that it’s fairly easy using filters to make all the urls relative. Just for safety, we don’t kick in the relative URLs until bbPress has gotten past the header section of the template. This makes sure that redirects, stylesheets, and javascript is handled properly.

function bb_relative_uri($r) {return "/forums/"; }	// change forums to your path
function bb_relative_domain($r) {return ""; }
function bb_relative() {
add_filter( 'bb_get_option_domain','bb_relative_domain',255);
add_filter( 'bb_get_option_uri','bb_relative_uri',255);
} add_action('bb_head', 'bb_relative',255);

.

In some cases, relative URLs actually makes Internet Explorer cache better so this may be helpful for subtle speedups too.

I haven’t discovered anything broken by this yet but be sure to let me know if you run into anything.

An old config.php file has been detected in your installation.

Published on April 5th, 2008 by banago

I am installing an new bbpress forum and the following error happended.

‘An old config.php file has been detected in your installation. You should remove it and run the installer again. You can use the same database connection details if you do.’

How can I resolve it?

Fatal error: Cannot redeclare bb_user_sanitize()

Published on April 5th, 2008 by Aeterno

I can’t progress past step 1 of the installer… I keep getting this bloody error….

Fatal error: Cannot redeclare bb_user_sanitize() (previously declared in /home/xxxxxx/public_html/forum/bb-includes/formatting-functions.php:125) in /home/xxxxxx/public_html/forum/bb-includes/deprecated.php on line 285

avatars in wordpress and bbpress

Published on April 5th, 2008 by

Hey all,

So I’ve searched both this forum and the WP forum. And there are a ton of avatar related threads, and I’ve read through most of them. It looks like there have been a few various implementations.

But most of those threads are almost a year old, and now we’re in 2.5 and .9.0.1 land… and so I’d love a definitive uptodate answer as to which plugin(s) to use to best integrate avatars into both sites.

Gravatars are cool and all (I do have an integrated user base) but pretty much the first question people asked is how they can upload an avatar without using gravatars (I think some people don’t want their image suddenly showing up all over the web wherever they’ve commented in the passt)

Merge registration pages

Published on April 5th, 2008 by

Is it possible? when wp and bbpress is so tight, i would like to use 1 reg page.

Skip to toolbar