Forum Replies Created
-
In reply to: What happened?
A couple of things:
1) You didn’t configure the config.php file correctly and that’s why the site has no CSS: http://my-cool-forums.example.com/bb-admin/install.css should be http://rigelastronomy.com/bb-admin/install.css
2) You need to actually run the installer, much like WordPress
In reply to: same header in bbpress – wordpressDid you specify to load the admin interface? Make sure this line is inside your bbpress header somewhere:
<?php if ( is_bb_profile() ) profile_menu(); ?>
In reply to: integration with wordpress…The first problem is in your header, you have:
<php bloginfo('stylesheet_url'); ?>
, it should be<?php bloginfo('stylesheet_url'); ?> and with the second import, I'm not sure why style.css is just floating around outside. It should be pointing to your forum so it should be:
@import url(“/archas/ram/wordpress/forum/bb-templates/your themestyle.css”);`The second problem is you have to edit EVERY file in the template. Make a new folder in bb-templates, call it whatever you want and copy all the files from kakumei theme except for images directory into your new folder and change all the files that have
<bb_get header()>
to<get_header()>
and don’t forget the footer and sidebar.The third problem is you need to style the bbpress stylesheet to match your theme…
In reply to: integration with wordpress…Make sure that when you enter: require_once( ‘../wp-blog-header.php’);, it’s absolute path. For example: /home/username/archas/ram/wordpress/
To find out what your absolute path is:
1) make a file and call it path.php
2) add this code into the path.php:
<?php $p = getcwd(); echo $p; ?>
3) upload it to your wordpress directory and access it http://www.cs.elomza.pl/archas/ram/wordpress/path.php, that will output your path.
For more info: http://www.bui4ever.com/web-itecture/how_to_integrate_wordpress_and_bbpress/
In reply to: Integrating BBPress with and existing (x)html siteIn reply to: Bozo problemI’ve deleted the is_bozo entries directly from the database and now we’re no longer marked as bozos in the admin panel, but can’t get the posts that were by us marked as bozos to appear.
In reply to: Bozo problemOk, I found that now. Interestingly, where in the meta_value you have b:1;, I have just the number 1. I changed it to b:1; and nothing happens. I’m still marked as a bozo. Is there a way to disable the bozo completely?
In reply to: Bozo problemI also did a search in my database for bb_metauser and none could be found.
In reply to: Bozo problemTrent,
That’s the problem, there is no box to uncheck them anywhere in their individual profile, where they are listed as Bozos, etc.
In reply to: UTW ErrorUTW for tags in WordPress.
In reply to: Adding a right sidebar at front pageTo the footer, try adding clear: both in your CSS.
In reply to: Plugin: Forums ModeratorsVery cool! Gonna try this!
In reply to: How do I create new themes (not topics)?Does this help any? http://www.bui4ever.com/web-itecture/how_to_integrate_wordpress_and_bbpress/
In reply to: UTW ErrorI too would like to be able to use UTW with bbpress.
The display_name.php file is supposed to go into a directory that you create in your forum directory called my-plugins.php. No need to activate as anything that is put in there is auto activated.
In reply to: Integrated WP and BBPress Search?That route would be acceptable until someone does a plugin or a core modification. Thanks!
In reply to: Working as a Page in my theme.Here is the error I’m getting when I put
‘”require_once(‘/path/to/wp-blog-header.php’);”‘ into my bbpress config.php file:
Warning: main(http://www.dev.abunchofcars.com/wp-blog-header.php): failed to open stream: HTTP request failed! ��-@����-�”@ in /home/abunchof/public_html/dev/forum/config.php on line 3
Fatal error: main(): Failed opening required ‘http://www.dev.abunchofcars.com/wp-blog-header.php’ (include_path=’.:/usr/lib/php:/usr/local/lib/php’) in /home/abunchof/public_html/dev/forum/config.php on line 3
In reply to: Change or remove “sticky” textOh cool! I’ve been looking for this!
In reply to: Favorites to appear on WP home page?I was starting to wonder about that… Thanks!
In reply to: Favorites to appear on WP home page?Perfect! Thank you!
In reply to: Favorites to appear on WP home page?Any chance you’re willing to share the plugin?
In reply to: login messageThanks for helping with lightbox!
In reply to: Favorites to appear on WP home page?I was just looking at your page, basically you have it exactly how I would like to do it. How did you get the Latest Discussions to load on the front? Thanks!
In reply to: Favorites to appear on WP home page?Kind of, was hoping it would be something where I could make a sidebar, but I would settle for getting it on the homepage in one way or another. Actually I made a mistake when I said Favorites, I meant latest discussions.
In reply to: login messagebb-press/bb-includes/template-functions.php
You’ll find this on line 77:
function login_form() {
global $bb_current_user, $bb;
if ( bb_is_user_logged_in() ) {
printf('<p class="login">'. __('Welcome, %1$s!'). ' <a href="' . get_user_profile_link( $bb_current_user->ID ) . '">'. __('View your profile') ."»</a>n<small>(",get_user_name( $bb_current_user->ID ));