Search Results for 'bbpress'
-
AuthorSearch Results
-
October 30, 2006 at 7:56 pm #49860
In reply to: loading wordpress with bbpress
mokona
MemberHi, I think I’ve got the same problem.
I’m trying to install bbPress into a subdirectory of wordPress and I want it to have the same template of my main site.
I’ve looked this topic and I’ve uninstalled bbPress and made some changes to my config.php, that now looks like:
<?phprequire_once('/home/wererabbit/demon.wererabbit.net/wp-blog-header.php');
define('WP_BB', true);
define('BBDB_NAME', '*****');
define('BBDB_USER', '*****');
define('BBDB_PASSWORD', '******');
define('BBDB_HOST', 'mysql.wererabbit.net');
$bb_table_prefix = 'bb_';
$bb->domain = 'http://demon.wererabbit.net/';
$bb->path = '/forum/';
$bb->name = 'Forum';
$bb->admin_email = 'lum@wererabbit.net';
$bb->mod_rewrite = true;
$bb->page_topics = 30;
$bb->edit_lock = 60;
$bb->gmt_offset = 0;
$bb->akismet_key = false;
$bb->wp_table_prefix = 'wp_';
$bb->wp_home = 'http://demon.wererabbit.net';
$bb->wp_siteurl = 'http://demon.wererabbit.net';
define(WPp_BB', true);
define('BBPATH', dirname(__FILE__) . '/' );
require_once( BBPATH . 'bb-settings.php' );
?>
Now when I try to install I get a parse error:
Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING in /home/.nevermore/wererabbit/demon.wererabbit.net/forum/config.php on line 57
line 57 is:
define(‘BBPATH’, dirname(__FILE__) . ‘/’ );
I think there’s something missing but I do not catch it.
October 30, 2006 at 5:30 pm #855Topic: Email Notification
in forum Troubleshootingpeiqinglong
MemberDoes bbpress support email notification when someone answers a post that a person is subscribed to?
October 30, 2006 at 5:29 pm #50854In reply to: Are BBPress threads search engine searchable?
peiqinglong
MemberSweet! Thanks!
October 30, 2006 at 5:24 pm #50798In reply to: Adding bbPress as a WordPress Page
peiqinglong
Membermrjain,
Of course, I would be glad to help.
October 30, 2006 at 4:44 pm #49601In reply to: Emoticons For bbPress?
tekhawk
Memberjust a thought anyone want to modify this plugin so that you can add icons to titles
October 30, 2006 at 4:17 pm #49600In reply to: Emoticons For bbPress?
tekhawk
Memberquick note
i had to add this line to my header.php file
<script type="text/javascript" src="'. bb_get_option('uri') .
'my-plugins/bb-emoticons.php?bb_grins_output=javascript"></script>
add that to the steps to get this to work if you are having troubles with clicking on the icons not working
Hope that this feature gets added to the package soon
October 30, 2006 at 3:18 pm #49804In reply to: Private forum?
kannued
ParticipantI discovered the answer to my question on the definition of user types.
https://bbpress.org/forums/topic/160?
But as for the other problem of having a forum designated as private, for now, I will have to create multi-bbpress boards.
October 30, 2006 at 3:08 pm #850Topic: Programmer Needed
in forum Themesrandykopplin
MemberThis is all to complicated for my simple mind.
Need someone- to install and intergrate bbpress into my WP forum.
Is it possible to totally intergrate bbpress into the forum, so that the Forums show up in the main window of the template the same as the topics from WP?
Or do I need to create a totally new template to run under bbpress that matches template for WP?
October 30, 2006 at 12:48 pm #50054In reply to: Can’t Login…
cvanp
MemberNope, my layout is as follows:
All three share the same database, with the prefixes
wp1_,wp2_, andbb_. I have the second WordPress (wp2_) hacked up a bit so it useswp1_usersandwp1_usermeta, enabling me to have a Gawker Media style Blog Network (multiple blogs, single logins). I was hoping to share thatwp1_table with bbPress, and it appears to have done so, just didn’t let me log in.Also, I don’t get an error message, I just get directed back to the homepage as if I had done nothing.
October 30, 2006 at 12:32 pm #49468In reply to: Are there any localization files?
icwiener
MemberHi stigi. We should definitely merge our work, due to I have started translating as well and only have about 50 untranslated strings.
I am presently hanging out in #bbpress on Freenode from time to time, so maybe lets meet there sometime.
cheers
October 30, 2006 at 12:12 pm #49467In reply to: Are there any localization files?
stigi
Memberi just started a german one:
find it at http://stigi.seidbereit.de/bbpress_de_DE.po
its far from finished. i just started at the beginning. and when i was bored i started again at the end and hoped i would meet up in the middle.
but there are still like 800 lines not translated. but contribute!
October 30, 2006 at 11:10 am #50696In reply to: How to customize bbpress titles ?
ear1grey
MemberThere isn’t currently a filter on the title, so there’s no quick answer that I can see, however:
You could copy
bb-templatesheader.phptomy-templatesheader.php(if you don’t have a copy of it already), then change its call tobb_title();to another function, which you could write in a plugin, stealing code from thebb_get_title()function intemplate-functions.php.Something like:
my-title-plugin.php<?php// edit this so it returns whatever you want
function my_title() {
global $topic, $forum, $static_title, $tag, $user;
$title = '';
if ( is_topic() )
$title = get_topic_title(). ' « ';
if ( is_forum() )
$title = get_forum_name() . ' « ';
if ( is_tag() )
$title = wp_specialchars( get_tag_name() ). ' « Tags « ';
if ( is_bb_profile() )
$title = get_user_name( $user->ID ) . ' « ';
if ( !empty($static_title) )
$title = $static_title . ' « ';
$title .= bb_get_option('name');
return $title;
}
?>
October 30, 2006 at 9:59 am #50797In reply to: Adding bbPress as a WordPress Page
mrjain
Memberdude,
that is a great site, i’m actually working a car site as well called BombayBling.com, so i might be pinging you for some feedback.
later,
mrj
October 30, 2006 at 7:37 am #50853In reply to: Are BBPress threads search engine searchable?
Michael Adams (mdawaffe)
MemberYes, and you’re right
October 30, 2006 at 7:22 am #50053In reply to: Can’t Login…
Michael Adams (mdawaffe)
Membercvanp, Is your bbPress URL a “subdirectory” of your WP URL?
October 30, 2006 at 7:21 am #50052In reply to: Can’t Login…
Michael Adams (mdawaffe)
Memberwhitelion, If you’re logged in, but can’t admin, it may be that there are no users with admin capabilities. This can happen if you install bbPress and then later intograte it with WordPress.
To fix this, try setting
$bb->new_keymaster = true;in bbPress config.php and then re-running /bb-admin/install.php.You should be able to type in your username if there are not any keymasters already. Delete that new line in config.php once you’re done.
October 30, 2006 at 6:28 am #847Topic: Are BBPress threads search engine searchable?
in forum Troubleshootingpeiqinglong
MemberJust wanted to check…I assume so since it has its own “page” no?
October 30, 2006 at 4:22 am #50640In reply to: Suggestions for profile.php
AphelionZ
Participantpeiqinglon,
October 30, 2006 at 3:48 am #50639In reply to: Suggestions for profile.php
peiqinglong
MemberHow did you get img tags to work inside bbpress?
October 30, 2006 at 3:45 am #49599In reply to: Emoticons For bbPress?
peiqinglong
MemberCool! Works for me also!
October 30, 2006 at 3:29 am #50796In reply to: Adding bbPress as a WordPress Page
peiqinglong
MemberThe page you refer to is one of my sites: http://www.abunchofcars.com/forum and it took a bit of playing to get it “integrated”, but its easy now.
Basically when you go to http://www.abunchofcars.com/forum , you’re not going to a page called forum, you’re actually loading the bbpress directory. I created a folder called “my-templates” and began warping the standard layout to match my layout. It involved some heavy modification of the bbpress layout files. The main files I tweaked with are: headers.php, front-page.php, footer.php, and style.css. I also did some slight tweaking with the login-form.php also.
October 30, 2006 at 1:27 am #49749In reply to: Using WP template tags
devils_advocate
Member“Try
require_once(dirname(dirname(__FILE__)) . ‘/wp-config.php’);
in bbPress’ config.php.”
So this as you are installing bbPress? or ?
October 30, 2006 at 1:26 am #50572In reply to: Cannot login, Hide forum
zapata
MemberI got an error after installation as follows:
Fatal error: Call to undefined function: bb_is_user_logged_in() in /home/direc/public_html/passionforcinema-com/wp-content/plugins/bbpress-forcelogin.php on line 12
October 30, 2006 at 12:12 am #50235In reply to: Cookies and WPMU
mozey
Membersuleinman, sure thing,
okay, first of all, my bb and my mu are sharing ONLY the usertable and the login sessions. THATS IT, no common functions, nothing like that.
and in order to do that, i added the following lines to my config.php on my bb.
__________________________________________________
//These are for the information about the database into which bbPress should store its content
// ** MySQL settings ** //
define(‘BBDB_NAME’, ‘bbdbname’); // The name of the database
define(‘BBDB_USER’, ‘bbdbuser’); // Your MySQL username
define(‘BBDB_PASSWORD’, ‘bbdbpassword’); // …and password
define(‘BBDB_HOST’, ‘127.0.0.1’); // 99% chance you won’t need to change this value
// This is the information about mu’s database. bbPress will look for users in this database
define(‘USER_BBDB_NAME’, ‘mudbname’);
define(‘USER_BBDB_USER’, ‘mudbuser’);
define(‘USER_BBDB_PASSWORD’, ‘mudbpass’);
define(‘USER_BBDB_HOST’, ‘127.0.0.1’);
//if your using one database, its cool, just replicate the mu/bb data!
//now your about to tell bb to look for users in the wp table
define(‘CUSTOM_USER_TABLE’, ‘wp_users’);
define(‘CUSTOM_USER_META_TABLE’, ‘wp_usermeta’);
//and now, your about to tell bb to user the same sessions as wp
$bb->usercookie = ‘wordpressuser’;
$bb->passcookie = ‘wordpresspass’;
$bb->cookiedomain = ‘localgigs.fm’; // or .example.com if there was a . above
$bb->cookiepath = ‘/’;
// Change the prefix if you want to have multiple forums in a single database.
__________________________________________________
i hope this helps. do reply back with questions,
-
AuthorSearch Results