Search Results for 'bbpress'
-
Search Results
-
Topic: Can't get to step 1
Hi,
Downloaded bbpress to http://gtwmbackup.dh.bytemark.co.uk/bbpress
However, clicking ‘Go to step 1’ doesn’t do anything. There’s nothing logged to Apache’s error.log. I’m using PHP 5.2.4 on Ubuntu with Apache 2 and MySQL 5. Any ideas please?
Regards
Oliver Kohll
Topic: PHP if/else arguments
Hi all,
I’m used to using conditionals within PHP if/else arguments such as is_page_template, is_page, is_front_page, and so on within WordPress. However, I’d like to apply some within my bbpress theme (to change the title of seperate sections of the forums) and I’d love to know which conditionals are appropriate/different within bbpress.
Can anyone shed any light on this?
Many thanks,
Xander
Topic: Install.php not included
So, I went to the intended URL after uploading the files to my server, and I still received a “Page Not Found” error. My host company says the following:
“Hello,
I have noticed that the website at the URL http://latestartermusician.com/bbpress is loading with the Page not found. I have noticed that you are using the third party application. The application is not installed properly. The folder ‘bb-admin/install.php’ is missing. It appears to be an issue with the Application package. The package itself does not contain the required file for the proper functioning of the site. Could you please contact the application vendor and verify this from your end? Please contact the vendor or application support.
If you have any further questions, please update the Support Console.”
Any help on this would be greatly appreciated
Topic: Header Invalid
I downloaded the plugin for WordPress 2.8.4, and tried activating it. However, when I activated it, I was taken to a page that said, “This plugin does not have a valid header.” What does that mean? I am so excited about using bbpress, but I can’t.
I was matching the various keys per the integration options and once I save the “secure_auth” key bbPress shut down logins.
All my admin logins fail.
The forums still appear but I cannot register or login.
2 problems to fix:
Restore admin login and admin panel
Figure out how to share the wp database
Help is appreciated!
Topic: Forums as Comment engine?
i just added bbpress to my website and the admin pages aren’t working at all. in fact, nothing really works other than the main page comes up and clicking on any link just makes the page do a never-ending refresh. the install said there were some “minor” errors in the install, but i couldn’t figure out what they were. i did install it to connect to my wordpress site with a separate database, if that helps any.
Hey all –
Just started playing with bbpress last night & I am both totally hooked and somewhat frustrated, which seems to be my standard reaction to new software. I’m fluent in HTML, conversational in CSS and have worked with WordPress code before so I’m not completely in the dark, but there’s enough of a learning curve here that I have a few things I’d love some help with, if someone had a moment. Here’s the first two:
1. I would like my forum to be completely private – i.e., people would have to register or login on some sort of splash page before they reached the forum. In searching around these boards I found this plugin, but I just get a big ol’ 404 Not Found when I try to download it (and it looks like it’s a ways behind bbpress v1.0.2 anyway). Is this what I should be using instead? And if so, where exactly would it go, and on what page(s)?
2. I’m trying to add a “topic started by” field to the list of threads; I can get it to show up in the header row but I can’t get the fields in the actual table to show up. See what I mean? That’s no good. It’s probably some stupid PHP thing missing a thing (man, PHP is unforgiving) but I just can’t find it. Here’s the code I’m using:
<?php if ( $topics || $stickies ) : ?>
<table id="latest">
<tr>
<th><?php _e('topic'); ?> — <?php new_topic(); ?></th>
<th><?php _e('started by'); ?></th>
<th><?php _e('posts'); ?></th>
<th><?php _e('last poster'); ?></th>
<th><?php _e('last post'); ?></th>
</tr>
<?php if ( $stickies ) : foreach ( $stickies as $topic ) : ?>
<tr<?php topic_class(); ?>>
<td><?php bb_topic_labels(); ?><a href="<?php topic_link(); ?>"><?php topic_title(); ?></a></td>
<td class="num"><?php topic_author(); ?></td>
<td class="num"><?php topic_posts(); ?></td>
<td class="num"><?php topic_last_poster(); ?></td>
<td class="num"><a href="<?php topic_last_post_link(); ?>"><?php topic_time(); ?></a></td>
</tr>
<?php endforeach; endif; ?>Lord knows I have more questions, but let’s start with those. Any help would be very much appreciated…thanks!!
Topic: “deep” integration
I have already installed and integrated bbPress to WordPress MU on my site, and I need to know if i can add the following:
require_once(‘path/to/wp-blog-header.php’); in bbPress’ bb-config.php (wp-blog-header is in the same
directory as WordPress’ wp-config.php file).
without messing anything up or do I need to reinstall bbPress again and do this process at the beginning?
I’m looking to actually tie a forum system to a blog (Preferably WordPress)
Preferably all of the comments associated with each article would be viewable on the page as normal, but the user could also link over to the forum to read/discuss there.
The ideal situation would be that when a new blog post is posted, a new thread is created at the same time in the forum with the same title as the blog article.
Is bbPress up to this task, or is anyone aware of something that is more or less “off the shelf” with similar functionality?
Thanks for any help!