Skip to:
Content
Pages
Categories
Search
Top
Bottom

Re: Problem with my Domain

First off, you are missing a slash to seperate the forum and all the URL’s that it generates. The actual place you installed bbPress is:

http://www.fh-augsburg.de/~steinle/Pfeil/Forum/

You need to adjust some things in your config.php file in the bbPress root (above directory)

// If your bbPress URL is http://bbpress.example.com/forums/ , the examples would be correct.

// Adjust the domain and path to suit your actual URL.

// Just the domain name; no directories or path. There should be no trailing slash here.

$bb->domain = 'http://www.fh-augsburg.de/~steinle/Pfeil'; // Example: 'http://bbpress.example.com'

// There should be both a leading and trailing slash here. '/' is fine if the site is in root.

$bb->path = '/Forum/';

As to make sure it integrates, config.php should have something like this:

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

// If you're not, just leave the rest as it is.

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

$bb->wp_home = 'http://www.fh-augsburg.de/~steinle/Pfeil'; // WordPress - Options->General: Blog address (URL) // No trailing slash

$bb->wp_siteurl = 'http://www.fh-augsburg.de/~steinle/Pfeil'; // WordPress - Options->General: WordPress address (URL) // No trailing slash

/* Stop editing */

Keep in mind this is no exactly depending on whether this is just WP or WPMU that you are using. As well, this assumes that you have those addresses in your WP options as well.

I think you will get the idea from this example though.

Trent

Skip to toolbar