Forum Replies Created
-
In reply to: Regular Topics Not Showing But Sticky's Display
Have you tried using one of the WordPress bundled themes (Tweny Twelve, Eleven, Thirteen etc) ?
In reply to: Image integration in activity??BuddyPress’ forums are powered by bbPress. BuddyPress doesn’t include forums.
I am not familiar enough to answer the ‘images in activity’ hopefully you can find something on https://buddypress.org/support/
I cannot reproduce this. Can you give us a link to your site with links to user profiles that have favorites showing the bug you mention.
In reply to: Where can I find the forum NAMES in the database?The problem I cannot seem to solve is โ where to get the name of the forum from? Without getting the name of the forum from somewhere in the database
The ONLY place the forum name exists is in the database :/
Just include the forum name and forum id into your logic, each topics `post_parent’ points to the parent forum id and then you can get the forum name at the same time.
SELECT * FROM wp_posts WHERE post_type = โforumโ
In reply to: SMF Import to bbPressYeah, nearly there, some suggestions for what some of those content conversions should be and testing to see if I missed any would be extremely helpful.
In reply to: Most popular and no reply topics functions??I am pretty sure it is generated from /trunk but I can’t 100% confirm that.
The docs were last generated “Documentation generated on Sat, 28 Sep 2013 01:36:51” according to the site
In reply to: SMF Import to bbPressLooks like the last thing needed now for SMF v2.x is converting any custom HTML/BBCodes for topic/reply content.
From my tests the following BBCodes are converting fine:
[url]
[img]
[email]
[b]
– bold[i]
– italic[u]
– underline[s]
– strikethrough[left]
– left aligned[center]
– centre aligned[right]
– right align[font=fontname]
– fonts[color=colorname]
– color name[color=#FFFFFF]
– color hex value[sup]
– superscript[sub]
– subscript[quote]
– quote
The following need to be converted by regex strings during import:
[quote author=SMF Admin link=topic=9.msg30#msg30 date=1380330453]
– Quoting a post, username, post id & date support needs to be added.[pre]
– pre formatted text[code]
– partially working[size=x]
– font size[glow=red,2,300]Glow[/glow]
– What do we want to translate this to?[shadow=red,left]shadow[/shadow]
– What do we want to translate this to?[move]marquee[/move]
– What do we want to translate this to?[tt]
– teletype? should this be a monospaced font?[table]
,[tr]
&[td]
– tables and closing tags[list]
– unordered list[list=decimal]
– ordered list[li]
– list item[hr]
– horizonal rule
SMF Smilies Working (extra space added so these render in code block)
- ๐
: )
- ๐
; )
- ๐
: D
- ๐
: (
- ๐ฎ
: o
- ๐
: P
SMF Smilies not working
- ;D
;D
- >:(
>:(
- 8)
8)
- ???
???
- ::)
::)
- :-[
:-[
- -X
:-X
- :-\
:-\
- :-*
:-*
- :’;(
:'(
What should the above be converted to with the smilies included with WordPress?
https://codex.wordpress.org/Using_SmiliesHave I missed any BBCode and/or other ‘stuff’ that isn’t getting converted correctly during the SMF import?
In reply to: SMF Import to bbPress@remcob00 What can I say… AWESOME, thank you, tested and working magnificently ๐
Glad it helped ๐
With the dropdown list, even though it is slow you can type the username to get you there quicker without relying on the mouse for 100%, once the dropdown is showing start typing the name, you have to type fast to get more than two or three characters but it is helpful.
The other option you have is to modify the entries directly in phpMyAdmin
UPDATE wp_posts SET post_author = 123 WHERE post_author = 789;
Where 123 is the new user id you want to attribute to the old user id 789In reply to: User with auto subscribe to use for moderator/adminThere are a couple of plugins that help with this and ‘Forum Topic notifications’ are coming to bbPress 2.5 https://bbpress.trac.wordpress.org/ticket/2299
Details of this are here https://bbpress.trac.wordpress.org/ticket/2443
Anyone else have some thoughts on this? Add to the discussion on Trac ๐
In reply to: Most popular and no reply topics functions??How about this http://phpdoc.ftwr.co.uk/bbpress-plugin/ ?
In reply to: php condition to detect that we are in the forumis_bbpress()
is what your looking for.Sage words? Nope ๐
I had a quick look around https://wordpress.org/plugins/search.php?q=bulk+users and nothing really stood out.
The most users I have played around with is ~4,000 and that was too many also for the WordPress admin dashboard. I ended up doing everything I needed directly in phpMyAdmin with SQL queries.
A way to delete users an reattribute their posts/topics/replies to another user (mainly for a handful of folks who already had accounts on the WordPress side before migrating vBulletin over)
With only a handful of these use WordPress’ built in user delete tool, when you select to delete a user you have the option to delete all posts (including topics & replies) or keep them an attribute them to another user.
A way to โnukeโ users who have spammed the forums. This would delete the user as well as all of their topics and replies.
First you are going to have to find the spam and record each user id associated and this is painful indeed! I am not to sure on the specifics but there probably is a way to get Akismet to check all of this for you.
A way to purge all users with no forum topics or replies (or posts, for that matter).
I think the quickest way for this would be in phpMyAdmin directly using an SQL query.
The query (Good to verify this stuff before you delete them)SELECT ID FROM wp_users WHERE ID NOT IN (SELECT DISTINCT post_author FROM wp_posts);
The delete queries (Any user without a post gets deleted)
DELETE FROM wp_usermeta WHERE user_id NOT IN (SELECT DISTINCT post_author FROM wp_posts);
DELETE FROM wp_users WHERE ID NOT IN (SELECT DISTINCT post_author FROM wp_posts);
In reply to: Forum looks like page when logged inI can’t see the images in your original post nor access any links to your domain http://genvines.com/
Forbidden
You don’t have permission to access /discussion on this server.
Additionally, a 403 Forbidden error was encountered while trying to use an ErrorDocument to handle the request.
In reply to: bbpress search widget problemI don’t have any issues with search widget.
I can’t see your forums
Bandwidth Limit Exceeded
The server is temporarily unable to service your request due to the site owner reaching his/her bandwidth limit. Please try again later.
Possibly try resaving your permalinks:
To fix this try resetting your permalinks. In your WordPress Administration Screens navigate to Settings > Permalinks, select a different permalink structure and save. Then select your preferred permalink structure and save again
In reply to: AuthorYou shouldn’t have any as ‘anonymous’ unless for some reason the importer couldn’t convert a user for some reason, maybe because no email address with their old forum profile. This really shouldn’t be happening and if it is we need to have a look as to why this is happening and fix it.
I also presume you ran the repair tools after importing?
https://codex.bbpress.org/repair-forums/In reply to: AuthorThis issue typically comes up when people are testing the import to bbPress. If you import the users and forums, topics, replies etc then reset bbPress only the forums, topics, topic tags and replies are deleted. bbPress does not delete the imported users as the user account may have additional WordPress roles (eg. Author) and has blog posts or comments on blog posts etc and we don’t want bbPress deleting content that isn’t its own.
Ideally you would have a test site for WordPress & bbPress to test the importer and once you are happy with everything get bbPress installed on your primary WordPress site, disable your existing forums and import into bbPress ‘all the things’ and be up and running from then on with bbPress.
In reply to: Create a Topic from a comment of another topicIt will keep the existing topic open for new replies, it just moves the reply that is ‘off topic’ to a new topic.
In reply to: AuthorYou will find your user profiles at the following URL (Swap example.com for your domain)
http://example.com/forums/profile/username/
Also any username prefixed with
imported_
eg.imported_username
is because the user nameusername
was already taken in WordPress. If bothimported_username
andusername
users are the same user go to the WordPress dashboards ‘User Panel’ and when you select theimported_username
to be deleted you will be prompted to attribute all existing posts, topics, replies etc to another user, select the userusername
and now all posts, topics, replies etc will be under the single userusername
.In reply to: Vbulletin database tables for importThe only tables you need are the ones you listed above:
- forum
- thread
- post
- tagcontent
- tag
- user
You may have a table prefix
vb_
on your tables and you enter that on the import settings ‘Table Prefix’ field.In reply to: Vbulletin database tables for importWhat version of vBulletin are you importing from?
bbPress Users ARE WordPress users ๐
In reply to: Suggestion for install – small tweakCreate a ticket in Trac ๐ https://bbpress.trac.wordpress.org/
In reply to: FYI to plugin developersThanks for the tip ๐