Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'bbpress'

Viewing 25 results - 58,676 through 58,700 (of 64,448 total)
  • Author
    Search Results
  • #62694
    Sam Bauers
    Participant

    bbPress uses encrypted cookies, you’ll need to give us a little more information on what you are trying to do if we are to help you.

    #2853
    purus
    Member

    I would like to be able to check a user’s login status without using the bbPress functions. Normally I would use a simple isset($_SESSION) check. What are the names of the variables that bbPress sets to indicate that a user is logged in?

    Thanks.

    #2852
    tmeister
    Member

    Hi,

    I decide to give it a shot to bbPress and i like it. :)

    See my theme in http://klr20mg.com/foro/ is a spanish blog/forum

    see ya.

    #2851
    versatilia
    Member

    Hi there,

    I’ve just set up bbPress as a support forum using the support forum plugin. So far so good. I have a problem though, (not major because of sticky posts) I created a forum called README where I intend to post hints, faqs and the usual spiel you get on the top sticky in most forums.

    I created a topic and a post in this readme forum and then closed the topic and made it sticky. It seems that because it’s closed it won’t show up when I’m on the forum view (forum.php). Is there an edit I can make to a filter somewhere? Seems like a wee bug/oversight to me.

    The other thing I know has come up before many times but I could not get much useful info out of the topics. Ideally I’d want to be able to make it so no one can start a new topic on the readme forum but I don’t want to make the forum private or inaccessible to normal users. Is this possible with either of the private forums plugins yet? I can live with it if not but it’s a niggle.

    #62580
    chrishajer
    Participant

    I think you should start a new topic.

    If you deleted the WordPress database and your your bbPress installation was in the same database, then your bbPress installation is gone. You might restore from backup, but other than that you need to reinstall fresh.

    #56764

    In reply to: Plugin: Avatar Upload

    _ck_
    Participant

    Another fix for another caching bug:

    The query below is never cached – hence if the avatar is for a user other than the current one and is shown multiple times on a page, it causes a query each time since it does not pass through the bbpress caching mechanism.

    (around line 117)

    $bb_query = "SELECT meta_value FROM $bbdb->usermeta WHERE meta_key='avatar_file' AND user_id='$id' LIMIT 1";
    if ( $avatar = $bbdb->get_results($bb_query) ) {

    replace with this code to properly cache and radically reduce queries on a busy topic:

    if ( $avatar = bb_get_usermeta( $id, "avatar_file")) {
    $a = explode("|", $avatar);

    note that $avatar[0]->meta_value is then simply replaced with $avatar

    This may require newer versions of bbpress (build 904+) but that was seven months ago as of my post now.

    I think I am going to whip up a little “import gravatar” feature for this.

    #62682

    In reply to: Installations Problem

    chrishajer
    Participant
    #2850
    sessionx1
    Member

    Warning: Invalid argument supplied for foreach() in /www/htdocs/w00679c6/wpportalbbpress/bb-settings.php on line 169

    Warning: Cannot modify header information – headers already sent by (output started at /www/htdocs/w00679c6/wpportalbbpress/bb-settings.php:169) in /www/htdocs/w00679c6/wpportalbbpress/bb-admin/install.php on line 10

    Warning: Cannot modify header information – headers already sent by (output started at /www/htdocs/w00679c6/wpportalbbpress/bb-settings.php:169) in /www/htdocs/w00679c6/wpportalbbpress/bb-includes/functions.php on line 1910

    #2849
    tjgedny
    Member

    I’ve got an error occurring when users click to get the email to reset their password. When they then click on the link in the email they sometimes get a page with a bbpress header which simply displays the message ‘Key Not Found’. It doesn’t appear that the link is breaking in the email – anyone have any ideas what could be causing this problem? thanks in advance for any help!

    #61096

    In reply to: 9rules.com

    Sam Bauers
    Participant

    Only if they choose to redistribute it. If they just run it as a service where the code is never sold to it’s customers – either as source or compiled – then they are under no obligation to release the source. I doubt it serves their interests to release the theme and in my opinion that’s fair enough and in the spirit of the GPL.

    Besides this, it is arguable whether they would be bound by the GPL or not. As a theme strictly speaking isn’t a modification of bbPress (it’s just separate code that is compatible with the theme architecture) and the idea of “linking” as stated in the GPL is pretty vague when it comes to PHP applications. It was originally devised to cover more traditional application models where linking to libraries is more clearly defined.

    #62676
    _ck_
    Participant

    Gotta love kiwis, looks great!

    I doubt bbpress will ever have native image support (you mean inline right?) That’s just too much “heavily lifting” which is always deferred to plugins.

    ps. “Tiny”MCE is such a misnomer. It’s 125k of code!

    #58233

    In reply to: bbSync

    fel64
    Member

    Sorry, I should have been more thorough. Follow these instructions at the bottom of the page.

    https://bbpress.org/documentation/integration-with-wordpress/#func

    #2848
    #2847
    Mufasa
    Member

    We’re now running bbpress in our support forums and I must say I absolutely love it – we have integrated it quite nicely with wordpress.

    My Wishlist:

    • ability to add a search form – in WordPress integration mode
    • How I wish TinyMC was integrated
    • Even nicer WordPress integration
    • Native image support

    Check it out:

    instinct.co.nz/blogshop/forums/

    #62670

    In reply to: WP Stats

    fel64
    Member

    Yeah I think it would, because bb uses a lot of similar mechanisms, but making it gather stats on bb would be most of the work anyway (so you’re probably not saving much work this way). You’ve got to find the right filters and process the data in a specific way anyway; it’s not complicated, it just takes someone to do all that legwork.

    You know about bb’s (rudimentary) stats, don’t you? Just hit up http://example.com/bbpress/statistics.php.

    #2846

    Topic: WP Stats

    in forum Plugins
    Aaron
    Participant

    Wild question, does anybody know if it would be possible to modify the WP Stats plugin to work with BBPress? Quickly looking at it I dont know why not, but I have a pretty rotten ability of making plugins and or converting plugins. My wishes frequently outpace my abilities (or reality).

    #2560
    #57597
    chrishajer
    Participant

    edwinfoo: it looks like there’s a problem with the CSS on your site. The #thread li referenced above by fel64 won’t work for you because it looks like you have renamed it to #thread1 (maybe just a typo in your theme.) So, the CSS for #thread won’t apply to #thread1. If you add CSS for #thread1 or remove the 1 from the end of the <ol id=”#thread” in your theme, it works fine (I just tried it.)

    This <ol id="thread1" start="1"> needs to look more like <ol id="thread" start="1">.

    If you need numbers there for each unique thread, you’re going to have to do it differently, not appending a thread number to the end of the id “thread”: that changes the id from #thread to #thread-(whatever number).

    #57594
    chrishajer
    Participant

    > I can’t see a good reason why I should spend

    > money to upgrade because it’s not something that I can do.

    bbPress == Free Software.

    And actually, spending money when you can’t do something yourself is pretty much how it works. If I can’t rebuild the engine on my car, I pay someone to do it. I don’t think anyone was suggesting you spend more money: upgrading to the latest release is good advice when the software is in BETA. It makes troubleshooting things easier to know you have the latest release. In this case though, I don’t think upgrading will have any effect on this problem. It can be solved with CSS, not new functions or bug fixes from the latest bbPress.

    #60877
    Andrew
    Member

    I can live without integration but it would be nice to have shared header and sidebar code. I just wanted to log my observation in case someone else had the same problem.

    I imagine with all the new focus on forum software these issues will eventually get mowed down.

    #60876
    _ck_
    Participant

    It sounds vaguely to me like a timeout issue, where something in the ajax is waiting for a response from the server.

    It would probably take more debugging time that it’s worth, you’d have to watch requests in realtime either from your side through a firewall or from the server side logs (ie. tail).

    I haven’t kept up with the ajax changes in wordpress since 2.1 so I have no idea what’s going on there – wish I could be more help. Ajax is usually the first thing I gut out of wordpress (and bbpress).

    #62666

    In reply to: Databases

    chrishajer
    Participant

    Sounds like you have the database name in there incorrectly. If WordPress is working, then you just need to enter the exact same details in the bbPress config.php for the database.

    #60875
    Andrew
    Member

    I have reverted to straight BBpress. Topic page loads went from 4-6s back to 200ms. The js components, for reasons I do not understand, load much more slowly with a full wp include.

    #60874
    _ck_
    Participant

    You should always evaluate the “need” to run WP with BB at the same time. I don’t mean shared login and common cookies which is simple integration, but instead having bbpress load all of wordpress for every page page. That’s a HUGE number of files and mysql calls being generated for every page, multiplied by the number of plugins you have with their own mysql stored settings.

    Many times there are ways around loading both at the same time with a few tricks and plugins. If you are on a shared/vps host that’s giving you limited resources you may find streamlining absolutely necessary to deal with any bursts in traffic.

    #60873
    Andrew
    Member

    I just completed a WP/BB integration and have noticed a speed decrease.

    According to Firebug, most of the delay is in the downloading of the .js ajax components.

    The other thing I noticed is gmt_offset no longer seems to work- the time displayed is always GMT.

Viewing 25 results - 58,676 through 58,700 (of 64,448 total)
Skip to toolbar