Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'test'

Viewing 25 results - 9,976 through 10,000 (of 11,578 total)
  • Author
    Search Results
  • #67435

    In reply to: expired topics

    _ck_
    Participant

    Untested. auto-closes a topic on-the-fly when someone visits it and it’s last post is 90 days old (adjustable)

    add_action('bb_head','auto_close_topic');
    function auto_close_topic() {
    global $topic;
    if (is_topic() && $topic->topic_open===1) {
    $old=time()-3600*24*90; // 90 days default
    if (strtotime($topic->topic_time)<$old) {
    bb_close_topic($topic->topic_id);
    $topic->topic_open=0; // just in case the cache doesn't clear
    }
    }
    }

    #67392

    In reply to: Server Overload

    lstelie
    Member

    _ck_

    In latest bb-config.php there is no /* Stop editing */

    Do I put $bb->load_options = true; at the end of the file ?

    #67379
    _ck_
    Participant

    Hidden Forums has not been tested yet again 1.0 alpha.

    I simply don’t have time to modify every plugin for all the changes.

    This is why people should not use the alpha yet for regular sites.

    Update: I’m unable to reproduce your problem however.

    I have no extra queries with using Hidden Forums on the 1.0 trunk. Are you using the Alpha from the download on bbpress.org, or are you using the SVN trunk?

    #66705

    In reply to: bbPress 1.0 alpha

    ddemeo
    Member

    How well do existing themes work with the latest alpha release? And is that likely to change with the final release? I’ve made lots of modifications to my existing theme, and would hate to have to start from scratch. (Although, admittedly, I knew I was running that risk using a beta release of bbpress!)

    #67421
    cartmanffc
    Member

    2 more working plugins:

    – human-test

    – temporary-ban

    #3943
    cartmanffc
    Member

    I thought it might be helpful; I tried the following popular plugins with the latest release of bbPress and they seem to work perfectly:

    – bb-smilies

    – bbcode-buttons

    – mini-track

    – my-views

    – post-count-plus (with some minor changes)

    – support-forum

    – bb-reputation (to some extent)

    – bb-signatures

    – bb-topic-views

    – bbcode-lite

    – hidden-forums

    – report-post

    – unread-posts

    what is missing most is the working plugin for quotes…

    #3942
    _ck_
    Participant

    The following is just my personal opinion but there seems to be a growing misunderstanding around here that makes me want to petition Sam and Michael to take 1.0 alpha off the download section and limit it to people who know how to use the SVN.

    “Alpha” means “NOT ready for regular use”

    I don’t know how to explain that any more clearly.

    It only exists for people to test and report problems for eventual repair.

    Do NOT use the Alpha:

    1. on a forum with active members

    2 on a forum that you would care if it’s down for a week

    3. if you expect it to be trouble-free

    4. if you expect immediate fixes for your troubles with it

    5. just because you insist on using WP 2.6 and it’s the only version that will work with it

    About 1 out of 5 of my plugins has some kind of unforseen problem with 1.0 alpha because of extensive internal changes with how it does things

    Last but not least, even I do not run 1.0 on any of my public forums yet, only for testing. If that doesn’t discourage you from insisting on using it, well then you’ve been warned.

    A month from now 1.0 might be perfectly stable and lovely. Right now it is NOT. You’ve been warned.

    #3932
    Andrew
    Member

    I am currently running the following:

    WP 2.3x (using due to theme limitations)

    BBPress 0.8.3.1

    I am planning to upgrade the theme to be compatible with the latest version of WordPress. Once I do this I need to upgrade BBpress. Given the availabiltiy of the Alpha and the 2.5 restriction of BBpress 0.9 I was looking for suggestions on how to go about things.

    Option 1 – Is this a valid path?

    1. Upgrade to WP2.5 & BBpress 0.9

    2. Wait for stable 1.0 Beta of BBpress

    3. Upgrade to WP 2.6x and BBpress 1.0

    Option 2

    1. Upgrade to WP2.6 & BBpress Alpha

    Questions:

    1. Is a 2.5 version of WP still being distributed?

    I hope this was clear. Thanks.

    #65135
    citizenkeith
    Participant

    Where can I download the latest version?

    #3749
    bmc_webdev
    Member

    I have an installation of bbpress 0.9 (installed independent from WordPress).

    When I pull the rss feed, I get code that looks like this:

    <item>
    <title>Anonymous on "Hello"</title>
    <link>http://forums.brynmawr.edu/topic.php?id=2#post-8</link>
    <pubDate>Fri, 29 Aug 2008 21:45:22 +0000</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <guid isPermaLink="false">8@http://forums.brynmawr.edu/</guid>
    <description><p>test
    </p></description>
    </item>

    The <p> is a <p> tag that is entity-encoded (I presume so that <p> won’t be parsed as an XML tag by an XML parser).

    This is causing an issue with the feed parser that I am using (lastRSS): the parser is passing the <description> contents through unchanged, and so I’m getting literal “<p>” and “<p/>” on the pages that use lastRSS.

    I believe that the standard method of embedding HTML into an XML feed (or any XML document) is to use CDATA blocks:

    <description><![CDATA[<p>test
    </p>]]></description>

    and this is the way feeds from wordpress, blogger, etc are formatted. bbpress should really do the same thing so that feed parsers like lastRSS will pass through correct HTML (in this example, text wrapped by a paragraph tag, rather than text with character entities that cause the browser to display the literal characters)

    Can the feed generator code be changed to use CDATA blocks?

    Thank you.

    #67127
    benzilla069
    Member

    I’m just trying ghetto solutions at the moment just to see if I can actually get something to work.

    $SQLtopic_id = 3;

    $SQLtopic_title = 'Test';

    $SQLtopic_slug = 'topic-test-slug';

    $SQLtopic_poster = '1';

    $SQLtopic_poster_name = 'admin';

    $SQLtopic_last_poster = 1;

    $SQLtopic_last_poster_name = 'admin';

    $SQLtopic_start_time;

    $SQLtopic_topic_time;

    $SQLtopic_forum_id = 1;

    $SQLtopic_topic_status = 0;

    $SQLtopic_open = 1;

    $SQLtopic_last_post_id = 1;

    $SQLtopic_topic_sticky = 0;

    $SQLtopic_posts = 1;

    $SQLtopic_tag_count = 0;

    //$SQLtopic_id, $SQLtopic_title, $SQLtopic_slug, $SQLtopic_poster, $SQLtopic_poster_name, $SQLtopic_last_poster, $SQLtopic_last_poster_name, $SQLtopic_start_time, $SQLtopic_topic_time, $SQLtopic_forum_id, $SQLtopic_topic_status, $SQLtopic_open, $SQLtopic_last_post_id, $SQLtopic_topic_sticky, $SQLtopic_posts, $SQLtopic_tag_count

    // set database server access variables:

    $host = “”;

    $user = “”;

    $pass = “”;

    $db = “”;

    // open connection

    $connection = mysql_connect($host, $user, $pass) or die (“Unable to connect!”);

    // select database

    mysql_select_db($db) or die (“Unable to select database!”);

    mysql_query(“INSERT INTO bb_topics (topic_id, topic_title, topic_slug, topic_poster, topic_poster_name, topic_last_poster, topic_last_poster_name, topic_start_time, topic_time, forum_id, topic_status, topic_open, topic_last_post_id, topic_sticky, topic_posts, tag_count)

    VALUES ($SQLtopic_id, $SQLtopic_title, $SQLtopic_slug, $SQLtopic_poster, $SQLtopic_poster_name, $SQLtopic_last_poster, $SQLtopic_last_poster_name, $SQLtopic_start_time, $SQLtopic_topic_time, $SQLtopic_forum_id, $SQLtopic_topic_status, $SQLtopic_open, $SQLtopic_last_post_id, $SQLtopic_topic_sticky, $SQLtopic_posts, $SQLtopic_tag_count)”);

    mysql_close($connection);

    Adds nothing to the database.

    #67348

    In reply to: All setting use cache

    leoleoleo
    Member

    OK! Super thanks x 2 times! _CK_

    I like install and test plugins, but I know if install a lot plugins will make the forum slow.

    If the bbPress can every page keep 5-10 queries is best of best of best.

    #53647
    Sam Bauers
    Participant

    If you upgrade to the latest bbPress trunk you will have access to the new BBXF exporter. There is also a standalone BBXF importer for phpBB, but I have not tested it yet. You will have to do some work to get it running at this early stage of development, this should be a lot easier as we move forward with this idea.

    For more check here http://bbxf.org/

    Sam Bauers
    Participant

    Check the new project here.

    http://bbxf.org/

    Thanks to GSoC student Dan Larkin for his work over the Summer.

    BBXF is now available for review and testing in bbPress trunk and we plan to make it a bundled plugin in bbPress 1.0

    #67293

    In reply to: Is BBPress Any Good?

    chrishajer
    Participant

    > What do I get with bbPress?

    Free forum software that is under active development

    > Is it secure?

    Yes.

    > Will it get spammed to death?

    No. It comes with Akismet to prevent spammers from posting, and you can use the Human Test plugin to prevent them from registering in the first place.

    > Is it stable?

    Yes. Even the latest Alpha version has been stable for me.

    > Is it designed for personal sites or can businesses

    > use it with confidence?

    It’s designed for people who need forums. Businesses and individuals alike use it. Check out these people using bbPress.

    #67290
    meitershaker
    Member

    see at <h2><?php _e(‘Latest Discussions’); ?></h2> section :p

    in front-page.php of the theme

    #67289
    keppy
    Member

    Take a look at https://bbpress.org/documentation/themes/#templates

    That is a list of all the template files and when each of them is called. You’ll have to edit each applicable file to hide the things you want to hide.

    #67288
    chequers
    Member

    To answer my own question. You can comment stuff out from front-page.php to remove them.

    I would still like help totally hiding tag stuff though, like in new post forms.

    #3909
    chequers
    Member

    Hello, as per post title, is it possible to remove this section from the forum frontpage? I’m using 1.0 alpha.

    I’m also hoping to remove / disable / hide the following areas:

    o ‘Views’ section on the front page

    o tag clouds

    Thanks for any assistance! This seems like a very powerful and scalable forum – wordpress integration is just icing on the cake. I’ll be poking this more over the coming weeks.

    #67258
    _ck_
    Participant

    You’d need to add a filter, something like this (untested)

    function edit_link_icon($r,$post_id) {return "<img src='/images/edit_link_icon.png'>".$r;}
    add_filter('bb_get_post_edit_link', 'edit_link_icon',10,2);

    #67269
    lstelie
    Member

    Hello,

    I didn’t search enough.

    In case it could help, this plugin :

    https://bbpress.org/plugins/topic/bbpress-latest-discussion-for-wp/

    Works like a charm

    Luc

    #3901
    lstelie
    Member

    Hello, is there a plug in that allow to display in WP sidebar latest BBpress messages ?

    Thnks in advance

    #67254
    kannued
    Participant

    CK, if the password/cookie in 1.0 is the most secure, than that means I wouldn’t need the miniplug for the private area to restrict from Google and other search engines like Alexa?

    I have installed Human Test. Now, to the task of deleting all those bozos.

    The miniplug, do I put that into my template header.php? Or does it go into the directory/folder that I want as strictly private?

    #67251
    _ck_
    Participant

    There’s no hacking involved in that process.

    It’s just a simple workaround.

    The foolish forum operators are allowing anyone with the user-agent of “GoogleBot” into their private forums. And/or they are allowing Google to cache their private forums. The reason why they do this is they want Google to send them traffic and the only way they can do that is to let google see the content of the hidden forums.

    bbPress doesn’t do this by default and no known plugin does it either, certainly not my “hidden forums” plugin.

    My Mini-Track plugin can tell you the difference between real Google and people pretending to be Google. It’s very easy, you just do a rDNS on the ip and see if it goes to a google owned ip block. rDNS is very slow (1-5 seconds) so people don’t normally do it by default.

    You wouldn’t have to delete the spammer profiles if you didn’t let them on in the first place. Install my “Human Test” plugin and 99.9% of them will never register.

    #67217
    _ck_
    Participant

    Shouldn’t require it but there might very well be a bug given the developers only test it on PHP 5. I take it fel64 knows the work-around.

    Remember, 1.0 is ALPHA. Meaning BUGGY.

Viewing 25 results - 9,976 through 10,000 (of 11,578 total)
Skip to toolbar