Set
$bb->uri = 'http://konpaforum.com/bbpress/';
in your config.php
(edit: missing tailing semi-colon)
My guess is that you are trying to use permalinks and they’re not supported by your current configuration. I would try this first. In your config.php, find the mod_rewrite line, and make it look like this:
$bb->mod_rewrite = false;
That should make your forum accessible and should take care of the 404 error as well, at least for the forum software. The actual error you have there is because when a page cannot be found (like your forum pages) Apache is configured to serve up 404.shtml, but that file is not present. You could create one so that is shown when a 404 file not found error occurs.
You access your admin panel by logging in as the keymaster (user you created when you created the forum) and then click the “Admin” link next to your logged in name. If it’s not there, you are not logged in as the keymaster. I would post the direct URL to bb-admin but it just redirects if you are not already logged in as keymaster. Try that first.
Damn: 16 seconds too slow, and wrong to boot?
Oh yeah, this doesn’t look right (the path is wrong):
http://konpaforum.com/bbpress/
You have installed everything to a sub folder called bbpress. If you want your index page to be the forum i think u may need to reinstall moving everything to the public_html folder rather than it being there within a folder called bbpress.
Other than that you could create a index page that just forwards the user to http://konpaforum.com/bbpress/
Didn’t read the question completely. I provided a fix for an error, which was caused by another error.
Just follow what goldfinger said, then the problem should be solved.
hey guys thanks, like goldfinger said everything is installed in a folder
titled bbpress. I’ve reinstalled in several places, but with no success. I
don’t know if its because im using a sub-domain not sure. Anyways I will
keep trying, I’m also going to try to install wordpress first. thanks again.
sub-domain? did you mean add-on domain?
You just need to move (re-install) all bbPress files up a level. If you installed them into public_html/konpaforum.com/bbpress/
, then mv public_html/konpaforum.com/bbpress/* public_html/konpaforum.com/
If you want to integrate into WordPress, then leave them and install WordPress in public_html/konpaforum.com/
, would be a good idea.