Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 53,501 through 53,525 (of 64,394 total)
  • Author
    Search Results
  • #70307
    Tom Lynch
    Participant

    Perhaps I am taking a liberty here but please, o please could you make a WPMU + bbPress integration video because I cannot, I repeat cannot get cookie integration to work no matter what I do and no one else seems to have much luck either.

    Thanks!

    #71363
    chrishajer
    Participant

    What happens when you try to do those things?

    What version bbPress did you install? If you integrated with WordPress, what version WordPress did you install?

    Does the problem happen with the default theme?

    What sort of hosting are you on, Windows or Linux or other?

    #71357
    chrishajer
    Participant

    /bbpress/bb-admin/includes/defaults.bb-schema.php

    is where the table names are all set. But changing the names there is only going to change the name of the tables that are created. You would need to change every reference to a table to this new uppercase name. I can’t imagine how difficult that would be or what would happen with any plugin you install or what happens when it’s time for an upgrade.

    What host is this that changes the table names (not the database name) to uppercase? I’ve never heard of such a thing. Is there a page on their site or an email from support describing their policy?

    It’s ok to have a database name in uppercase, since you only reference that once, but tables names being restricted to uppercase sounds like a very strange thing to me.

    #71293
    chrishajer
    Participant

    So, this table exists: wp_lvtwfff_usermeta

    or this one: wp_usermeta

    ?

    bbPress is looking for wp_lvtwfff_usermeta, but if it’s really named wp_usermeta bbPress won’t find it and will give the error you showed.

    #71351

    In reply to: Upload Problem

    chrishajer
    Participant

    Yes, I can’t imagine where you are trying to upload something and getting that mime error back. Do you have the “bbPress attachments” plugin installed?

    https://bbpress.org/plugins/topic/bb-attachments/

    If so, and that’s causing the problem, I suggest posting your issue in the forum for that plugin (URL above.)

    #71288
    chrishajer
    Participant

    There is a plugin called “my views” that has many view options:

    https://bbpress.org/plugins/topic/my-views/

    Or there was “Posts since last visit”:

    https://bbpress.org/plugins/topic/posts-since-last-visit/#post-65

    But that’s pretty old, not sure if it still works.

    Or there was “Indicate new posts”:

    https://bbpress.org/plugins/topic/indicate-new-posts/

    Both required “Simple online list”:

    https://bbpress.org/plugins/topic/simple-onlinelist/

    #4690
    Burt Adsit
    Member

    It’s not the first time and it won’t be the last. I’m confused.

    I’m trying to add forum moderator capabilities to the currently logged in user in a specific forum only. I don’t want to give them the moderator role. I just need to give them additional caps in a specific forum. When the user is tooling ’round in the forum I want to give mod rights to, assign them dynamicly. When they are no longer in that forum, take ’em away on the fly.

    If found a couple of things to guide me. One was forum-moderators.php by Aditya Naik. This give specific users a forum moderator role thru the bbpress backend. That stores the rights to those caps as a meta value and assigns them when the user is on the forums. Great. There’s a fn in there that determines what forum the user is in and responds to a filter called ‘bb_user_has_cap’. I can’t find neither hide nor hair of using this filter anywhere except in a couple of plugins by sambauers. http-authentication and ldap-authentication.

    So, I found the filter ‘bb_current_user_can’. It looks to me like everyone on the planet is using this filter. The comment in the fn bb_currrent_user_can() says use ‘bb_user_has_cap’. Well, nothing is using that as far as I can determine.

    Anyway, my confusion comes in when I try to implement my filter. I’m gonna give the user the following caps:

    $forum_mod_caps = array(
    'manage_topics' ,
    'edit_closed' ,
    'edit_deleted' ,
    'browse_deleted' ,
    'edit_others_tags' ,
    'edit_others_topics' ,
    'manage_posts' ,
    'ignore_edit_lock' ,
    'edit_others_posts'
    );

    For me, reading the code for bb_current_user_can() is like the time I got curious about implementing tcp/ip for the Atari ST. I got a headache. My skill level is not up to understanding what is going on down there. Some guidance would be appreciated.

    We have 3 args to this filter:

    $retvalue, $capability, $args

    Looks like $retvalue is being passed up the filter chain. If I don’t want to touch the call I just pass $retvalue back.

    I was digging ’round and looks like $capabilities is the cap being queried. $args is specific to each call and may vary depending on what cap is queried.

    These are questions in case you haven’t noticed. My understanding breaks down when I get to what I’m being passed and what I’m supposed to do with them other than return ‘true’ if it’s a cap I want to let the user have.

    I should just return true if it’s a cap I want the user to have. It’s up to me to determine if it’s appropriate at their location in the universe. Yes?

    #71315
    deadlyhifi
    Participant

    Can someone just confirm that user registration should work through bbPress after integrating WP2.7 and bbP 1.06a?

    …and if so why mine isn’t!!??!!

    Malice
    Member

    I tried to link the comment author’s name on my wordpress to the wordpress profile page (or “author” page), yet I have not yet found a solution for this. I posted my issue in the wordpress forum as well: http://wordpress.org/support/topic/235251?replies=1

    A wonderful alternative would be to just link a commenter’s name to the bbpress profile page instead.

    I have no knowledge of php, yet even I can imagine that fetching data from one platform to another can be quite complicated.

    Any thoughts?

    #4687
    deadlyhifi
    Participant

    All integration guides appear to have the userbase in WP. I was in the situation where my userbase was in bbPress, so I needed to get all my bb_users into wp_users.

    The following refers to WP2.7 and bbPress 1.06a.

    The process is actually quite straight forward but do make backups of your database beforehand!

    1. First delete ‘wp_usermeta’ and ‘wp_users’ tables (having made that backup!)
    2. Change the name of ‘bb_usermeta’ to ‘wp_usermeta’ and ‘bb_users’ to ‘wp_users’.
    3. The tables structures from bbP are the same as WP apart from one field in the ‘_users’ table. So we need to add FIELD: user_activation_key TYPE: varchar(60) NULL: NO after the ‘user_registered’ field.
    4. The problem now is that none of these users have their WP roles defined.
    5. To do this we need to insert the ‘meta_key’ and ‘meta_value’ to ‘wp_capabilities’ and ‘a:1:{s:10:”subscriber”;b:1;}’ for each user.
    6. wordpress_capabilites.sql contains an SQL insert statement for 5000 users. If your userbase is less than that you only need to run it for your number of users (although we deal with overruns in a minute).
    7. Once this has run each user will have ‘subscriber’ status within wordpress. You need to manually change your bbPress key holder (most likely user_id 1) ‘wp_capabilities’ to ‘a:1:{s:13:”administrator”;b:1;}’. This gives that account administrator status within WP.
    8. It’s highly likely that you’ll have deleted some users in the past, or run too many INSERTs from the wordpress_cabalilities file, so we need to delete all those ‘wp_capabilities’ that aren’t mapped to an exisiting user.
    9. SQL: ‘select * from wp_usermeta where user_id not in (select ID from wp_users)’ will list all these non-existent users.
    10. It probably a good idea to do a full backup of your tables right now just in case.
    11. Now run this SQL: ”delete from wp_usermeta where user_id not in (select ID from wp_users)” – this will delete all those stray entries.
    12. Done.

    All worked out with the help of someone I work with, so I can’t take all the credit ;)

    Good luck.

    #4686
    deadlyhifi
    Participant

    Functions (optional)

    …In order to do it, you need to put 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).

    Doing this will add quite a lot of weight to your bbPress installation as it will cause WordPress to load in it’s entirety. Your best option is to try to emulate the functionality you require inside a bbPress plugin.

    Adding wp-blog-header.php to my bb-config causes lots of functionality issues.

    Therefore has anyone made any of these plugins? I’m mostly looking to get wp_list_pages working.

    #4684

    Lets say in theory I was going to try and integrate bbPress’s functions into WordPress.

    Theoretically, where would I look if I didn’t want bbPress to clear out the wp_head function? :)

    #70735

    In reply to: bbpress vs phpbb

    eclipsenow
    Member

    Hi,

    I am using phpbb3 for now, but I’m not really good at database stuff and admin stuff. I love all open source projects, especially phpbb3, bbpress, wordpress, Joomla, Drupal, etc… even though I’m not very “Geeky” yet and am only just beginning to learn the basics of CSS (let alone php etc).

    So… I am speaking from the perspective of a non-technical forum administrator frustrated by various interactions of various software. I don’t mind doing the grunt work of setting things up IN the software, but don’t know the code to work ON software. EG: Once phpbb3 is installed, I can easily set up forums, permissions, etc. It’s just easy point and click stuff. But messing around in mysql and database stuff still terrifies me, I’m afraid of breaking something. It’s all too big. I just want to install it and have it work.

    I appreciate that there are various philosophies behind each style of software, but here goes…

    MY ULTIMATE WISH LIST

    1. Nothing to do with you guys, but number 1 on my list is to have Fantastico (or something equivalent) that can make installation of WordPress / Joomla / Whatever EASY! (My client is a volunteer campaigning group that just happened to choose Brinkster which don’t use Cpanel, let alone have Fantastico).

    2. After EASY fantastico installation, I install WordPress.

    3. Then within WordPress I browse across to the various add-ons pages in the WordPress Control Panel (A VERY cool new feature of WordPress that Drupal and Joomla should add to their systems!) and then click “INSTALL FORUM?” and WordPress suddenly installs a completely compatible forum, just like that, with all the power of phpbb3 built-in.

    4. I then choose 1 of say 20 or 30 “looks” (templates, themes, whatever) that are already pre-configured to allow sign-in of users on all pages, especially the forum page. If I want to change the colour of a background element or use a new image in the header, I just point and click to template editing and do it ala Blogger. (No CSS required).

    This sort of software is on the way. Joomla now has “Agora” which is already fairly advanced. Once Joomla is installed through the 50 second Fantastico installation, Agora only takes about 50 seconds to install as well. EVEN I CAN DO IT! But the Joomla / Agora combination does not yet have Step 4, which is killing me… I have to muck around with all sorts of plug-ins and extra bits to get a horizontal log-in menu I can put up just under my header (so it’s in the same place no matter what template I’m in).

    I saw the video of how to integrate WP and BBpress, and ran a mile screaming! It just looked very intimidating.

    So anyway, the Joomla / Agora combination is hardly perfect, but as you know these things keep on developing and Hazzaa over at Agora is MANIC in the rate he’s developing his product. Version 3 is nearly out, and it’s only been 10 months.

    Just thought I should give you guys the heads up. The competition is great, because it forces us all to evolve.

    EG: I LOVE the sound of WordPress’s new one click upgrade function, and hope Joomla gets that soon! (It’s just me and database stuff again… eeerrgh!) Combine that with easy forum upgrades, backups, etc, and software that’s Mac-like in that it “just works”, and I’m a happy camper.

    PS: I forgot to check this thread in case there were replies, because I automatically get an email from every other forum I belong to. Old habits die hard. Agora has an automatic emailing function built in, it’s not a plug in. ;-)

    #71356
    ilo
    Member

    checked the database and it seems the following line went from

    bb_capabilities a:2:{s:13:”keymaster”;b:1;s:8:”throttle”;b:1;}

    to

    bb_capabilities a:2:{s:9:”keymaster”;b:1;s:8:”throttle”;b:1;}

    The first one being when it was not working

    #71355
    ilo
    Member

    Ok i logged out of wp and logged back in and I am now able to log in to bbpress again, is there any reason for this?

    #71354
    ilo
    Member

    Fyi this seem to be affecting all users rather than just the admin!

    #4683
    #71349

    In reply to: Upload Problem

    chrishajer
    Participant

    What version of bbPress are you using and are you talking about a specific plugin that allows you to upload?

    #71325
    chrishajer
    Participant

    @ganzua – do you have examples of plugins that do that?

    #71313
    deadlyhifi
    Participant

    just found this post regarding the ‘inactive’ thing, although their fix hasn’t fixed my issue.

    https://bbpress.org/forums/topic/successful-convert-smf-gt-phpbb2-gt-bbpress#post-14831

    #4679
    supreme87
    Member

    Hi all,

    we have launch the new version of ours blog with added integration with bbpress (alpha 1-6). We would appeal to us to have some opionions about this and others opionions to improve bbpress and even to make it better

    thanks!

    url http://www.strabello.it/forum/

    #71324
    _ck_
    Participant

    Not only won’t it work, you’ll find caching a forum vs a blog rather pointless unless you have very few members.

    #4678
    giofilo
    Member

    Hi!

    I installed wp 2.7 and bbpress 1.0 (alpha 6) and all seem to work.

    I have only a little problem: when a user changes his website in his profile editor, bbPress doesn’t show the website link but the profile link!

    Anyone can help me?

    Thank you,

    Giovanni

    Italy

    #71323
    ganzua
    Member

    Ahhh, he istalled wp plugins in bbpress folder. Sorry, my post was referring to wp plugins that are installed in wp plugins. Some of them cause errors when you browse bbpress.

    #71328
    ganzua
    Member

    BBpress 1.06a and Topic views plugin 1.6.3. I couldn’t paginate last posts in front-page.php

    If you know how, please share some knowledge :) What I wanted is to have an unlimited number of posts in the front-page loop and set a pagination. I think this feature would be a great improvement for bbpress.

    I’m interested too in a last 10 posts loop for my 404 page :)

Viewing 25 results - 53,501 through 53,525 (of 64,394 total)
Skip to toolbar