Search Results for 'bbpress'
-
AuthorSearch Results
-
March 12, 2010 at 3:59 am #51867
In reply to: Email masked
johnhiler
MemberThe tricky part is that the username is usually in the profile url… like here:
https://bbpress.org/forums/profile/johnhiler
So even if you required Display Names, the email might be visible in the profile URL.
But I’ve seen where you can make the profile URL use numbers instead:
https://bbpress.org/forums/profile/150000
Maybe that’d be doable as a workaround?
March 11, 2010 at 10:55 pm #85783In reply to: trouble with bbPress Themes, invisible.
Jim
MemberOK, did a Google search for 755 permissions and found this page:
http://www.elated.com/articles/understanding-permissions/
Changes my permissions in my FTP and suddenly and quite magically the themes appear!!!! Thanks for you help!
Jim
March 11, 2010 at 10:50 pm #85782In reply to: trouble with bbPress Themes, invisible.
Jim
MemberHey Chris, I don’t know what they are, that’s just what they’re called, I don’t believe I had anything to do with the naming. Can you tell me how to change or check to see if I have 755 permissions turned on? Thanks for the help Chris!
Jim
March 11, 2010 at 8:59 pm #85658In reply to: A Few errors after installing BBpress
agwag
MemberThanks! Will give it a try.
March 11, 2010 at 8:57 pm #85781In reply to: trouble with bbPress Themes, invisible.
chrishajer
ParticipantWhat are these “user” and “core” directories? bbPress themes you create should be in a
my-templatesdirectory. The my-templates directory should have 755 permissions.March 11, 2010 at 5:52 pm #33731Topic: trouble with bbPress Themes, invisible.
in forum ThemesJim
MemberHey all, I am trying to install some themes for my bbpress/wordpress site and when I go and install the theme files to my-themes all I get in the “available themes” page are blank themes with just the names showing, and if I try and activate it, the site is just blank. I have attached a shot, or a link to a screen shot of what I am seeing. Any help would be greatly appreciated! And by the way, thanks for all the help all ready, this site has helped me get my bbpres site running on the same DB as my wordpress!
March 11, 2010 at 5:22 pm #85657In reply to: A Few errors after installing BBpress
chrishajer
ParticipantReplace all your existing files with the trunk download. It’s not a diff or a patch, it’s just a complete testing version of the software.
March 11, 2010 at 4:39 pm #85656In reply to: A Few errors after installing BBpress
agwag
MemberFor the absolute noob – how do we implement the trunk version?
Does it just get unzipped into the htdocs folder? Does it replace the v1.0 files downloaded from the stable release? Or is complementary to those files?
Thanks for any help.
March 11, 2010 at 3:59 pm #85779In reply to: Default user permissions
johnhiler
MemberHere are all the capabilities of each role, as defined in bb-includes/functions.bb-capabilities.php:
function bb_init_roles( &$roles ) {
$roles->add_role( ‘keymaster’, __(‘Key Master’), array(
‘use_keys’ => true, // Verb forms of roles – keymaster
‘administrate’ => true, // administrator
‘moderate’ => true, // moderator
‘participate’ => true, // member
‘keep_gate’ => true, // Make new Key Masters //+
‘import_export’ => true, // Import and export data //+
‘recount’ => true, // bb-do-counts.php //+
‘manage_options’ => true, // backend //+
‘manage_themes’ => true, // Themes //+
‘manage_plugins’ => true, // Plugins //+
‘manage_options’ => true, // Options //+
‘edit_users’ => true,
‘manage_tags’ => true, // Rename, Merge, Destroy
‘edit_others_favorites’ => true,
‘manage_forums’ => true, // Add/Rename forum
‘delete_forums’ => true, // Delete forum
‘delete_topics’ => true,
‘close_topics’ => true,
‘stick_topics’ => true,
‘move_topics’ => true,
‘view_by_ip’ => true, // view-ip.php
‘edit_closed’ => true, // Edit closed topics
‘edit_deleted’ => true, // Edit deleted topics/posts
‘browse_deleted’ => true, // Use ‘deleted’ view
‘edit_others_tags’ => true,
‘edit_others_topics’ => true,
‘delete_posts’ => true,
‘throttle’ => true, // Post back to back arbitrarily quickly
‘ignore_edit_lock’ => true,
‘edit_others_posts’ => true,
‘edit_favorites’ => true,
‘edit_tags’ => true,
‘edit_topics’ => true, // Edit title, resolution status
‘edit_posts’ => true,
‘edit_profile’ => true,
‘write_topics’ => true,
‘write_posts’ => true,
‘change_password’ => true,
‘read’ => true
) );
$roles->add_role( ‘administrator’, __(‘Administrator’), array(
‘administrate’ => true,
‘moderate’ => true,
‘participate’ => true,
‘edit_users’ => true, //+
‘edit_others_favorites’ => true, //+
‘manage_forums’ => true, //+
‘delete_forums’ => true, //+
‘manage_tags’ => true,
‘delete_topics’ => true,
‘close_topics’ => true,
‘stick_topics’ => true,
‘move_topics’ => true,
‘view_by_ip’ => true,
‘edit_closed’ => true,
‘edit_deleted’ => true,
‘browse_deleted’ => true,
‘edit_others_tags’ => true,
‘edit_others_topics’ => true,
‘delete_posts’ => true,
‘throttle’ => true,
‘ignore_edit_lock’ => true,
‘edit_others_posts’ => true,
‘edit_favorites’ => true,
‘edit_tags’ => true,
‘edit_topics’ => true,
‘edit_posts’ => true,
‘edit_profile’ => true,
‘write_topics’ => true,
‘write_posts’ => true,
‘change_password’ => true,
‘read’ => true
) );
$roles->add_role( ‘moderator’, __(‘Moderator’), array(
‘moderate’ => true,
‘participate’ => true,
‘manage_tags’ => true, //+
‘delete_topics’ => true, //+
‘close_topics’ => true, //+
‘stick_topics’ => true, //+
‘move_topics’ => true, //+
‘view_by_ip’ => true, //+
‘edit_closed’ => true, //+
‘edit_deleted’ => true, //+
‘browse_deleted’ => true, //+
‘edit_others_tags’ => true, //+
‘edit_others_topics’ => true, //+
‘delete_posts’ => true, //+
‘throttle’ => true, //+
‘ignore_edit_lock’ => true, //+
‘edit_others_posts’ => true, //+
‘edit_favorites’ => true,
‘edit_tags’ => true,
‘edit_topics’ => true,
‘edit_posts’ => true,
‘edit_profile’ => true,
‘write_topics’ => true,
‘write_posts’ => true,
‘change_password’ => true,
‘read’ => true
) );
$roles->add_role( ‘member’, __(‘Member’), array(
‘participate’ => true,
‘edit_favorites’ => true,
‘edit_tags’ => true,
‘edit_topics’ => true,
‘edit_posts’ => true,
‘edit_profile’ => true,
‘write_topics’ => true,
‘write_posts’ => true,
‘change_password’ => true,
‘read’ => true
) );
$roles->add_role( ‘inactive’, __(‘Inactive’), array(
‘change_password’ => true,
‘read’ => true
) );
$roles->add_role( ‘blocked’, __(‘Blocked’), array(
‘not_play_nice’ => true // Madness – a negative capability. Don’t try this at home.
) );
http://svn.automattic.com/bbpress/trunk/bb-includes/functions.bb-capabilities.php
Hope that helps!
March 11, 2010 at 12:09 pm #85770In reply to: Main Theme
ajithkpunnoose
MemberSorry I haven’t found a plugin. I am searching for one.
But Your post should read
“I want the bbpress theme to be a custom one, but needs the default theme to be available for some selected categories only. Is there a plugin that allows me to use specific themes for specific categories? “
March 11, 2010 at 12:05 pm #33730Topic: Default user permissions
in forum Troubleshootingajithkpunnoose
MemberI need to know what the different types of users : Key-Master, Administrator, Member etc can do on the bbpress forums and topics. I searched for about an hour and can’t find a suitable answer. Any post or link will help.
March 11, 2010 at 2:40 am #85712In reply to: Additional Field
Billy Wilcosky
ParticipantYou what would also work, if there was a topic description plug in. Some forums let you post a title & a short description below that, then your message. I’m surprised bbpress doesn’t already have this type of plug in.
March 11, 2010 at 1:46 am #51860In reply to: Email masked
kevinator
MemberSimilar request here: by default, anyone on any bbPress forum can click on anyone else’s profile and see their email address. Big privacy/security issue. How can you hide/mask all user’s email addresses?
March 10, 2010 at 9:23 pm #79789myselfv1
Memberi’ve reinstalled bbPress 5 times and still having the same error
March 10, 2010 at 5:35 pm #81924In reply to: bbPress_Latest_Discussion with avatar
56alifar
BlockedAlready got it, this function was already integrated in the sidebar widget. See: http://www.jahw.nl
March 10, 2010 at 4:45 pm #85689In reply to: bbpress stand along or plugin
Ashish Kumar (Ashfame)
Participantobviously!
March 10, 2010 at 4:43 pm #32419Topic: bbPress_Latest_Discussion with avatar
in forum Plugins56alifar
BlockedHi,
Is there a way to get the avatar showing in the bbPress_Latest_Discussion plugin?
Thanks for your answer…
March 10, 2010 at 2:18 pm #52375In reply to: A phpBB to bbPress database converter
rspowers
Memberanyone get this to work with phpbb3?
March 10, 2010 at 4:52 am #85726In reply to: Installation Finished – Update
chrishajer
ParticipantWhat makes you think it was integrated correctly? Did it ever work right?
Maybe bbPress (bb_) got installed into the WordPress (wp_) tables?
March 10, 2010 at 4:35 am #85487In reply to: Cue the band…
Alex Luft
ParticipantI hope it will turn out to be just how you say. I’ve been deciding for a while now whether to use bbPress or another forum/board software, and can can finally be sure that bbPress is the way to go.
I’ve tried out SMF and phpBB and those two are so complicated and un-user-friendly, there’s no comparison.
I really hope Automattic doesn’t abandon but rather invests its might and power into bbPress.
March 9, 2010 at 8:13 pm #85688In reply to: bbpress stand along or plugin
wemaflo
Member“Yeah but u can’t have standalone forums in BuddyPress 1.2
They are limited to groups only.”
You can install a standalone bbPress forum and share user database and cookies with BuddyPress quite easy… Just fill the bb-config.php before running the setup.
March 9, 2010 at 6:22 pm #85710In reply to: Additional Field
johnhiler
MemberAh that’s good!
That means you only need meta information for each Topic… that’s a lot easier to pull off than having meta information for each Post. At least, that was true in 0.9… I think bbPress 1.0 has changed how it handles meta data.
Anyway, you should be able to pretty easily commission a plugin to add an extra field to Topic Meta… it’s definitely technically possible, but a plugin to do this doesn’t yet exist.
March 9, 2010 at 1:16 pm #85716In reply to: Smiley`s and pictures
DKB
ParticipantCheck here for images: https://bbpress.org/forums/topic/bb-attachments-plugin-fixed-to-be-compatible-with-bbpress-10
and smileys: https://bbpress.org/plugins/topic/bb-smilies/#post-1697
Regards, DKB
March 9, 2010 at 12:21 pm #85687In reply to: bbpress stand along or plugin
Ashish Kumar (Ashfame)
ParticipantYeah but u can’t have standalone forums in BuddyPress 1.2
They are limited to groups only. Some find it a problem.
March 9, 2010 at 12:19 pm #85693In reply to: Login/Register bridge
Ashish Kumar (Ashfame)
ParticipantJust write the code how you want bbPress to handle passwords (the way your app does) and then put it in functions.php to override the function defined in pluggable file
-
AuthorSearch Results