I installed these but did not have all active at once.
Akismet
Allow Images
AutoRank
bb-ga
BBcode Lite
bbPress Integration
bbpress SEO tools
bbPress signatures
bbRatings
Bozo Users
Facebook Like
Google Sitemaps
Members Online
Nicer Permalinks
Profanity Filter
Show Avatar
Social It
User Photo for bbPress
The issue occurs with any theme. Could it be a database issue?
Thanks Chris.
R
What plugins *were* you running? Anything that affects permissions or making forums hidden or for moderation or anything like that? Did you map the roles between WordPress and bbPress (if you’re integrated)?
I actually brought this up a few months ago, lets me see if i can find it
EDIT: https://bbpress.org/forums/topic/no-filters-or-actions
Okay,
Today I was looking to develop a Plugin to set limit on How may topic user can Start in a day.. I found was that bbPress don’t have any *pre* action hook for inserting / update topics or posts. It only has *post* action hook…
It would be helpful to have a pre before inserting/updating records…
I worked around this issue by empting out title (using pre_topic_title) in topic insert.. This is not nice, but works! I guess..
Thanks
Jeevan
Looking at the theme files, the function pagelines_localize is only declared once, but with deep integration, it’s trying to be redeclared. So, wrapping the function in a conditional should work to prevent it from being declared again.
// LOCALIZE
if(!function_exists('pagelines_localize')) {
function pagelines_localize(){
// LOCALIZATION stuff
}
}
?>
Everyone,
For bbPress integrity and stellar bbPress forum support reasons, I’m going to mark this as “resolved,” then post again when the exact problem is truly resolved by the “paid theme” company.
Thank you.
You got it Chris!
HUGE help and about what I feared. Not slamming Pagelines, but you can see the issues on the forum you linked to above. They suggested deep integration issues, etc. only to realize they hadn’t given me the proper files to begin with. A lot of my time…poof!
Alright. I’m off. You have done more than enough and I will post such at the Pagelines forum.
The problem isn’t solved but you single-handedly zeroed in on it.
Cheers!
The problem here is that the WordPress theme is from Pagelines and the bbPress theme is too. It looks like both themes have a function called pagelines_localize() and when deep integrating, you get an error since the function name is already in use. The function name should be changed in bbPress probably, or removed (since you probably don’t need it in both places, when you are integrated.) Also, since these are paid themes from the same company, it seems like they should have already heard about this problem, but if not, should be willing to help resolve it.
Didn’t pagelines used to come around here? I remember their avatar I think.
https://bbpress.org/forums/profile/arpowers
haha:
http://www.pagelines.com/forum/topic.php?id=2243
Without being logged in, all you can see is the first post. But a search for pagelines_localize brings up that topic, with 4 voices and 11 posts. I think the support should be carried on there since it does not appear to be a problem with bbPress but with the Pagelines themes.
Will do, sir! From the WP globals.php file:
// LOCALIZE
function pagelines_localize(){
// LOCALIZATION – Needs to come after config_theme and before localized config files
define(‘TDOMAIN’, THEMENAME);
define(‘LANGUAGE_FOLDER’, TEMPLATEPATH.’/language’);
load_theme_textdomain(TDOMAIN, LANGUAGE_FOLDER );
$locale = get_locale();
$locale_file = TEMPLATEPATH . “/language/$locale.php”;
if ( is_readable( $locale_file ) )
require_once( $locale_file );
}
?>
pagelines_localize()
That’s coming from your theme. Try switching to the default WordPress theme and see if the error is still present.
I can’t download a copy of the Pagelines theme, so can you post the lines from about 50 to 65 in this file:
/wp-content/themes/iblogpro4_dev/core/globals.php
At least from line 53 to line 61, but I suspect there may be some conditional around it and need to see the whole context. If you want, you can email me that file at chrishajer [at] gmail [dot] com as well. Looks like you will need to try and declare that function only if it isn’t already declared. This would be a modification to the WordPress theme file.
But, try the default WordPress theme and see if integration works, or gives another type of error.
thanks Ben L. that answers my question. May your code always be poetic
Hello all
Could somebody tell me where the cookies are set in bbpress ie, which files and which lines of code if possible.
Thanks
Kevin –
That seems to have done the trick! I just did a test registration on both Firefox and Safari and both seem to have gone through successfully. Thank you for pointing out the plugin! I had been searching for some time beforehand, and I would probably still be searching without your help.
Thanks again.
Hi Kevin,
Thank you for your prompt reply. I am using WordPress 3.0.1 and bbPress 1.0.2
I will look into your links now, and let you know how it works out.
Thanks again!
MobileMe does not support server-side scripting languages, so it wouldn’t work. bbPress runs using PHP and MySQL. https://bbpress.org/about/requirements/
Actually it might be this:
https://bbpress.org/plugins/topic/zaerl-wordpress-3-integration/
with the fix for it here:
https://bbpress.org/plugins/topic/zaerl-wordpress-3-integration/
If only we could add some documentation like an FAQ this would be alot simpler…
What version of WordPress are you using?
What version of bbPress are you using?
please
Hello,
I have set up a WordPress/bbPress integration at http://www.southwoodsmagazine.com . If you click on The Grapevine Forum, you will be directed to http://www.southwoodsmagazine.com/wordpress/bbpress which is where the bbPress installation resides. I have used ThemePress (From http://www.adityanaik.com/integratepress-part-i/ ) to carry the header, footer, etc over from the WordPress install.
I have successfully created the forums and kept the look consistent. The problem I am running into now is with the Registration process. When the visitor clicks on “Join Now” or “Register” they are directed to the Registration page. There are two required fields, Username and Email. I have filled both out, with a valid email address in the email field, and clicked the Register button. Upon doing so, nothing seems to happen. This is in Firefox. I then tried doing the same in Safari and it returned “There was a problem with your email; please check it.” beneath the Email field.
I can’t seem to figure out what would be the cause of this error. Does anyone have any thoughts? Any input would be appreciated.
Thank you.
Since the plugins area is a separate copy of bbPress, it’s very possible a permission didn’t get copied over.
What happens if you logout and then login from the plugin area specifically, any change?
Thanks very much for the input _ck_
No, bbpress itself is stateless and does not use sessions.
Topic Views is one plugin that comes to mind that adds sessions to track when the same visitor sees the same topic over and over again to prevent the count from increasing.
Other plugins that deal with a multi-page registration process may also use sessions.