Skip to:
Content
Pages
Categories
Search
Top
Bottom

No e-mail activation?

Published on March 16th, 2008 by

Any chance of getting a no e-mail activation thingy so that e-mails arent sent when people register. Its very annoying and free servers dont support it so my forum is pretty much useless to members as they dont receive their passwords. PLEASE in-cooperate this into a new version or maybe a plug-in.

Beta Problem

Published on March 16th, 2008 by gkp99

First off all – I’m sorry if I m posting in the wrong place.

I have just uploaded the latest nightly build of 0.9. I have configured bb-config.php but when I visit bb-admin/install.php I get this error

‘Warning: Call-time pass-by-reference has been deprecated; If you would like to pass it by reference, modify the declaration of [runtime function name](). If you would like to enable call-time pass-by-reference, you can set allow_call_time_pass_reference to true in your INI file. in /home/.omaha/gkp99/www.cocoadummy.co/forums/bb-settings.php on line 365

Warning: require(/home/.omaha/gkp99/www.cocoadummy.co/forums/bb-includes/backpress/functions.core.php) [function.require]: failed to open stream: No such file or directory in /home/.omaha/gkp99/www.cocoadummy.co/forums/bb-settings.php on line 74

Fatal error: require() [function.require]: Failed opening required ‘/home/.omaha/gkp99/www.cocoadummy.co/forums/bb-includes/backpress/functions.core.php’ (include_path=’.:/usr/local/php5/lib/php:/usr/local/lib/php’) in /home/.omaha/gkp99/www.cocoadummy.co/forums/bb-settings.php on line 74′

I am using the same database as for a new install of WP 2.5 (latest build as of now).

Not sure what I’ve done wrong – any ideas? It looks like it’s calling a file called functions.core.php that doesn’t exist.

Garry,

REQUIREMENT OF Forum – WebMaster

Published on March 15th, 2008 by

Hello,

I am the webmaster of www.infotainmentcenter.com and we are

in requirement of FORUM, so, please help us .

Our system will not support PHP pages .

So, I would request you to provide me some feedback about this matter

on how can I embed a forum software.

Two different databases

Published on March 15th, 2008 by

I try to integrate BBpress and WordPress. I’ve already read that it isn’t a problem to have BBpress on a sub-domain. So that is something I will do. Another problem I have is that I want to have two different databases. In a later stage I want to be able (doesn’t say that I will do it) to remove the forum with all his database information. Is there a simple way of doing that?

Incorrect handling of apostrophes

Published on March 15th, 2008 by gkp99

I just made a test post with the title Bob’s Post but it has been saved and is displayed as Bob/’s Post. Is this a bug?

Thanks

Install finished but it’s as if my forum doesn’t exist

Published on March 15th, 2008 by crazlunatic

Hello. So after I have installed it, I’m taken to a login screen where I login, and then I get taken to this page. http://vistarewired.com/test2/forums/

Why is this? I’ve tried reinstalling 3 times and the same thing happened.

[resolved] Pick a Section dropdown is blank – bbPress 0.8.

Published on March 14th, 2008 by

I’m just following up – I posted this bug a while ago, and when I didn’t hear back, I researched and found the solution. (wahoo!)

PROBLEM:

If private-forums plugin is installed, users below moderator capabilities will have a BLANK Pick a Section dropdown on post-form.php. If they go ahead and try to click “submit” on their post, they get an error: Forum topic is closed. (error is bogus, obviously, because they are trying to post a NEW topic).

SOLUTION

In the /my-plugins/private-forums.php, replace line 294:

$new_forums[] = $forum;

with:

$new_forums[$forum->forum_id] = $forum;

WHY IT WORKS

The $new_forums array replaces the global $forums array with just the forums that user is permitted to see. The $forums array uses the forum_id as the array index. Without this fix, the $forums array will have the default index, i.e. 0, 1, 2, 3…

If your forum ids are (a) ordered numerically by their id and (b) no numbers are ‘skipped’ in the ids, you may not notice this issue. However, in my case, my forum ids are in the order “6, 7, 1, 10, 9” because we have added and deleted and reordered them over the life of the forum.

Hopefully this helps someone.

Cheers,

k

Add Moderators and Admin

Published on March 14th, 2008 by

Perhaps I am stupid, which I like to believe that I am not. However, I have searched through documentation, search results here and on google, and scoured the backend. I still can not find a way to promote users to moderator or keymaster/admin status. One method for promotion I thought of was to copy the mysql entry for my capabilities into that of another user, but I have no such entry to copy from for moderators. Should the promotion/demotion of users be something part of the software? Does it exist and I am not seeing it? Please help at your convenience.

Thanks in advance,

Stu

bbPress 0.9 – plugin compatibility list

Published on March 13th, 2008 by Sam Bauers

Please post here which versions of your plugins are compatible with bbPress 0.9

Here are the ones I look after that I have tested so far.

More to come.

require_once problems

Published on March 13th, 2008 by gkp99

Hello everyone!

Here is my setup:

WP blog = http://www.cocoadummy.com

BB forums = http://www.cocoadummy.com/forums

I have set the config.php values as required. I have enabled the bbPress-integration plugin in WP and configured it. I have added

require_once('../wp-blog-header.php');

to my bbPress config.php file. (This seems to work as I can call the WP bloginfo(‘name’) function in my footer.

When I try to go to the forums admin I get the following error:

Warning: require_once(../wp-blog-header.php) [function.require-once]: failed to open stream: No such file or directory in /home/.omaha/gkp99/www.cocoadummy.co/forums/config.php on line 4

Fatal error: require_once() [function.require]: Failed opening required ‘../wp-blog-header.php’ (include_path=’.:/usr/local/php5/lib/php:/usr/local/lib/php’) in /home/.omaha/gkp99/www.cocoadummy.co/forums/config.php on line 4

Also, I have added the following line of code to wp-config so that I can import functions from bbPress into WP (I want to add the online list to my WP sidebar):

// Import bbPress

require_once(‘../forums/config.php’);

I have added it beneath this code:

// Get everything else

require_once(ABSPATH.’wp-settings.php’);

(although the error is the same wherever I put it).

When I goto my blog homepage (www.cocoadummy.com) I get this error:

Warning: require_once(../forums/config.php) [function.require-once]: failed to open stream: No such file or directory in /home/.omaha/gkp99/www.cocoadummy.co/wp-config.php on line 34

Fatal error: require_once() [function.require]: Failed opening required ‘../forums/config.php’ (include_path=’.:/usr/local/php5/lib/php:/usr/local/lib/php’) in /home/.omaha/gkp99/www.cocoadummy.co/wp-config.php on line 34

What am I doing wrong?

Garry,

Skip to toolbar