Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Installing phpMyAdmin 2.10.2.tar.tz on my web server

At the top of the config.php files of bbPress and WordPress these values will be the same.

<?php

// ** MySQL settings ** //

define(‘BBDB_NAME’, ”); // The name of the database

define(‘BBDB_USER’, ”); // Your MySQL username

define(‘BBDB_PASSWORD’, ”); // …and password

define(‘BBDB_HOST’, ‘localhost’); // 99% chance you won’t need to change this value

Trent wrote:

[For bbPress and WP to be integrated you have to configure your config.php before install to have your WP specific data in it (there is a portion near bottom) and then install bbPress in the same MySQL database regardless of where the physical files actually reside (your case /blog/ and /forum/).}

// The rest is only useful if you are integrating bbPress with WordPress.

// If you’re not, just leave it as it is.

$bb->wp_table_prefix = ‘wp_’; // WordPress table prefix. Example: ‘wp_’;

$bb->wp_home = ‘http://mywebsite.com/blog/&#8217;; // WordPress – Options->General: Blog address (URL) // Example: ‘http://example.com&#8217;

$bb->wp_siteurl = ‘http://mywebsite.com/blog/&#8217;; // WordPress – Options->General: WordPress address (URL) // Example: ‘http://example.com&#8217;

/* Stop editing */


I already have WordPress installed in my public_html directory in a folder named blog.

Above, I put in examples of how to fill-in ‘examples’

Apparently it would be wp_home = http://mywebsite.com/blog/

and wp_siteurl = http://mywebsite.com/blog/

Apparently, only the WordPress has to have the bottom portion filled-in?

If this is correct then I would have to fill-in bottom portion of the WordPress config.php and FTP it before I reinstalled bbPress.

[regardless of where the physical files actually reside]

I was thinking of the physical storage of the files.

[Does that make sense?]

I think so.

Skip to toolbar