Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'code'

Viewing 25 results - 29,376 through 29,400 (of 32,438 total)
  • Author
    Search Results
  • #59655

    In reply to: Caching in bbPress?

    Sam Bauers
    Participant

    > I have to eventually code it to store the country data in the usermeta. But there’s the issue that their IP/location can change on a per-post basis

    An upcoming feature is post tagging, you’ll be able to store this data in an “invisible” post tag I believe.

    #59644
    Sam Bauers
    Participant

    Downloadable ZIP of latest trunk is via a link at the bottom of that page.

    The trunk is pretty stable actually, and is more bug free than the latest release usually.

    You are better off setting up a subversion client and “checking out” a copy of the code. You can then keep up-to-date on changes in the core with the click of a button.

    Search the forum for info on using SVN to checkout a copy.

    A lot has changed, the best thing to do is to trawl through the changelog on the Trac site. Only a couple of things have changed dramatically, how views works is one.

    BB_Query is in the latest trunk in bb-includes/classes.php

    #59653

    In reply to: Caching in bbPress?

    _ck_
    Participant

    How do you handle caching a page with items only a moderator should see, and then pages that are okay for subscribers, and then pages that are for open public? The cache will have to be rather smart. And then you can’t show any personal information on the page like the user’s name if it’s going to be cached.

    bbpress still has some non-optimised routines that don’t use the soft cache, for example on the topic page, I’ve noticed it does a query at the end to fetch all the forums names for the moderator “move this topic” tool. Those should definitely be in the cache but it’s not used.

    For a logged out user, I have my topic pages down to 15 queries. That’s the most “expensive page”. It uses 3 more queries for a logged in user (one of them listed above).

    But I’ve got this geoip flag function that I wrote to show country flags and unfortunately it’s very “expensive” and adds an extra query for every unique poster on the topic page. There’s no way to stack requests since it must search by range (researched it like crazy but no solutions). I have to eventually code it to store the country data in the usermeta. But there’s the issue that their IP/location can change on a per-post basis and that sometimes I have to patch the geo information because the db gets it wrong. Oh well.

    #59643
    riddle
    Member

    Thanks, Sam.

    I’m not sure whether to even touch your last suggestion, about using the latest trunk rather than the latest release. I see the trunk code browser at https://trac.bbpress.org/browser/trunk but I don’t know where to find it as one downloadable archive. And surely the trunk has new bugs and unfinished features, which is why it hasn’t been turned into a new release, right?

    Can you give us any hints about what has changed that plugin writers need to know about?

    P.S. Where do I find BB_Query?

    #59642
    Sam Bauers
    Participant

    There are lots of built-in functions for querying the topic meta, they are all in the same place in the code, so searching in the code for the functions I mentioned above will reveal them all.

    Joining tables to create one query is better than using two queries to retrieve the same data. The new BB_Query class could easily handle the query you wrote up there.

    By the way, I suggest you build your plugin against the latest trunk rather than the latest release.

    #59665
    howtogeek
    Member

    I’m probably going to have to create a bunch of new plugins over the next month… of course I’ll post them here for everybody to share =)

    #59664
    citizenkeith
    Participant

    I suppose I should write a plugin for it then.

    I’d certainly welcome it! :)

    #59035
    Null
    Member

    How about “locking” a forum so that only admin/mods can create topics in it and members can ONLY reply on these topics? (so not create them)

    So making a forum half-private :)

    #59640
    Null
    Member

    ….. :)

    #59639
    fel64
    Member

    What? do_action syntax is like this:

    do_action( $tag, $function_name [, $priority] );

    $latlong is the value, in this case latitude/longitude.

    #59362
    Null
    Member

    I have that TortoiseSVN installed, still need to figure out how to let this update the trac aswell :)

    #59638
    Null
    Member

    Hmm also don’t forget the do action at the end of the function:

    do_action('bb_function_name', $topic_id, 'topic_geolocation');

    I also have a question about this:

    // To add
    bb_update_topicmeta($topic_id, 'topic_geolocation', $latlong);

    What does/should $latlong do/be used for?

    Greetz

    #59650

    In reply to: Caching in bbPress?

    fel64
    Member

    There is soft user/topic caching, but there’s no hard caching yet. If you look at the code, in cache.php, you’ll see that it’s written to enable file-based caching in bb-cache/, but doesn’t seem to do so at the moment. It probably will in future I guess? If you fiddle you could probably turn it on. mdawaffe is now working on xml-rpc when he’s working on bb at all, so it’s not the next feature at least. I also think he was planning something else for .8.4.

    #59360
    Null
    Member

    Testing this tomorrow after work…. nah after diner after work :)

    Thx for the help mate!

    _Null

    ps. how to open a .diff?? (windows machine)

    #56379

    In reply to: Plugin: bbMenu 1.1

    Null
    Member

    Testing this tomorrow after work…. nah after diner after work :)

    Thx for the help mate!

    _Null

    #59359
    M
    Member

    The new changes have been made:

    http://www.box.net/shared/cgrj1na0t7

    I think that should cover the problems. I took the liberty of changing other things as well… hope you don’t mind. I removed some redundancies in the CSS, and changed some little code things.

    There’s the modified bbmenu.php file, as well as the diff file to make it a little easier for you to see what I changed. If you cant make sense of the diff there are diff file viewers that color the text and make it more human-readable.

    #59619

    In reply to: AdityaNaik.com

    howtogeek
    Member

    so1o,

    I have been looking for something similar to the ChipIn gadget… I am so happy that I found your page just for that =)

    Very nice theme also.

    #59648

    In reply to: Caching in bbPress?

    _ck_
    Participant

    bbpress uses so few queries that caching has got to be a low priority, especially when the point of a forum is to have very dynamic updates customised for the logged in member – it’s very different than a wordpress environment

    as long as you have the mysql cache turned on, it should be very responsive – just look at the main wordpress support forum – eaccelerator would take care of caching the php opcode and that can’t be too far behind a static page

    the bonus is that on an active forum, everything will be very dynamic as it happens…

    #2194
    howtogeek
    Member

    Looking in the code, I see a lot of references to object caching, but I don’t think it’s actually used anywhere.

    Does anybody know the state of the caching system, or what the problems were that required disabling it? Will it ever be enabled again?

    And yes, I already posted to the mailing list quite a while ago and got nothing.

    #59635
    riddle
    Member

    Cool, this is exactly the kind of bbPress-specific best practices I need to know and am not going to get from “PHP and MySQL in 30 Minutes”!

    Is topicmeta documented anywhere? I’m looking at the code and can’t say it’s entirely clear…

    #51584
    fel64
    Member

    Turn the time-string into a timestamp to be turned into a time-string.

    <?php echo date( 'g:i A', strtotime( $latestpost->post_time ) ); ?>

    There’s a template function that gives you the link to the latest post in the topic. I believe it’s called get_topic_last_post_link() but I’m not sure.

    #52676
    fel64
    Member

    Actually, post_form is called immediately before the form is closed.

    https://trac.bbpress.org/browser/trunk/bb-includes/template-functions.php#L163

    #59634
    fel64
    Member

    Yeah, really avoid doing anything to the tables and use topicmeta instead. By far easiest for you and nicest for the users, too, plus the additional overhead is minimal.

    The metadata is returned when you call get_topic() like Sam said.

    $topic = get_topic();
    echo $topic->topic_geolocation; //echoes whatever

    #59616

    In reply to: AdityaNaik.com

    fel64
    Member

    Loading bb when you load wp, coolio. That’s what I wanted to know. :)

    #59358
    M
    Member

    @Null – Working on it…

    Don’t lose hope :)

    Sorry about the “day or so”…

Viewing 25 results - 29,376 through 29,400 (of 32,438 total)
Skip to toolbar