JJJ, thanks for all your work on the new bbpress!
I run a wordpress site that uses a premium classifieds theme, and I have a bbpress forum integrated on the site.
One little issue is that members of my site have both a forum profile and another profile associated with the classifieds section.
It would be best if members of my site had only a single profile, that could be linked to from both the forum and from the classifieds section.
And the profile could show both recent forum posts of that member, as well as recent classified ads.
I’m not sure if this issue is best to bring up here with bbpress of maybe with the developers of the classifieds theme, or if it’s something I should try to handle myself.
I have a deep integration with wordpress and up until today it has been working fine but then all of a sudden i cannot log into bbpress and i cannot log out properly.
I am logged out of wordpress but the link still says logout on the bbpress forums. I have cleared all cookies to see if this was the issue but no joy.
If i sign in as a subscriber then i am not able to see any forms to add a new topic or edit my profile.
if i sign in as an admin i can add new topics and edit my profile
any ideas?
What do you mean by lite wp? Plagin for wordpress integration or blog plugin for bbpress? There is bb-blog plugin but it needs some more work to become complete solution.
https://bbpress.org/forums/topic/bbblog-20-plugin
What do you mean by lite wp? Plagin for wordpress integration or blog plugin for bbpress? There is bb-blog plugin but it needs some more work to become complete solution.
https://bbpress.org/forums/topic/bbblog-20-plugin
novuscory, bbPress is NOT a WordPress plugin, you should move its directory to yoursite.com/bbpress/
novuscory, bbPress is NOT a WordPress plugin, you should move its directory to yoursite.com/bbpress/
That’s your WordPress install taking over. Does the folder /forums/ exist, and does /forums/index.php exist?
Check your .htaccess files for both WordPress and bbPress.
That’s your WordPress install taking over. Does the folder /forums/ exist, and does /forums/index.php exist?
Check your .htaccess files for both WordPress and bbPress.
I changed permalinks so that forum will display links showing the forum title. When I hit submit I was directed to a 500 Internal Server Error, and now I can no longer access my forums or the admin.
http://shinmegamitensei.net/forum/
The main site works fine, only the forums. How do I fix this? I have forum installed in same database as WordPress.
Hey guys, first off thanks for this awesome forum solution!!
I have been able to customize it pretty well with my wordpress installation, take a look here..
http://www.designsaga.com/forum
I am having some problems with nonce verification with my forms. I couldn’t find where the hidden form fields are being output so I was adding them in manually like this..
<button id = 'postformsub' type = 'submit' name = 'Submit' tabindex = '4'></button>
<?php if ( function_exists('wp_nonce_field') ) { wp_nonce_field('_wpnonce', '_wpnonce'); ?>
<input type="hidden" value="/forum/topic.php?id=<?php echo get_forum_id(); ?>" name="_wp_http_referer">
<input type="hidden" value="<?php echo get_forum_id(); ?>" name="topic_id">
</form>
The form was working great but after the nonce expired I keep getting this message when trying to submit the form..
Your attempt to create this topic has failed.
Please try again.
Back to Support Forum.
I’m just not sure what I should do.. any help is appreciated!
Thanks! Clearly, bbPress is officially going to be a plugin for WordPress going forward (but as you note, the code is there to fork for those who still want a standalone version).
Thanks! Clearly, bbPress is officially going to be a plugin for WordPress going forward (but as you note, the code is there to fork for those who still want a standalone version).
I have the same issue – were you able to fix?
I have installed wordpress as localhost and added the bbpress-integration no unable to access the wordpress admin. The site is still working perfectly – any suggestions?
Thanks. So a pure ftp upload into the plugin folders then ?
Not in the plugin folder, it’s not a plugin. It’s a software just like WordPress, Word or Firefox.
Just follow the instructions: https://bbpress.org/documentation/installation/
Thanks. So a pure ftp upload into the plugin folders then ?
Not in the plugin folder, it’s not a plugin. It’s a software just like WordPress, Word or Firefox.
Just follow the instructions: https://bbpress.org/documentation/installation/
2) When will this next version be released (1.1? 1.03? a wordpress plug-in??)
Never.
Never.
First alpha is coming soon.
I don’t think this is all true. Everything I have read from “official” sources is that the stand-alone version of bbPress will still be available, and looking at trac.bbpress.org, there is still a 1.1 version in development that has only 5-6 tickets remaining. Do you have a source for stating that 1.1 will never be released? That would be helpful.
2) When will this next version be released (1.1? 1.03? a wordpress plug-in??)
Never.
Never.
First alpha is coming soon.
I don’t think this is all true. Everything I have read from “official” sources is that the stand-alone version of bbPress will still be available, and looking at trac.bbpress.org, there is still a 1.1 version in development that has only 5-6 tickets remaining. Do you have a source for stating that 1.1 will never be released? That would be helpful.
the bbPress community in a bit of a transition period while it gets rereleased as a WordPress plugin.
But, yes you can put advertising on your site using OpenX – it would require editing your forum’s theme files by placing the code generated in OpenX in the spots you want them to appear.
Any web developer/designer should be able to do quite easily.
the bbPress community in a bit of a transition period while it gets rereleased as a WordPress plugin.
But, yes you can put advertising on your site using OpenX – it would require editing your forum’s theme files by placing the code generated in OpenX in the spots you want them to appear.
Any web developer/designer should be able to do quite easily.
1) Can the old anon plug-in be fixed while we all wait for the next version of BBPREss.
I don’t think so.
2) When will this next version be released (1.1? 1.03? a wordpress plug-in??)
Never.
Never.
First alpha is coming soon.
3) Is the current development version stable enough to use live?
Of course, far more stable than 1.0.2.
4) How does a normal person get a version of the development version to install.
WIth an SVN client. The are gazillions.
1) Can the old anon plug-in be fixed while we all wait for the next version of BBPREss.
I don’t think so.
2) When will this next version be released (1.1? 1.03? a wordpress plug-in??)
Never.
Never.
First alpha is coming soon.
3) Is the current development version stable enough to use live?
Of course, far more stable than 1.0.2.
4) How does a normal person get a version of the development version to install.
WIth an SVN client. The are gazillions.
I’m running v1 so not sure if this works in 0.9 – but you follow the same pattern as WordPress.
In your forum theme’s functions file deregister then register your new scrip.
e.g.
wp_deregister_script('jquery');
wp_register_script('jquery', 'http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js', false, '1.4.2', true);
wp_enqueue_script('jquery');
See https://codex.wordpress.org/Function_Reference/wp_enqueue_script for more details
I’m running v1 so not sure if this works in 0.9 – but you follow the same pattern as WordPress.
In your forum theme’s functions file deregister then register your new scrip.
e.g.
wp_deregister_script('jquery');
wp_register_script('jquery', 'http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js', false, '1.4.2', true);
wp_enqueue_script('jquery');
See https://codex.wordpress.org/Function_Reference/wp_enqueue_script for more details
Just to summarize my questions:
1) Can the old anon plug-in be fixed while we all wait for the next version of BBPREss.
2) When will this next version be released (1.1? 1.03? a wordpress plug-in??)
3) Is the current development version stable enough to use live?
4) How does a normal person get a version of the development version to install.
If the answers could be phrased in ways that don’t assume I already know the answers that would be helpful.
Just to summarize my questions:
1) Can the old anon plug-in be fixed while we all wait for the next version of BBPREss.
2) When will this next version be released (1.1? 1.03? a wordpress plug-in??)
3) Is the current development version stable enough to use live?
4) How does a normal person get a version of the development version to install.
If the answers could be phrased in ways that don’t assume I already know the answers that would be helpful.