Search Results for 'code'
-
AuthorSearch Results
-
April 17, 2008 at 4:47 pm #64005
Sam Bauers
ParticipantTry putting this in your bb-config, it should rename those bbPress cookies for you:
$bb->usercookie = 'wordpressuser';
$bb->passcookie = 'wordpresspass';.
You may also need to adjust the cookie domain and path, but try that first.
April 17, 2008 at 4:43 pm #64264In reply to: Blocking registrations by email
Sam Bauers
ParticipantAh, in that case all you need to put there is
mail.ruwithout the asterisk or leading dot.April 17, 2008 at 3:13 pm #62415In reply to: can’t access admin dashboard
devcore
MemberI installed bbPress on a directory called /discussions on the root of my hosting account, where I have also installed WordPress 2.5, everything on the installation went ok, but after all been done, the admin login to the dashboard gives me the following message:
You do not have sufficient permissions to access this page.Any solution?
April 17, 2008 at 9:31 am #64328In reply to: Duplicate Messages Tab in Private Message Plugin
_ck_
ParticipantI had the same problem with my plugins with the avatar tab too. It makes tabs duplicate.
I’ll have to lookup the workaround I did…
Okay the bug fix I had to use was to wrap the function that adds a tab and check if $self was set.
ie.
function add_tab(blah) {
global $self;
if (!self) {
// code that adds tab goes here
}
}So what you probably need to do is change this line like so:
if (!$self && bb_get_current_user_info( 'id' ) == $user_id) {April 17, 2008 at 9:18 am #60995In reply to: phpBB3.0-style theme
andersson
Participant@Beer: When/if I get the time I’ll be sure to make it public. As you know it’s quite something else to make it work generically rather than for one specific site.
Thanks for the praise though, appreciate it.
@_ck_: Thanks. Yes, I also had a good mind of making that “online” banner that phpbb uses, available per user but other things caught my attention.

Anyways, glad you both liked it.
April 17, 2008 at 7:43 am #64357_ck_
ParticipantFront page topics plugin isn’t working? Hmm. Should be.
I have a modification I’ve done somewhere…
Try this:
// fix number of front page topics
function bb_custom_topic_limit($limit) {
switch (bb_get_location()) :
case 'front-page': $limit=5; break;
case 'forum-page': $limit=10; break;
case 'tag-page': break;
case 'topic-page': $limit=15; break;
case 'feed-page': break;
case 'search-page': break;
case 'profile-page': break;
case 'favorites-page': break;
case 'view-page': $limit=10; break;
case 'stats-page': break;
case 'login-page': break;
default: $limit=15;
endswitch;
return $limit;
}
add_action( 'bb_get_option_page_topics', 'bb_custom_topic_limit',200);
// required to fix for custom topic limits to calculate correct page jumps
function fix_post_link ($link,$post_id) {
global $topic;
remove_action( 'bb_get_option_page_topics', 'bb_custom_topic_limit' );
if ($topic && $topic->topic_last_post_id==$post_id) {
$topic_id=$topic->topic_id;
$page=get_page_number( $topic->topic_posts );
} else {
$bb_post = bb_get_post( get_post_id( $post_id ) );
$topic_id=$bb_post->topic_id;
$page = get_page_number( $bb_post->post_position );
}
return get_topic_link( $topic_id, $page ) . "#post-$post_id";
}
add_filter( 'get_post_link','fix_post_link',10, 2);April 17, 2008 at 3:48 am #64374In reply to: Forum Disappeared!
bloggerdesign
MemberIs there a manual way to get someone set to KeyMaster? I registered and was user #1. There seems to be no use #0 so there is no administer for the forum. I’m totally locked out.
April 17, 2008 at 3:34 am #64373In reply to: Forum Disappeared!
bloggerdesign
MemberI found the issue. The table names were custom set to not interfear with anything that that wasn’t called out anywhere in the install process except in an advanced (hidden) area.
I’ve re-installed BBPress 4 times now and I finally go it to work, with all my old posts, but I can’t log in.
April 17, 2008 at 3:13 am #64329In reply to: key master only forum
_ck_
ParticipantThis will affect all forums:
global $bb_roles;
$bb_roles->remove_cap('member','write_topics');
$bb_roles->remove_cap('member','write_posts');You can put it into
header.phpor make a real plugin ie.members-cannot-post.php(and install into /my-plugins/)<?php
/*
Plugin Name: Members Cannot Post
*/
global $bb_roles;
$bb_roles->remove_cap('member','write_topics');
$bb_roles->remove_cap('member','write_posts');
?>I think I will make a real plugin which can control this on a per-forum basis since this seems to be a requested feature that is not too hard to handle in 0.9 Look for it in the plugin section over the next day or two.
April 17, 2008 at 3:06 am #64339In reply to: Gravatar and Karma plugin
_ck_
ParticipantI have a karma plugin in development but it is not available yet and most likely will not be until early May.
You can preview it in use at http://bbShowcase.org
The code in brackets is BBcode so you want my BBlite:
April 16, 2008 at 11:30 pm #64353In reply to: Uninstall forum?
chrishajer
ParticipantI think it is. The only issue is if you had an integrated install, then you would have bbPress users in your wp_users and wp_usermeta table. You would probably have to manually remove those entries from those tables. Don’t drop the wp_ tables, just the bb_tables.
I think that’s about it. Once the code is gone from the filesystem, the database doesn’t matter much except for keeping things tidy.
April 16, 2008 at 11:28 pm #64338In reply to: Gravatar and Karma plugin
chrishajer
Participant<strong>like this</strong>and it will look like this. Not bbcode, HTML.April 16, 2008 at 10:45 pm #64337In reply to: Gravatar and Karma plugin
ajvngou_
Memberand i am trying use code or something… how i can type this?
[strong] hello[/strong]
April 16, 2008 at 6:10 pm #64348In reply to: Redirect problem
JaneLitte
MemberI don’t have pretty permalinks on. I don’t have an .htaccess file in the bbpress install. My root .htaccess is this
php_flag register_globals off
RewriteRule ^([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/print/?$ /wp-print.php?year=$1&monthnum=$2&day=$3&name=$4 [QSA,L]
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteCond %{HTTP_COOKIE} !^.*comment_author_.*$
RewriteCond %{HTTP_COOKIE} !^.*wordpressuser.*$
RewriteCond %{HTTP_COOKIE} !^.*wp-postpass_.*$
RewriteCond %{HTTP:Accept-Encoding} gzip
RewriteCond %{DOCUMENT_ROOT}/wordpress/wp-content/cache/supercache/%{HTTP_HOST}/$1index.html.gz -f
RewriteRule ^(.*) /wordpress/wp-content/cache/supercache/%{HTTP_HOST}/$1index.html.gz [L]
RewriteCond %{HTTP_COOKIE} !^.*comment_author_.*$
RewriteCond %{HTTP_COOKIE} !^.*wordpressuser.*$
RewriteCond %{HTTP_COOKIE} !^.*wp-postpass_.*$
RewriteCond %{DOCUMENT_ROOT}/wp-content/cache/supercache/%{HTTP_HOST}/$1index.html -f
RewriteRule ^(.*) /wp-content/cache/supercache/%{HTTP_HOST}/$1index.html [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
# END WordPress
<Files 403.shtml>
order allow,deny
allow from all
</Files>
#AddHandler php5-script .phpthion
MemberNevermind, I’ve coded it myself
. But it’s not ready for release yet…
April 16, 2008 at 6:18 am #64157In reply to: New bbPress Theme: Peacemaker
refueled
MemberHey,
Just wanted to mention that I have released a matching WordPress theme, just in case anyone is using Peacemaker for bbPress.
You can download it here.
April 16, 2008 at 4:24 am #49643In reply to: Emoticons For bbPress?
exchequer598
MemberUPDATE!!
Figured out a way to integrate WordPress smileys into bbPress. Use this plugin!
http://pastebin.com/f411dfe2aApril 16, 2008 at 3:06 am #64262In reply to: Blocking registrations by email
Sam Bauers
ParticipantYou should make that:
*.mail.ruApril 15, 2008 at 10:38 pm #3209Topic: bb_mail for user registration
in forum Requests & Feedbackmomo-i
MemberHi all,
I’m using this in Japanese. When the user is registered, mail is garbled. It seems that it is because the mail body is submitted with raw UTF8 (not MIME-encode) also this is because of mail in Japanese(encoded iso-2022-jp) being provided as shown in RFC1468.(See http://www.ietf.org/rfc/rfc1468.txt)
However, it is possible to display it even in Japanese with UTF8 normally by doing appropriate treatment.
1. Add Content-Type header and etc.
$headers[] = “MIME-Version: 1.0”;
$headers[] = “Content-Type: text/plain; Charset=UTF-8”;
$headers[] = “Content-Transfer-Encoding: 8bit”;
2. MIME encodes the header.
use mb_encode_mimeheader().
http://www.php.net/manual/en/function.mb-encode-mimeheader.php
Regards,
April 15, 2008 at 9:04 pm #64322psheerin
MemberI installed bbPress in http://paara.org/forum/ because that’s what I wanted the URL of the forum to be, and the installation instructions didn’t indicate any preference for where.
Just one blog, with the WP files at http://paara.org/WordPress/ but with the public URL being simply http://paara.org/, as described in https://codex.wordpress.org/Giving_WordPress_Its_Own_Directory
And after moving the bbPress directories to http://paara.org/WordPress/bbPress/, I still can’t get the install to run, or anything but the “no content” message to appear.
What am I missing?
April 15, 2008 at 7:47 pm #64327citizenkeith
ParticipantI know just enough PHP to be dangerous. Very dangerous.
In other words, not much… Maybe this is the opportunity for me to learn more. We’ll see…
thion
MemberIs there any shoutbox plug-in for BBpress? I’m looking for something simple to use for registered users, with simple managment (edit, delete), maybe something ajax-powered
.
April 15, 2008 at 4:14 pm #64069In reply to: Key Master unable to edit users
mikehaynes
MemberStill no luck with my issue. I’ve been looking through the code but can’t pinpoint the problem…
April 15, 2008 at 3:43 pm #64293In reply to: Latest Post in Forum List
berfarah
MemberI copy pasted the code it had in threads –
<td class="num">"><?php topic_title(); ?> by <?php topic_last_poster(); ?></td>I figured it would do teh same for the front page, but apparently not.
April 15, 2008 at 3:24 pm #53022In reply to: (A few) Ideas for Plugins
thion
MemberHello (my first post, yay) – so is there anyone who is planning to make this invitations/referral plug-in? I would find it very useful
. Especially when running a contest “bring as much users to my forums as possible and win an iPod”.
-
AuthorSearch Results