Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 25,151 through 25,175 (of 64,518 total)
  • Author
    Search Results
  • #135317

    It’s likely that the database server for your vBulletin installation isn’t configured to accept external requests from the database server you’re using for bbPress. You may want to export your vBulletin database, and import it into your bbPress database, and do the conversion locally to avoid connection issues.

    #135316
    CooperDevon
    Participant

    Hi,
    i getting an error in WordPress
    Notice: bbp_setup_current_user was called incorrectly. The current user is being initialized without using $wp->init(). Please see Debugging in WordPress for more information. (This message was added in version 2.3.) in /var/www/vhosts/xxxxx/httpdocs/wp-includes/functions.php on line 2962

    How can this be fixed?

    #135315
    rickyprueba
    Participant

    🙂

    filmmannen
    Participant

    This solved itself partly when I removed the User Role Editor and replaced it with the plugin Members – then i where able to administer the administrators rights. And i where able to get the bbpress updated to the newest edition without loosing control over it.

    However im still unable to restore my topics and replies list in the forum. I have three .xml backups of the forum, the topics and the replies, but i struggle with getting them back up again.

    And it may be that the .xml files isn’t enough?

    Anyone know of a good .xml importer for the bbpress? To get my forums back online, or is this case lost?

    dvclmn
    Participant

    Hey guys, thanks for taking the time to look after this.

    I know there are a lot of posts dedicated to vBulletin import issues, but after hours of searching I haven’t been able to find a resolution. Hoping you can help!

    I have read the known issues page (http://codex.bbpress.org/import-forums/vbulletin/) thoroughly and have made sure every detail is correct:

    Selected Platform: vBulletin
    Database Server: IP or hostname (in my case another-castle.com)
    Database Port Use default 3306 if unsure
    Database Name Name of the database with your old forum data
    Database User User for your database connection
    Database Password Password to access the database
    Table Prefix (in my case vb_)

    I just get ‘no forums/users/etc to convert’.

    No data is imported.

    I know that you can’t know if I’m getting a password or username wrong, but I am using the details I use to successfully log in to my server/phpMyadmin etc.

    I am in such urgent need of this to work that I am happy to pay for further support – whatever it takes. Please let me know if there’s any more information I can give to help this along.

    Thanks so much.

    Dave.

    soloacademy
    Participant

    anyone?

    Lynq
    Participant

    You can check here for accessibility guidelines: http://www.w3.org/TR/WCAG/ – I would then install a copy of bbPress and check if it suits your needs based on the guidelines from w3.

    Good luck!

    #135301
    Lynq
    Participant

    You will have to disable your plugins one at a time to see which one is causing the issue or check if you have a correct bbPress theme inside your theme folder.

    Good luck!

    #135297

    In reply to: Profile avatar

    Tecca
    Participant

    All right, I haven’t used bbPress without BuddyPress for a long while and forgot that avatars aren’t a native option. This plugin seems to work very well:

    https://wordpress.org/plugins/simple-local-avatars/

    #135295

    In reply to: Importing from drupal

    Trisha Salas
    Participant

    Hi,

    I did a large migration about a year ago (20,000 total topics and replies). You will definitely have timeout problems with an import that large, what I did was import items separately like so: users first then forum 1 topics, forum 1 replies, forum 2 topics, forum 2 replies and so on.

    Of course back then there wasn’t an importer and we had to rely on custom scripts for all of it. The script was also run outside of WordPress/bbPress in an effort to stop timeouts. We also ran post-meta separately and did not attempt to transfer passwords (this was a migration from DNN/Microsoft SQL server so it wasn’t possible to retain passwords).

    I am happy to help with specific question, I do agree it is a timeout issue.

    #135291
    beenle
    Participant

    WELL , THE FORUM OF BBPRESS LOOKS GOOD AND CLEAR

    #135290
    SickSquirrelTwo
    Participant

    Running WordPress .51 and bbPress 2.3.2 with iGift theme. I went to add my avatar to my profile but notice there is no option. Which plugin(s) do you suggest I look at? Oris the option hidden somewhere?

    RiGoRmOrTiS_UK
    Participant

    Hey @defunctlife

    I tried your function and it did fix the avatars; however is also caused the small 14px avatar within the “bbp-topic-description” at the top of the page to detach and appear above the information-notice.

    Any ideas why this might be?

    soloacademy
    Participant

    We have the current issues with our forum:
    1. When someone clicks the ‘forum’ button in the top header that looks like –
    Home > ‘FORUM’ > category > topic
    It takes them to domain.com/forums which is a blank page that just says Forums – Continue Reading. When you push continue reading it just refreshes the same page…

    2. When someone pushes the ‘edit’ button on a post they just created it takes them to a page that has the topic title and ‘continue reading’ button that just refreshes the page

    3. All the forum avatars are blurry. I see it is pulling our buddypress members thumbnails and using that as the avatar. I don’t want it to pull the thumbnails since that is a small image.

    We also need some design work to make it look a little nicer. I did some small things like change the font and some colors. If you know the solution to any of these issues please post here or contact me via skype: heiko.winkler4

    Thanks!

    #135287
    vogelsang
    Participant

    I am working on getting a drupal forum migrated to bbpress. I am using the bbpress importer tool. The forum I am migrating has about 4000 topics and 40000 replies. The migration works fine for a few topics, but seems to get stuck at random places after about a 1000 records are migrated. This makes me think that it is not a data problem. More likely some sort of timeout.

    Have any of you experienced something similar? I am running things locally with the most recent stable versions of WP and bbpress.

    Here is my script. It is not well-tested. Any suggestions for improvements are welcome and feel free to use it as part of bbpress in whatever way you feel like.

    
    <?php
    
    /**
     * Implementation of Drupal Forum converter.
     */
    class Drupal extends BBP_Converter_Base
    {
    	function __construct()
    	{
    		parent::__construct();
    		$this->setup_globals();
    	}
    
    	public function setup_globals()
    	{
    		/** Forum Section ******************************************************/
    
    		// Forum id. Stored in postmeta.
    		$this->field_map[] = array(
    			'from_tablename' => 'taxonomy_term_data', 'from_fieldname' => 'tid', //TODO correct ID??
    			'to_type' => 'forum', 'to_fieldname' => '_bbp_forum_id',
    		);
    		
    		// Forum parent id.  If no parent, than 0. Stored in postmeta.
    		//$this->field_map[] = array(
    		//	'from_tablename' => 'forum', 'from_fieldname' => 'parentid',
    		//	'to_type' => 'forum', 'to_fieldname' => '_bbp_parent_id'
    		//);
    		
    		// Forum title.
    		$this->field_map[] = array(
    			'from_tablename' => 'taxonomy_term_data', 'from_fieldname' => 'name',
    			'to_type' => 'forum', 'to_fieldname' => 'post_title'
    		);
    		
    		// Forum slug. Clean name.
    		$this->field_map[] = array(
    			'from_tablename' => 'taxonomy_term_data', 'from_fieldname' => 'name',
    			'to_type' => 'forum', 'to_fieldname' => 'post_name',
    			'callback_method' => 'callback_slug'
    		);
    		
    		// Forum description.
    		$this->field_map[] = array(
    			'from_tablename' => 'taxonomy_term_data', 'from_fieldname' => 'description',
    			'to_type' => 'forum', 'to_fieldname' => 'post_content',
    			'callback_method' => 'callback_null'
    		);
    		
    		// Forum display order.  Starts from 1.
    		$this->field_map[] = array(
    			'from_tablename' => 'taxonomy_term_data', 'from_fieldname' => 'weight',
    			'to_type' => 'forum', 'to_fieldname' => 'menu_order'
    		);
    		
    		// Forum date update.
    		$this->field_map[] = array(
    			'to_type' => 'forum', 'to_fieldname' => 'post_date',
    			'default' => date('Y-m-d H:i:s')
    		);
    		$this->field_map[] = array(
    			'to_type' => 'forum', 'to_fieldname' => 'post_date_gmt',
    			'default' => date('Y-m-d H:i:s')
    		);
    		$this->field_map[] = array(
    			'to_type' => 'forum', 'to_fieldname' => 'post_modified',
    			'default' => date('Y-m-d H:i:s')
    		);
    		$this->field_map[] = array(
    			'to_type' => 'forum', 'to_fieldname' => 'post_modified_gmt',
    			'default' => date('Y-m-d H:i:s')
    		);
    
    		/** Topic Section ******************************************************/
    
    		// Topic id. Stored in postmeta.
    		$this->field_map[] = array(
    			'from_tablename' => 'forum_index', 'from_fieldname' => 'nid',
    			'to_type' => 'topic', 'to_fieldname' => '_bbp_topic_id'
    		);
    		
    		// Forum id. Stored in postmeta.
    		$this->field_map[] = array(
    			'from_tablename' => 'forum_index', 'from_fieldname' => 'tid',
    			'to_type' => 'topic', 'to_fieldname' => '_bbp_forum_id',
    			'callback_method' => 'callback_forumid'
    		);
    				
    		// Topic author.
    		$this->field_map[] = array(
    			'from_tablename' => 'node', 
    			'from_fieldname' =>  'uid',
    			'join_tablename'  => 'forum_index',
    			'join_type'       => 'INNER',
    			'join_expression' => 'ON node.nid = forum_index.nid',
    			'to_type' => 'topic', 
    			'to_fieldname' => 'post_author',
    			'callback_method' => 'callback_userid'
    		);	
    
    		// Topic content.
    		// Note: We join the posts table because topics do not have content.
    		$this->field_map[] = array(
    			'from_tablename'  => 'field_data_body',
    			'from_fieldname'  => 'body_value',
    			'join_tablename'  => 'node',
    			'join_type'       => 'INNER',
    			'join_expression' => 'ON field_data_body.revision_id = node.vid', 			
    			'to_type'         => 'topic',
    			'to_fieldname'    => 'post_content',
    			'callback_method' => 'callback_html'
    		);		
    				
    		// Topic title.
    		$this->field_map[] = array(
    			'from_tablename' => 'forum_index', 'from_fieldname' => 'title',
    			'to_type' => 'topic', 'to_fieldname' => 'post_title'
    		);
    		
    		// Topic slug. Clean name.
    		$this->field_map[] = array(
    			'from_tablename' => 'forum_index', 
    			'from_fieldname' => 'title',
    			'to_type' => 'topic', 
    			'to_fieldname' => 'post_name',
    			'callback_method' => 'callback_slug'
    		);
    		
    		// Forum id.  If no parent, than 0.	
    		$this->field_map[] = array(
    			'from_tablename' => 'forum_index', 'from_fieldname' => 'tid',
    			'to_type' => 'topic', 'to_fieldname' => 'post_parent',
    			'callback_method' => 'callback_forumid'
    		);
    
    		// Topic reply count
    		// $this->field_map[] = array(
    			// 'from_tablename'  => 'forum_index',
    			// 'from_fieldname'  => 'comment_count',
    			// 'to_type'         => 'topic',
    			// 'to_fieldname'    => '_bbp_reply_count'
    			// //,
    			// //'callback_method' => 'callback_topic_reply_count'
    		// );
    		
    		// Topic date update.
    		$this->field_map[] = array(
    			'from_tablename' => 'forum_index', 'from_fieldname' => 'created',
    			'to_type' => 'topic', 'to_fieldname' => 'post_date',
    			'callback_method' => 'callback_datetime'
    		);
    		$this->field_map[] = array(
    			'from_tablename' => 'forum_index', 'from_fieldname' => 'created',
    			'to_type' => 'topic', 'to_fieldname' => 'post_date_gmt',
    			'callback_method' => 'callback_datetime'
    		);
    		$this->field_map[] = array(
    			'from_tablename' => 'forum_index', 'from_fieldname' => 'last_comment_timestamp',
    			'to_type' => 'topic', 'to_fieldname' => 'post_modified',
    			'callback_method' => 'callback_datetime'
    		);
    		$this->field_map[] = array(
    			'from_tablename' => 'forum_index', 'from_fieldname' => 'last_comment_timestamp',
    			'to_type' => 'topic', 'to_fieldname' => 'post_modified_gmt',
    			'callback_method' => 'callback_datetime'
    		);
    
    		/** Tags Section ******************************************************/
    		
    		// Topic id.
    		// $this->field_map[] = array(
    			// 'from_tablename' => 'tagcontent', 'from_fieldname' => 'contentid',
    			// 'to_type' => 'tags', 'to_fieldname' => 'objectid',
    			// 'callback_method' => 'callback_topicid'
    		// );
    		
    		//Tags text.
    		// $this->field_map[] = array(
    			// 'from_tablename' => 'tag', 'from_fieldname' => 'tagtext',
    			// 'join_tablename' => 'tagcontent', 'join_type' => 'INNER', 'join_expression' => 'USING (tagid)',
    			// 'to_type' => 'tags', 'to_fieldname' => 'name'
    		// );		
    
    		/** Post Section ******************************************************/
    
    		// Post id. Stores in postmeta.
    		$this->field_map[] = array(
    			'from_tablename' => 'comment', 'from_fieldname' => 'cid',
    			'to_type' => 'reply', 'to_fieldname' => '_bbp_post_id'
    		);
    		
    		// Forum id. Stores in postmeta.
    		$this->field_map[] = array(
    			'from_tablename' => 'forum', 
    			'from_fieldname' => 'tid',
    			'join_tablename'  => 'comment',
    			'join_type'       => 'INNER',
    			'join_expression' => 'ON forum.nid = comment.nid',
    			'to_type' => 'reply', 'to_fieldname' => '_bbp_forum_id',
    			'callback_method' => 'callback_topicid_to_forumid'
    		);
    		
    		// Topic id. Stores in postmeta.
    		$this->field_map[] = array(
    			'from_tablename' => 'comment', 'from_fieldname' => 'nid',
    			'to_type' => 'reply', 'to_fieldname' => '_bbp_topic_id',
    			'callback_method' => 'callback_topicid'
    		);
    		
    		// Author ip.
    		$this->field_map[] = array(
    			'from_tablename' => 'comment', 'from_fieldname' => 'hostname',
    			'to_type' => 'reply', 'to_fieldname' => '__bbp_author_ip'
    		);	
    			
    		// Post author.
    		$this->field_map[] = array(
    			'from_tablename' => 'comment', 'from_fieldname' => 'uid',
    			'to_type' => 'reply', 'to_fieldname' => 'post_author',
    			'callback_method' => 'callback_userid'
    		);
    		
    		// Topic title.
    		$this->field_map[] = array(
    			'from_tablename' => 'comment', 'from_fieldname' => 'subject',
    			'to_type' => 'reply', 'to_fieldname' => 'post_title'
    		);
    		
    		// Topic slug. Clean name.
    		$this->field_map[] = array(
    			'from_tablename' => 'comment', 
    			'from_fieldname' => 'subject',
    			'to_type' => 'reply', 
    			'to_fieldname' => 'post_name',
    			'callback_method' => 'callback_slug'
    		);
    		
    		// Post content.
    		// Note: We join the posts table because topics do not have content.
    		$this->field_map[] = array(
    			'from_tablename'  => 'field_data_comment_body',
    			'from_fieldname'  => 'comment_body_value',
    			'join_tablename'  => 'comment',
    			// 'join_type'       => 'INNER',
    			'join_expression' => 'ON field_data_comment_body.entity_id = comment.cid',
    			'to_type'         => 'reply',
    			'to_fieldname'    => 'post_content',
    			'callback_method' => 'callback_html'
    		);	
    		
    		// Post content.
    		// BRUGES IKKE - SE OVENFOR
    		// $this->field_map[] = array(
    			// 'from_tablename' => 'post', 'from_fieldname' => 'pagetext',
    			// 'to_type' => 'reply', 
    			// 'to_fieldname' => 'post_content',
    			// 'callback_method' => 'callback_html'
    		// );
    		
    		// Topic id.  If no parent, than 0.
    		$this->field_map[] = array(
    			'from_tablename' => 'comment', 'from_fieldname' => 'nid',
    			'to_type' => 'reply', 'to_fieldname' => 'post_parent',
    			'callback_method' => 'callback_topicid'
    		);
    
    		// Topic date update.
    		$this->field_map[] = array(
    			'from_tablename' => 'comment', 
    			'from_fieldname' => 'created',
    			'to_type' => 'reply', 
    			'to_fieldname' => 'post_date',
    			'callback_method' => 'callback_datetime'
    		);
    		$this->field_map[] = array(
    			'from_tablename' => 'comment', 
    			'from_fieldname' => 'created',
    			'to_type' => 'reply', 
    			'to_fieldname' => 'post_date_gmt',
    			'callback_method' => 'callback_datetime'
    		);
    		$this->field_map[] = array(
    			'from_tablename' => 'comment', 
    			'from_fieldname' => 'changed',
    			'to_type' => 'reply', 
    			'to_fieldname' => 'post_modified',
    			'callback_method' => 'callback_datetime'
    		);
    		$this->field_map[] = array(
    			'from_tablename' => 'comment', 
    			'from_fieldname' => 'changed',
    			'to_type' => 'reply', 
    			'to_fieldname' => 'post_modified_gmt',
    			'callback_method' => 'callback_datetime'
    		);
    
    		/** User Section ******************************************************/
    
    		// Store old User id. Stores in usermeta.
    		// $this->field_map[] = array(
    			// 'from_tablename' => 'users', 'from_fieldname' => 'uid',
    			// 'to_type' => 'user', 'to_fieldname' => '_bbp_user_id'
    		// );
    		
    		// Store old User password. Stores in usermeta serialized with salt.
    		// $this->field_map[] = array(
    			// 'from_tablename' => 'users', 'from_fieldname' => 'pass',
    			// 'to_type' => 'user', 'to_fieldname' => '_bbp_password',
    			// 'callback_method' => 'callback_savepass'
    		// );
    
    		// Store old User Salt. This is only used for the SELECT row info for the above password save
    		// todo ???
    		//$this->field_map[] = array(
    		//	'from_tablename' => 'users', 'from_fieldname' => 'salt',
    		//	'to_type' => 'user', 'to_fieldname' => ''
    		//);
    				
    		// // User password verify class. Stores in usermeta for verifying password.
    		// $this->field_map[] = array(
    			// 'to_type' => 'users', 'to_fieldname' => '_bbp_class',
    			// 'default' => 'Vbulletin'
    		// );
    		
    		// // User name.
    		// $this->field_map[] = array(
    			// 'from_tablename' => 'users', 'from_fieldname' => 'name',
    			// 'to_type' => 'user', 'to_fieldname' => 'user_login'
    		// );
    				
    		// // User email.
    		// $this->field_map[] = array(
    			// 'from_tablename' => 'users', 'from_fieldname' => 'mail',
    			// 'to_type' => 'user', 'to_fieldname' => 'user_email'
    		// );
    		
    		// User homepage.
    		// $this->field_map[] = array(
    			// 'from_tablename' => 'users', 'from_fieldname' => 'homepage',
    			// 'to_type' => 'user', 'to_fieldname' => 'user_url'
    		// );
    		
    		// User registered.
    		// $this->field_map[] = array(
    			// 'from_tablename' => 'users', 'from_fieldname' => 'created',
    			// 'to_type' => 'user', 'to_fieldname' => 'user_registered',
    			// 'callback_method' => 'callback_datetime'
    		// );
    		
    		// User aim.
    		//$this->field_map[] = array(
    		//	'from_tablename' => 'users', 'from_fieldname' => 'aim',
    		//	'to_type' => 'user', 'to_fieldname' => 'aim'
    		//);
    		
    		// User yahoo.
    		//$this->field_map[] = array(
    		//	'from_tablename' => 'users', 'from_fieldname' => 'yahoo',
    		//	'to_type' => 'user', 'to_fieldname' => 'yim'
    		//);	
    	}
    	
    	/**
    	 * This method allows us to indicates what is or is not converted for each
    	 * converter.
    	 */
    	public function info()
    	{
    		return '';
    	}
    
    	/**
    	 * This method is to save the salt and password together.  That
    	 * way when we authenticate it we can get it out of the database
    	 * as one value. Array values are auto sanitized by WordPress.
    	 */
    	public function callback_savepass( $field, $row )
    	{
    		$pass_array = array( 'hash' => $field, 'salt' => $row['salt'] );
    		return $pass_array;
    	}
    
    	/**
    	 * This method is to take the pass out of the database and compare
    	 * to a pass the user has typed in.
    	 */
    	public function authenticate_pass( $password, $serialized_pass )
    	{
    		$pass_array = unserialize( $serialized_pass );
    		return ( $pass_array['hash'] == md5( md5( $password ). $pass_array['salt'] ) );
    	}
    
    }
    
    #135286
    travaggie
    Participant

    We are trying to figure out why the BBPress forums are running so slow on our website, every other page runs very fast on a dedicated server with load times usually no longer than 2-3 seconds max, but on the forum pages we’re seeing an additional 3-6 seconds to load. I installed P3 Plugin Profiler and BBpress is taking up 73% of my runtime by plugin and BBpress String Swap another 8%, for an additional 3 seconds just to run according to this. Can you check out our website and let us know what the issue could be? We’re not using any of the plugins or sidebars on these pages so not sure what the hangup could be.

    #135285
    mikeRONALDO
    Participant

    Hi there!

    In my website i am using Typo3 as CMS, and now i’m thinking to build a new website but with WordPress…In the current wesbite, i use a plugin called mm_forum that works as a Forum of my website, and i am wondering if bbPress can import the users, posts, and other stuff from it, so i can “migrate” the data to the new website built in WordPress.

    Thank you very much

    #135284
    zelle7
    Participant

    thank you very much .. I am actually building an api for another weppaplication to communicate with the bbpress forums and I hardly could figure out how to create a new topic in a programmaticaly way out of the documentations

    #135283
    eldesperado
    Participant

    Hello,
    – bbPress Version : 2.3.2
    – WordPress Version : 3.5.2
    – PHP/MySQL Version : PHP 5.3/MySQL 5.1
    – Theme : Twenty Twelve (modified)
    – website adress : local (127.0.0.1/etc …)

    I just discovered this extension by mordauk and I made some changes on it to display on a page WordPress, the profile page from bbPress.

    In includes/common/shortcodes.php :

    
    <em>/*line 92 :*/</em>
    			'bbp-profile-edit'     => array( $this, 'display_profile_edit'  ), // User Profile
    <em>/*lines 747 to 762 :*/</em>
    	 public function display_profile_edit() { 
     		 
     		                // Unset globals 
     		                $this->unset_globals(); 
     		 
     		                // Start output buffer 
     		                $this->start( 'bbp_profile_edit' ); 
     		 
     		                // Output templates 
     		                if ( is_user_logged_in() ) 
     		                        bbp_get_template_part( 'content', 'single-user'        ); 
     		 
     		                // Return contents of output buffer 
     		                return $this->end(); 
     	 
     	       } 

    My problem is that the profile page is displayed correctly, but none of the links work.
    Someone has an idea to solve this ?

    Thanks

    #135281
    moeller84
    Participant

    Hello everyone,

    Completely new to bbPress here, so bear with me.

    I’m running a forum in PHP-fusion, but want to join the wonderful world of bbPress and WordPress and the endless possibilities they present.

    However i have encountered a problem as i want to transfer all the existing members and preferably old forum posts and blog posts to bbpress. I have been looking pretty much everywhere, but it seems like this is not possible unless i create some customized script.

    This is way beyond my capabilities, so now im turning to the forum to ask if there really isnt any possibilites for making such a transfer/conversion or anyone have some great tips on what to do?

    Thx in advance

    #135279
    andreascm
    Participant

    Hi there,
    has anybody a solution for this problem?
    If I had known that before, I won’t have tested this plugin…

    Thank you for any hints!

    #135274
    easthenrylin
    Participant

    bbPress 2.3.2 zh_TW translations(50%)

    download:
    https://docs.google.com/file/d/0B4sYaVs4oyaBbU1HQTRGajNCbUE/edit?usp=sharing

    file path:
    \wp-content\languages\bbpress\

    #135272
    TrishaM
    Participant

    Well more than 2 months after my attempt at upgrading from a 1.0.2 installation to the 2.2.4 version I’m still left with such a horrible mess that now I think it’s best to completely separate the bbPress from my WP installation and run it on a subdomain with it’s own separate MySQL database.

    BUT I need some help to be sure I do the de-integration correctly. Fortunately there have been a limited number of both normal WP posts and forum posts in the interim, hopefully that will make it easy to identify those objects since I exported everything from the original database prior to the upgrade.

    It looks like all the forum posts and meta are still in the bb_ tables, so as near as I can figure, this seems like what I should do:

    1. Export all the bb_ tables to a sql backup file;
    2. Export all the wp_ tables to a sql backup file;
    3. Export just the wp_users table to a sql backup file for later bbPress use;
    4. Create a new MySQL database for the WP installation and import the wp_tables to it;
    5. Clean out any users with less than contributor role (not sure how to do this);
    6. Change my wp-config.php to use the new WP database;
    7. Create a new MySQL database for the bbPress installation;
    8. Reinstall bbPress as a standalone install;
    9. Import the bb_ tables to the new bbPress database;
    10. Import the separate wp_users table into bb_users (? not sure if this can be done?);

    Can anyone please advise me if this is the right approach, and how to handle the users? I cleaned out all of the inactive and bozo users and have not allowed any new registrations, so all of the remaining users can be imported to the new forum installation. I want to clean them out of the wp_users because I don’t allow registrations there except for author/contributors, which I add manually, so there are several hundred forum users that don’t need to be in my WP installation.

    I need some help with the SQL query to isolate and remove any users from wp_users who are not admin/editor/author/contributor level users.

    Many thanks for any help anyone can offer.
    9.

    #135267

    In reply to: Where is my forum?

    m4j4
    Participant

    hi, lornalily, I have followed your advice and cleard caches but the bbpress is still not visible anywhere on the left menu of WP.

    hopefully, Trifon has some idea what to do.

    #135266
    jeteran
    Participant

    Thanks for that Lynq.

    THis is the solution:

    “Tools” -> “Forums” -> “Remap existing users to default forum roles”

Viewing 25 results - 25,151 through 25,175 (of 64,518 total)
Skip to toolbar