Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 26,251 through 26,275 (of 64,518 total)
  • Author
    Search Results
  • #133017
    Stephen Edgar
    Keymaster

    Again, thanks for writing that post. 🙂

    I have a newer version of the ‘example’ converter that includes much greater inline documentation and ‘best practices’ based on all the other importers and it is now just a matter of updating the docs to match this and including it with a future release of bbPress.

    We would be more than happy to include the Snitz Forums converter with bbPress. Just create a ticket and upload it to https://bbpress.trac.wordpress.org/

    #133016
    Stephen Edgar
    Keymaster

    Many thanks for taking the time to write this and share with the community. 🙂

    I added a link to this post from https://codex.bbpress.org/import-forums/custom-import/

    #133013
    Stephen Edgar
    Keymaster

    The bbPress theme/s you linked to are for the old bbPress 1.x.

    If you are using bbPress 2.x plugin then bbPress will try to use as much of your default WordPress theme as it can. If you want to customize bbPress 2.x then follow the links from here to get started https://bbpress.org/themes/

    #133012
    lasticko
    Participant

    Hello,

    I downloaded the static-red theme from this page:
    http://www.awesomestyles.com/bbpress-themes

    and I’d like to use that with my bbpress installation but KEEP my existing WP theme (Hospitality) I’ve customized so much.

    Is there a simple way to drop the static-red theme in place for bbpress to use?

    Thanks in advance..

    #133011

    In reply to: Sidebar Width

    inkrap
    Participant

    HALLELUJAH! I have no idea why I hadn’t tried .bbpress #sidebar, but that was the magic combination. Thank you so much Lynq

    #133007

    In reply to: Private messages

    BerryReview
    Participant

    Any chance a developer is working on a PM solution for BBPress. Its a real shame that there is nothing available. We finally made the jump and it seems like this is the main feature BBPress 2.0 is missing when compared to other forum systems. I love that we finally have built in email replies but private messaging is what really builds a community.

    #133003

    There were a few issues related to this that are fixed for bbPress 2.3. You may want to look into the release candidate, and see if it’s fixed these issues for you.

    #132969

    Topic: Can't remove sidebar

    in forum Themes
    dtommy79
    Participant

    Hi,

    I’ve installed bbpress, and I’m using the default twentytwelwe theme. I created a page for the forum index, selected the full-width page template, but the sidebar won’t go away. How can I remove the sidebar?

    Thanks

    #132921
    Robin W
    Moderator

    PS the example.php that downloads with the bbpress plugin doesn’t have a bit to bring the message accross, so initially I had a great forum with no topic content!

    I nicked the following from another converter and it seemed to work

    // Topic content.
    // Note: We join the posts table because topics do not have content.
    $this->field_map[] = array(
    ‘from_tablename’ => ‘FORUM_TOPICS’,
    ‘from_fieldname’ => ‘T_MESSAGE’,
    ‘join_tablename’ => ‘thread’,
    ‘join_type’ => ‘INNER’,
    ‘join_expression’ => ‘USING (threadid) WHERE post.parentid = 0′,
    ‘to_type’ => ‘topic’,
    ‘to_fieldname’ => ‘post_content’,
    ‘callback_method’ => ‘callback_html’

    #132915
    Robin W
    Moderator

    Converting a Snitz access database forum to BBpress

    This documents how I transferred from a website using Snitz and an access database to a new site with BBress using Mysql.

    This briefing assumes knowledge of
    • FTP programmes and uploading/downloading files
    • A way to access your wordpress database eg myphpadmin
    • A way to see your access database

    Introduction

    BBpress has a conversion tool that lets you import data from several other forum packages. However two things are needed for this to work.
    1. The data in a MySQL database format
    2. A convertor programme that understands the structure of the source (in this case Snitz) forum.

    If you already have a MySQL verison of Snitz (Snitz supports Access, MS SQL, and MySQL), then you’ll still need to fix the date, and run a specific Snitz converter, but don’t need the upload to MySql in step 2.

    Plan

    The plan therefore is to
    1. Fix date format (it is different between the two forums)
    2. Convert the data to sql format
    3. Run a snitz converter
    4. Run repair to fix the links

    Execution

    I can only describe how I achieved this, I suspect there are lots of ways, but this one worked.

    I had an access database on site x with hosting company a, and needed to transfer to a Mysql database on site y with hosting company b (basically I was taking over running someone else’s website management)

    Step 1 fixing the data format

    Snitz stores dates in the format yyyymmddhhmmss
    BBpress stores dates in the format yyyy-mm-dd hh:mm:ss

    You can fix this
    • before you transfer the data to sql,
    • after you have transferred it
    • or during conversion,

    this will depend on where you knowledge lies. But you will need to fix it. If you don’t fix this, all the entries you import will show as posted 2014 years ago (basically year 0)

    I converted before transferring to sql, as I an old and used to working with flat files! If you are more capable in sql, you could no doubt write a small programme to change the data format after you’ve uploaded to sql, and if more capable in php you could do it within the converter programme (see later)

    The Snitz database has two tables with dates in that need changing. These are :

    FORUM_TOPICS
    FORUM_REPLY

    This is how they showed in my Snitz database, but the prefix may be different with yours.

    In FORUM_TOPICS you need to change
    T_DATE
    T_LAST_POST

    In FORUM_REPLY you need to change
    T_REPLY

    I downloaded the access database from the old site to my PC. I then exported the two tables to an excel spreadsheet (in Access go to external data, and look for export to Excel. You’ll need to have created a blank spreadsheet with the name you want to use first) and ran the formula

    =CONCATENATE(MID(N2,1,4),"-",MID(N2,5,2),"-",MID(N2,7,2)," “,MID(N2,9,2),":",MID(N2,11,2),":",MID(N2,13,2))

    Where column N contained the old date.

    I then prefixed the original heading with OLD (eg heading T_DATE became OLDT_DATE) and headed the new column with the heading of the old one (eg T_DATE). I did this to a) preserve the original columns just in case, and b) to use for the clean slug in the conversion (see later).

    I then deleted the old table in access, and imported the two excel ones back into Access (as before external data, then import).

    I then had the same access database, but with the correct date formulas and a couple of extra columns with the old date format in them.

    Step 2 – Convert access database to MySql database

    The first thing you’ll need is a MySql database to upload to.

    You can use the one you presumably already have with WordPress/BBpress. However you’ll just need to check that none of the names co-incide. Since my Snitz database used capitals (I don’t know if they all Snitz databases do), and BBpress uses lower case, I suspect that there is no risk in doing this, but one for you to consider.

    I took the safety of creating a fresh blank database (my hosting package allows the creation of databases and manages them through phpMyadmin).
    There are numerous programmes on the web that do access to Mysql conversion, but for no particular reason I chose Bullzip http://www.bullzip.com/.

    However this needs a 32bit ODBC driver to work, so unless you already have Mysql on your local PC, you’ll need to download the driver from http://www.mysql.com/downloads/connector/odbc/ – choose the 32 bit one.

    Once installed it is a doddle to do the conversion.
    You’ll need :
    The access database on your pc
    The host address of your MySql database
    The database name
    The username
    The password.

    Run the wizard, and it’ll upload in minutes.

    Finally if you’re going to do the date conversion discussed in Step 1 at this stage, now’s the time to do it.

    Step 3 – Importing/converting the data

    This is easy once you’ve got your head around it, but initially it can be very frustrating.

    In essence you need to translate what one forum calls something to what the other needs.

    For Snitz, I used the following translation

    
    Forum section FORUM_FORUM forum
    Forum id	FORUM_ID	_bbp_forum_id
    Forum parent id	CAT_ID	_bbp_parent_id
    Forum title	F_SUBJECT	post_title
    Forum Slug  (see note 1)	FORUM_ID	post_name
    Forum description	F_DESCRIPTION	post_content
    Forum Display Order	F_ORDER	Menu_order
    Forum Date Update		Post_date
    		
    Topic section	FORUM_TOPICS	topic
    Topic id	TOPIC_ID	_bbp_topic_id
    Forum id 	FORUM_ID	_bbp_forum_id
    Topic author	T_AUTHOR	post_author
    Topic title	T_SUBJECT	post_title
    Topic Slug (see note 1)	T_DATE	post_name
    Forum id (if no parent 0) 	FORUM_ID	post_parent
    Topic date update 	T_DATE	post_date
    	T_DATE	post_date_gmt
    	T_LAST_POST_DATE	post_modified
    	T_LAST_POST_DATE	post_modified_gmt
    		
    Tags section		
    Ignored		
    		
    		
    Post section	FORUM_REPLY	reply
    Post id	REPLY_ID	_bbp_post_id
    Forum id	FORUM_ID	_bbp_forum_id
    Topic  id	TOPIC_ID	_bbp_topic_id
    Author ip	R_IP	_bbp_author_ip
    Post author	R_AUTHOR	post_author
    Topic slug	R_DATE	post_name
    Post Content	R_MESSAGE	post_content
    Topic id	TOPIC_ID	post_parent
    Topic date	R_DATE	post_date
    		
    User Section	FORUM_MEMBERS	user
    Store old user id	MEMBER_ID	_bbp_user_id
    	M_NAME	user_login
    	M_PASSWORD	_bbp_password
    	M_EMAIL	user_email
    	M_HOMEPAGE	user_url
    	M_AIM	aim
    	M_YAHOO	yim
    		
    

    [NOTE if you copy this and post in a word doc, you should be able to get a nice tabbed table]
    Note 1

    I used OLDR_DATE & OLDT_DATE from the step 1 as my clean slugs. A slug is what BBpress uses for a URL to reference a post. It needs to be clean – ie not have formatting, odd characters like spaces etc. in it. I did debate using the topic ID, but was unsure if this was unique for BBpress – it may well be fine. So I used the references above as I was pretty sure that with our forum being not that busy, that no two people would have posted in the same second. If you choose to use some other field, such as topic ID, you’ll need to change the field in the converter document – see below.

    This is then used against the example converter that BBpress supplies.

    Whilst initially looking daunting, this is fairly easy to change to get it to work.

    Step 3.1 Creating a Snitz.php

    Firstly go to your site. Using FTP go to web/wp-content/plugins/bbpress/includes/admin/converters and locate example.php. FTP this to your PC and using an editor (notepad ++ is good – download it from http://notepad-plus-plus.org/) you need to change the default “froms” to those above

    But first save it locally as “snitz.php”, and change the first couple of lines to read

    
    /**
     * Implementation of snitz converter.
     */
    class snitz extends BBP_Converter_Base
    

    If you don’t do this, the converter won’t recognise it.

    Then you need to work through each of the lines of code changing the “default” source database tables and names to the correct ones.

    So looking at you new snitz.php, you’ll see for instance the first conversion is :

    
    // Forum id. Stored in postmeta.
    $this->field_map[] = array(
    'from_tablename' => 'forum', 'from_fieldname' => 'forumid',
    'to_type' => 'forum', 'to_fieldname' => '_bbp_forum_id'
    

    So to get this to work for Snitz you need to change the source table from ‘forum’ to “FORUM_FORUM” and the from field needs changing from ‘forumd’ to’ _bbp_forum_id’

    Making the lines now read :

    
    // Forum id. Stored in postmeta.
    $this->field_map[] = array(
    'from_tablename' => 'FORUM_FORUM', 'from_fieldname' => 'FORUM_ID',
    'to_type' => 'forum', 'to_fieldname' => '_bbp_forum_id'
    

    Using the translation table above you work through each of the lines, doing the substitution.

    I commented out the tags section, as I couldn’t see that Snitz had tags. I also commented out the “
    Store old user salt” and “User password verify class” sections as passwords won’t come across – see later on this.

    CRITICALLY I also added the following as the example doesn’t had a bit that brings the actual topic content across !

    
    // Topic content.
    		// Note: We join the posts table because topics do not have content.
    		$this->field_map[] = array(
    			'from_tablename'  => 'FORUM_TOPICS',
    			'from_fieldname'  => 'T_MESSAGE',
    			'join_tablename'  => 'thread',
    			'join_type'       => 'INNER',
    			'join_expression' => 'USING (threadid) WHERE post.parentid = 0',
    			'to_type'         => 'topic',
    			'to_fieldname'    => 'post_content',
    			'callback_method' => 'callback_html'
    

    Once all that is done, save the file locally.

    Then using FTP upload it to the same directory that example came from
    Viz : web/wp-content/plugins/bbpress/includes/admin/converters
    Now you’re ready to run the conversion!

    You’ll need the following info
    Database server (localhost if your using you local Mysql database)
    Database name
    Database User
    Database password

    Then in Dashboard, go to tools>forums>import forums

    Select “snitz” from the converter list, and fill in the database info from above.

    Click to select users, presuming that you want to bring these across.

    Then click start, and sit back and watch. If you’ve got everything right, you’ll see a steady stream of lines such as “converting topics 1-100”

    If Fails :

    If it falls over, then you’ll need to work out which part of the snitz converter it doesn’t like (it’ll give you a line number). Usually you’ve got punctuations wrong, or called something by a wrong name. Remember snitz (in my case anyway) uses capitals, and bbpress needs lowercase, so ensure that’s all ok.

    If nothing comes through (it usually says “starting conversion…conversion complete”), then you have got the connection wrong, as it’s not finding the database and tables.

    If Success :

    Then you’ll need to repair the links (Dashboard>tools>forums>repair forums). Otherwise in my case the forum listings came through, but with no topics listed against them.

    Do as the tool suggests – I ran several at the same time, and wrote most of this document whilst waiting !

    Finally – users

    If you successfully imported your users, they’ll have accounts, but their passwords won’t work – Bbpress can’t bring these across.

    The easiest way is to tell them to click “lost password” and enter their email address and then they can reset their own.

    And that’s how it’s done !

    #132911
    Robin W
    Moderator

    Stephen,

    Thanks, that got me going in the right direction and I have achieved it.

    I’ll try and post the full method for future users – I found your custom stuff useful https://codex.bbpress.org/import-forums/custom-import/

    Working out the mapping and date formats took a bit of effort, but once there the rest is easy !

    Thanks again

    Unsal Korkmaz
    Participant

    This weeks question & answer: 

    Showcase, promotion and custom content types

    Question Summary: How to add PromotionBar and ShowCase feature to your custom post types?

    Solution: Its super simple;
    This code will activate PromotionBar and ShowCase features for your custom post type 🙂 For example for bbPress, you can activate those features for topic post type:

    add_filter('firmasite_pre_get_posts_ekle', "firmasite_custom_cpt_add");
    function firmasite_custom_cpt_add($array){ 
    	$array[]='topic'; 
    	return $array; 
    }
    #132841
    Morgan Kay
    Participant

    They are all stored in the wp_users table.
    The plugin page is here: https://wordpress.org/extend/plugins/bbpress-integration/

    I also noticed that after the import, the forums/user/## doesn’t show the information that is stored in the user’s profile (eg avatar, website, etc). This is all stored in wp_usermeta in the integration plugin.

    I’ve also also noticed that if I leave the integration plugin active while doing the import, the new forums don’t appear to work (eg, I go to /forums/ and it says there are no forums)

    #132777
    Roy
    Participant

    I just noticed something that annoys me. I was logged in with a test account (non-admin, just forum participant) and the last screen that I had open when I logged out, was another participant’s profile page. Instead of the expected ‘you are not allowed’ page, I could still see the profile page and when I clicked on the ‘replies created’ link, I could also still see this user’s posts, all of which are posted in private fora! When I click on a subject from that archive page, I do get a 404, but I could read all this user’s posts from his profile.

    A bit worried I checked if Google can also find these profile pages and indeed…

    Is this due to a setting that I missed or could we get something like private users such as we have private fora?

    WP 3.5.1 BBpress 2.2.4 monas.nl (check user roy3)

    #132729
    WayneM1
    Participant

    Just started using bbpress — same issue here: in profile topics and replies not showing – list is just a big blank page.

    Firefox 19.0.2
    WordPress 3.5.1.
    Theme Twenty Twelve

    This issue was first reported over 4 months ago???

    Look like it could use some attention 🙂

    ovizii
    Participant

    I installed bbpress plugin 2.2.4, ran into some problems, decided I need to use 2.3 RC1 for importing from SimplePress v5, deactivated, reactivated, upgraded and now after activating bbpress I don ‘t see its menu links in the dashboard: http://screencast.com/t/imvEYtBphzRr and when I access the plugins list and click on settings there: http://screencast.com/t/n2I44tThv4tJ  I get: You do not have sufficient permissions to access this page.

    My user is a keymaster. I made another user a keymaster and faced the same problem.

    Any hints on how to completely remove it and start fresh? I tried searching for %bbpress% with Phpmyadmin but cannot find any settings so what is wrong here?

    #132688

    Topic: topic output

    in forum Troubleshooting
    hallsy
    Participant

    Afternoon all,

    I am very new to all this so i need a little guidance on something that is probably very simple to solve but i cant figure it out.

    I have BBpress 2.3 RC1 installed and buddypress 1.7 (Frisco theme)

    When i start a topic in my group forums the topic looks like a forum should.

    The problem is with my sitewide forum. this is how my topics are being displayed…

    http://www.rugbyclubhouse.net/myimages/screen1.png

    Any ideas on why they are not being displayed like a forum would normally look?

     

    Thanks in advance Ryan

    #132687
    aero.roger77
    Participant

    Sorry, my server is having problems. Please try again now 🙂

    #132686
    Grubbi
    Participant

    Hmm, I did that, changed the permalinks, the path changed to default, so I changed it back again and it’s still /forum-2/

    #132685
    palmdoc
    Participant

    Sigh, had to restore from backup and back to BP Legacy Group forums. If anyone can help troubleshoot I’d appreciate it. Will donate for the effort.

    #132682
    palmdoc
    Participant

    Hmm strange. One minute there, another minute gone. Now I can’t see the forum listing again. I disabled all plugins but bbPress and Buddypress, used the default BP theme and I see only the group listing and not forum listing.
    I have put the site in Maintenance mode

    #132681
    Stephen Edgar
    Keymaster

    Apologies but your topic had been marked as spam but I also can no longer find anything at the domain mentioned above.

    #132680
    Stephen Edgar
    Keymaster

    I did have a “forums” in trash, I deleted it but it’s still linking to /forum-2. Any idea how to “refresh it”?

    Try changing your permalinks, click save, change them back and save again and that should flush them.

    Ah I get the – being added, I was more concerned with the forums/forum/ part of the link, instead of just /forums/.

    That is the default bbPress structure, you can turn off the ‘forums prefix’ in settings and you would end up with /forum/general-discussion/

    #132679
    Stephen Edgar
    Keymaster

    No we are all good… I removed the stuff regarding the links as this is working correctly.

    Try creating a new WordPress page and add the bbPress shortcode [bbp-forum-index] to the page.

    #132670
    palmdoc
    Participant

    Hmmm, a flood of visitors has taken my site offline lol

Viewing 25 results - 26,251 through 26,275 (of 64,518 total)
Skip to toolbar