Search Results for '"wordpress'
-
AuthorSearch Results
-
January 21, 2013 at 11:02 pm #125409
In reply to: Vanilla 2 Converter
brokentwig
ParticipantYeah, all the Vanilla tables are prefixed with “GDN_”. I was mostly trying to work it out in the converter file so I could share it with others that might be trying to convert. Vanilla is pretty popular, so there’s gotta be a few out there tired of Vanilla’s poor integration with WordPress. Unless there is an easy way to filter them, I’ll just run the SQL statement above, that clears them out nicely. Thanks alot for your help.
January 21, 2013 at 10:00 pm #125399In reply to: Awkward Permalink Problem causing 404 Errors
Stephen Edgar
KeymasterIf you are going to use a plugin to hack the permalinks of bbPress, this is ‘that’ plugins support issue not a bbPress issue as permalinks in bbPress work as expected per design.
You would be far better of asking in the ‘Custom Post Type Permalinks’ support forum and even read some of those topics for similar issues.
https://wordpress.org/support/plugin/custom-post-type-permalinks
January 21, 2013 at 5:33 pm #125385In reply to: New Topic Form Shortcode Issue
Stephen Edgar
KeymasterCan you create a bug ticket over at trac for this please
January 21, 2013 at 5:32 pm #125384In reply to: Forum reply redirect URL rewrite issue
apet083
ParticipantO.M.G I have finally come across the solution to my problem! Well I have only tested it in my local environment a couple of times and the issue has gone away so hopefully it’s fixed for good!
https://bbpress.trac.wordpress.org/ticket/2155
The solution was to change the `bbp_redirect_to_field()` function. I changed this function located in bbpress\includes\common\template-tags.php and the redirects now work!
Thanks bbPress team =)
Modified function:
`function bbp_redirect_to_field( $redirect_to = ” ) {
// Make sure we are directing somewhere
if ( empty( $redirect_to ) ) {
if ( isset( $_SERVER[‘REQUEST_URI’] ) ) {
$redirect_to = ( is_ssl() ? ‘https://’ : ‘http://’ ) . $_SERVER[‘HTTP_HOST’] . $_SERVER[‘REQUEST_URI’];
} else {
$redirect_to = wp_get_referer();
}
}// Remove loggedout query arg if it’s there
$redirect_to = (string) esc_attr( remove_query_arg( ‘loggedout’, $redirect_to ) );
$redirect_field = ”;echo apply_filters( ‘bbp_redirect_to_field’, $redirect_field, $redirect_to );
}`January 21, 2013 at 2:09 am #125354In reply to: Need to block ability to change password
Shane Gowland
ParticipantbbPress’ profile pages are simply a front-end interface for the profile settings available through the WordPress dashboard.
The best approach would be to see how your external membership system is disabling this functionality in WordPress, then reproduce that for bbPress.
I think giving the user an edit profile panel in a discussion forum plugin is a bad approach
To be honest, this seems like pretty core functionality for any discussion board software. I’ve personally never encountered a forum that didn’t allow me to make changes to my profile or settings.
January 21, 2013 at 12:42 am #125346In reply to: Vanilla 2 Converter
Stephen Edgar
Keymaster1) In the yellow status window of the importer if you right click in Firefox/Chrome ‘inspect element’ you can check the SQL queries that the importer ran, have a look at the SQL query for the user import and check if that is what the SQL query should be.
The from/join logic is in converter.phpL#777 and you can use that as a guide to how to translate your query to the fields you are mapping.
2) I would not worry about this option as once you have finished the import and start to run the ‘repair forums’ tools the last option is “Remap existing users to default forum roles” and that will set all users without a bbPress role to ‘participant’
Feel free to throw any questions you have here as I am trying to fix a join for the Invision.php importer as we speak and its being a pain also 😉
January 21, 2013 at 12:08 am #125344In reply to: Vanilla 2 Converter
Stephen Edgar
KeymasterWhat do you want to know?
There is no need to reverse engineer anything, just grab the latest copy of Example.php either from /bbpress/includes/admin/converters/ or the latest updated version I am working on here and start modifying the table mappings as per the docs in the codex.
https://codex.bbpress.org/import-forums/ & https://codex.bbpress.org/import-forums/custom-import/
January 20, 2013 at 11:00 pm #125342In reply to: cannot edit post or replies
bruno05
ParticipantJust installed this forum and am very disappointed. I installed mingle forum as well and out of the box it is fantastic. But do not like the fact that the theme does not integrate with the site theme. This integrates with the theme but thats all it does. I have spend hours trying to get the sidebar to work and finally found a plugin called WP tweaks. Okay side bar works, but then no topis are visible and no menu items are visible to allow me to post a reply or create a topic.
Everywhere i look, I see folks telling that you have to change the code in one file or the other. Really? Come on folks before you deploy a piece of software at least make sure it works and has the basic functions before marketing it as easy to use and a 10 minute install.
I am a big Joomla fan and atleast Joomla plugins work and we do not have to change every php or html file. I like WordPress a lot, but a lot of the plugins are badly coded like this one.
Am removing this forum and will give it a 1 star for too many problems right out of the box. I need to hire programmers just to get the basics working.
No where in the documentation it talks about the sidebar issue and these other problems. But I can see why this would be a programmers dream. It is job secuerity for them so they can spend hours on making the basics work. Switching to Mingle.
Unfortunate.
bruno
January 20, 2013 at 6:40 pm #125335In reply to: Is it possible to use bbPress without WordPress
Stephen Edgar
KeymasterNo.
That is less than one sentence, bbPress requires WordPress as everything bbPress is stored within WordPress’ database tables, it does not use its own database tables for anything including user login, registration and management.
You don’t need to show WordPress ‘blog’ pages on the homepage and you can make bbPress the ‘homepage’ essential a page on your current site.
You would have to look at how you could integrate single sign on for your current users with WordPress.
January 20, 2013 at 6:27 pm #125334In reply to: Roles and Capabilities in bbPress 2.2
Stephen Edgar
Keymaster@noumaan I just tested this and everything works as expected with a WordPress user with the WP role ‘Subscriber’ and bbPress role ‘Keymaster’
These following are the only admin panels available/visible in the WP admin dashboard:- Home – Right now in forums (stats)
- bbPress Forums, Topics and Replies panels
- Profile (Edit own profile)
- Tools -> Forums (Repair, Import & Reset bbPress tools)
- Settings -> Forums (Main bbPress settings)
January 20, 2013 at 4:13 pm #125330Topic: bbPress and WPML – bbpress loads all posts on site.
in forum TroubleshootingBlackLotuss
ParticipantI’m having a bit of an issue with bbPress and WPML. For some reason it loads every single wordpress post ever created under the actual forum.
See: http://www.touhou.si/forums/forum/testingissoawesome/
Has anyone seen anything like that before?
January 20, 2013 at 3:35 pm #125326Topic: Is it possible to use bbPress without WordPress
in forum InstallationVeseliq
ParticipantHey guys,
I’m here to find a forum that I can integrate in a website I develop in my free time (http://www.carspending.com/). I need absolutely minimalistic forum software with i18n support and basically that’s most of it. But I’m not interested in WordPress, for now.
So, in one sentence – is it possible to integrate bbPress and create single sign-on, without WordPress at all? Have someone done it? Are there tutorials on the sign system of bbpress?
January 20, 2013 at 11:53 am #125320In reply to: Roles and Capabilities in bbPress 2.2
Noumaan Yaqoob
ParticipantI read this entire thread and I am still unclear about this. On my site, I am trying to make a user Keymaster. The user’s WordPress role is subscriber and I want them to have the forum role of the keymaster. The problem is that the user can not see Forums menu item on their dashboard and can not perform keymaster actions. So how do we make someone a keymaster without giving them access to administration of the whole site?
January 20, 2013 at 1:23 am #125303Topic: Need to block ability to change password
in forum Troubleshootinggswaim
ParticipantHi,
Setting up a WordPress membership site with bbPress. All is well except this site uses an external program for membership control and all email and password changes must be done in the external program.
I noticed that bbPress allows a user to edit their WP profile. I need to block this. I don’t need a forum program to give a user the ability to change their WP profile. Any help on how to remove the “Edit” link from the profile page would be greatly appreciated.
January 19, 2013 at 10:59 pm #125298In reply to: Importing Mingle Forums into bbPress?
Stephen Edgar
KeymasterI have updated Mingle.php over in trac here with what I hope should fix things up.
Let me know what other issues you have found that we might be able to improve upon also.
January 18, 2013 at 11:32 pm #125267Stephen Edgar
KeymasterI created #2172 and patched the issue of ‘special characters’ in ‘blogname’ for bbPress subscription emails.
I’m still looking into the @mentions and I cannot reproduce it.
Do you get this error for every @mention in your forums?
January 18, 2013 at 9:25 pm #125263rossagrant
ParticipantJust realised, the reason that you see the ’ in the URL is JUST THIS FORUM. It’s obviously stripping the second apostrophe JUST IN THIS FORUM.
Ignore that, it’s in 2 single quotes in my error log, it’s just because I’ve not posted it as code here.
I’ll try again here, see if it includes the second single quote.
`[19-Jan-2013 00:40:03 UTC] WordPress database error You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ‘http://www.actonthis.tv/members/hardylane/’ rel=’nofollow’>@hardylane Trish ‘ at line 1 for query SELECT ID FROM wp_posts WHERE post_type = ‘reply’ AND post_status != ‘trash’ AND post_author = 11 AND post_content = ‘No worries! Say hello to Trish from me!
@hardylane Trish is still at Man Met isn\’t she Annie? I know Niamh has departed now.’ AND post_parent = ‘12436’ LIMIT 1 made by require(‘wp-blog-header.php’), require_once(‘wp-includes/template-loader.php’), do_action(‘template_redirect’), call_user_func_array, bbp_template_redirect, do_action(‘bbp_template_redirect’), call_user_func_array, bbp_new_reply_handler, bbp_check_for_duplicate`
The URL displays fine in the error log, hopefully it will here now too.
January 18, 2013 at 9:21 pm #125262rossagrant
ParticipantCheers for the update Stephen!
I’m still getting it, every single time I use an @mention>
Here’s one I got tonight:
[19-Jan-2013 00:40:03 UTC] WordPress database error You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ‘http://www.mysite.com/members/hardylane/’ rel=’nofollow’>@hardylane Trish ‘ at line 1 for query SELECT ID FROM wp_posts WHERE post_type = ‘reply’ AND post_status != ‘trash’ AND post_author = 11 AND post_content = ‘No worries! Say hello to Trish from me!
@hardylane Trish is still at Man Met isn\’t she Annie? I know Niamh has departed now.’ AND post_parent = ‘12436’ LIMIT 1 made by require(‘wp-blog-header.php’), require_once(‘wp-includes/template-loader.php’), do_action(‘template_redirect’), call_user_func_array, bbp_template_redirect, do_action(‘bbp_template_redirect’), call_user_func_array, bbp_new_reply_handler, bbp_check_for_duplicate
Any idea what I may need to change in my DB to stop this?
With regards to the email being sent out, the SUBJECT appears like this: (apostrophe is output as '
[My Site – The Actors' Network] Topic Name
So the apostrophe should appear as The Actors’ Network, but it’s stripped.
Not sure if the 2 problems are associated?
Thanks so much for your time!
🙂
January 18, 2013 at 3:53 pm #125255Topic: Introducing plugins for Quotes, Ratings and Unread Posts
in forum PluginsErlend
ParticipantHey fellow forumites. We’ve been using bbPress 2 to much delight over at jmonkeyengine.org for a little while now. After transitioning from the legacy BuddyPress forum, we needed a couple custom plugins made to reach feature parity with our old forum. One of our members, destroflyer, brilliantly stepped up to the task and made these plugins:
- http://wordpress.org/extend/plugins/bbpress-direct-quotes/ – Does what it says on the tin.
- http://wordpress.org/extend/plugins/bbpress-unread-posts/ – We’re aware of existing plugins. But to maintain the same experience for our users it seemed more appropriate to roll our own. If some version of “Unread Posts” comes to bbPress core we’ll probably readjust to that.
- http://wordpress.org/extend/plugins/bbpress-post-ratings/ – This was made to fill in for BuddyPress Rate Forum Posts. We successfully converted all of our old ratings to bbPress. We have a plugin for that as well, though since it’s an edge-case thing we haven’t published it. Feel free to message me if you need this converter for your site.
Please be aware that @destroflyer cannot actively support these plugins (legitimate bug reports are welcome of course) since their original intent was for in-house use, and he’s making them public as a courtesy.
Enjoy!
January 18, 2013 at 2:13 pm #125251In reply to: Fancy Editor always in WYSIWYG mode …
Hansaplastique
ParticipantI’ve made some good progress with TinyEditor. It’s indeed very fast and implementation has not been super complicated (so far).
But again; mobile browsers are not the greatest browsers.
Typing and submitting works fine on iOS. Formatting however is lost somehow.
Kindle (Android) still claims it can’t load wp-comments-post.php.With both selecting text, and applying formatting is a disaster. Often the selection “hint” (Select, Select All, Copy, etc) overlaps the buttonbar of the editor.
Note: At this moment (to keep things easy) I’m only testing this in WordPress comments. Once that works OK I’m going to try to use it for bbPress posts.
January 18, 2013 at 1:42 pm #125249Topic: Error
in forum Installationkatarzynapapiernik@wp.pl
ParticipantDuring installation in wordpress 3.5 I noticed error:
Loading Issue: Author is using load_textdomain instead of load_plugin_textdomain function. This may break behavior of WordPress, because some filters and actions won’t be executed anymore. Please contact the Author about thatJanuary 18, 2013 at 12:07 pm #125244In reply to: Fancy Editor always in WYSIWYG mode …
Hansaplastique
ParticipantNever mind Redactor – it’s commercial.
Great editor but it wouldn’t fit in the license model either WordPress or bbPress.January 18, 2013 at 10:57 am #125243In reply to: Fancy Editor always in WYSIWYG mode …
Hansaplastique
ParticipantI agree; this is more something bbPress inherited from WordPress I’m assuming, since WP brings us tinyMCE. The issues at hand appear common knowledge in the tinyMCE community – and it appears that most WYSIWYG editors have similar problems.
2 WYSIWYG editors stood out so far for me to consider doing some testings with:
– TinyEditor (super small and very responsive)
– Redactor (little bigger but much more functionality, yet still responsiveAs for a bug/issue ticket; where do we do that? and wouldn’t this a bug/issue for WordPress?
January 18, 2013 at 10:29 am #125242In reply to: Attaching BBpress to WordPress Page
flash7dragon
ParticipantCan someone help me ?
I tried to add a shortcode to my page but it does nothing…Thanks
January 18, 2013 at 8:37 am #125240In reply to: bbpress not working after upgrade wordpress3.5
achalupka
ParticipantYou may want to check your database table wp_options for the entry with the option_key of “wp_user_roles”.
When I had this problem, it was because that entry had become corrupt and didn’t have all the user roles (with their respective permissions) listed in it.
-
AuthorSearch Results