Info
- 13 posts
- 4 voices
- Started 3 years ago by crazlunatic
- Latest reply from crazlunatic
- This topic is not resolved
Install finished but it's as if my forum doesn't exist
-
- Posted 3 years ago #
Hello. So after I have installed it, I'm taken to a login screen where I login, and then I get taken to this page. http://vistarewired.com/test2/forums/
Why is this? I've tried reinstalling 3 times and the same thing happened.
-
- Posted 3 years ago #
"The definition of insanity is doing the same thing over and over and expecting different results."
--Benjamin FranklinI hope you were making changes with each subsequent installation. If so, what did you try?
Try setting permalinks to
falseinstead of true or slugs, in your config.php, like this:$bb->mod_rewrite = false;If that works, then it's a pretty permalinks issue.
-
- Posted 3 years ago #
Hmmm. I think that might have helped but my forums looks reallly bad =(
http://vistarewired.com/test2/bbpress/
Edit: Actually now when I log in, it takes me here: http://vistarewired.com/test2/forums/bb-login.php
And yes I did make changes like adding the functions code, but I don't think I need to use it, do I?
-
- Posted 3 years ago #
It looks bad because the path to your style.css is wrong. The stylesheet should be here, but it's not:
http://vistarewired.com/test2/forums/bb-templates/kakumei/style.cssSo, where is it really? I suspect the path in the config.php and the URL you are using to access the forum are not the same, and that's why you see the forum without any styling.
Wait - it's actually here:
http://vistarewired.com/test2/bbpress/bb-templates/kakumei/style.cssSo, in your config you called the directory
forumsbut you actually installed it in the directorybbpress. You need to fix your config.php.You have this:
$bb->uri = 'http://vistarewired.com/test2/forums/';It needs to be this:
$bb->uri = 'http://vistarewired.com/test2/bbpress/';(or, you can leave the config alone and change the name of the
bbpressdirectory toforums.)Fix that and everything will look as it should. You may need to do a hard refresh or clear the cache in your browser to see the effect of the changes. CTRL SHIFT R in Firefox.
-
- Posted 3 years ago #
chrishajer is right about issue with 'slugs'
only false option works... :-(
$bb->mod_rewrite = false;
are they rectifying this in next version??
-
- Posted 3 years ago #
That is great. I really appreciate your help but now I want to integrate it into wordpress. How can I do this?
http://vistarewired.com/test2/bbpress/
This is how I edited my config:
// 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 = 'craz_'; // WordPress table prefix. Example: 'wp_';
$bb->wp_home = 'http://vistarewired.com/test2'; // WordPress - Options->General: Blog address (URL) // Example: 'http://example.com'
$bb->wp_siteurl = 'http://vistarewired.com/test2'; // WordPress - Options->General: WordPress address (URL) // Example: 'http://example.com'/* Stop editing */
-
- Posted 3 years ago #
rahul286: the false option always works for all servers. The other options work but require some configuration on your end. So, setting it to false is the quickest and easiest way to get going. It's not a problem with bbPress, it's a problem with configuration on a lot of servers.
-
- Posted 3 years ago #
crazlunatic: did you try it? That looks like what you need to do for integration, to me. Oh, except I think you need to do that before you install, so that your user tables are integrated. If you changed that after installation, install again.
Integration next week will be different with the release of WordPress 2.5 and the latest bbPress 0.9.
-
- Posted 3 years ago #
I added the code but nothing changed:
http://vistarewired.com/test2/bbpress/ -
- Posted 3 years ago #
What are you expecting from integration? Integration here means the user information is shared, that's about it. If you want your bbPress installation to look like your WordPress blog, there is more work to be done. I'm guessing that's what you're expecting: you want your forum to look like your blog?
-
- Posted 3 years ago #
yes that's what I wanted. I think I misinterpreted integration but I needed it as well
-
- Posted 3 years ago #
You'll have to create your own custom theme for bbpress in order to make it look like it's part of your site.
-
- Posted 3 years ago #
Thank you for the help. So what I did was take my original WordPress template and put it in the templates folder and it gave me this:
http://vistarewired.com/test2/wp-content/bbpress/
This is what I want except I want to center it, add some grey boxes behind it and that is pretty much it. How do I do this? Because I'm using the same CSS I used for my original blog template which is at http://vistarewired.com
-
You must log in to post.