Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'test'

Viewing 25 results - 8,176 through 8,200 (of 11,591 total)
  • Author
    Search Results
  • #34003
    gerikg
    Member

    How do I make Latest Discussion on it’s own page?

    #86896
    chrishajer
    Participant

    I suppose you could do the complete noob thing and say:

    <?php if (bb_get_forum_is_category()) {
    continue;
    }
    else {
    // do something
    }
    ?>

    Unless I am completely missing your point and this is some sort of test :-)

    #33995
    psycheangels
    Member

    xxx.com/rss is latest rss posts but how do i get latest rss topics ? without recent topic post.

    i look at rss.php i found this

    case 'all-topics':
    if ( !$topics = get_latest_topics() )
    die();

    $posts = array();
    foreach ($topics as $topic) {
    $posts[] = bb_get_first_post($topic->topic_id);
    }

    $title = esc_html( sprintf( __( '%1$s &raquo; Recent Topics' ), bb_get_option( 'name' ) ) );
    $link = bb_get_uri();
    $link_self = bb_get_topics_rss_link();
    break;

    so how i get that rss feed ?

    thanks

    #86779
    Gautam Gupta
    Participant

    And for the time being, there’s no need to create a fork. Just create new tickets, contribute patches and after testing, chrishajer might commit them.

    #86742
    chrishajer
    Participant

    A PHP warning should cause the site to not load (it’s just a warning, not an error.)

    Is the wp-load.php actually available where you say it is in the include statement?

    Also, does including it near the top of bb-config.php change the error at all? (I usually see it near the top, not the bottom.)

    Finally, can you use the include_once function to include some other random file in the current directory? Just create a file like test.php with nothing in it other than <?php /* */ ?> and then try to include that to see if the php function is actually working or if there is maybe some server security interfering.

    #86740
    Anonymous User
    Inactive

    Hi gerikg,

    can you post a link to your forum? Evtl. we can test it together.

    On my forum i have at first also a blank page – there it was a problem with two plugins (one in bbPress, one in WordPress).

    Markus

    #33976
    gerikg
    Member

    When I do the deep integration it works find but two people already came to me and said it makes the page blank. How does one troubleshoot this problem? I’m assuming they are using the steps on my website so the steps are the same. They are both pulling wp-load.php. WP 2.6.3 and latest bbp.

    #76178
    analytico
    Member

    Try the Easy Video Embed plugin https://bbpress.org/plugins/topic/easy-video-embed/

    It enabled embedding videos like YouTube, Vimeo, Revver and others in bbPress 1.02, the latest version. Works in Firefox and IE. It is a new plugin, you can find it on the main page of the plugins list.

    #33974
    oli_75
    Member

    Hello,

    I just uploaded the latest version of bbpress. When I click on install I receive a message “no valid header for plugin (Das Plugin hat keinen validen Header.”).

    I am running WordPress 2.9.2 installed at hosteurope.

    What am I doing wrong?

    Maybe someone can give me an idea what’s going wrong here.

    Thanks,

    Oliver

    #86720

    In reply to: BuddyBar in bbPress

    Anonymous User
    Inactive

    Hi Bradcarters,

    i don’t think this is the best solution to fix the original problem. It is just a “dirty” workaround. For me it seems to work.

    But you can wait for the test and the answer from gerikg.

    Markus

    #86734
    chrishajer
    Participant

    I just committed that patch, so the fix should be evident here within 24 hrs. Please test and report back.

    #86552
    yoyopop
    Member

    thanks chris.

    I’m on a linux server. Like I said before, I’ve tested the problem with a blank template and zero activated plugins it still happened.

    it seems like it would be closest to this problem https://trac.bbpress.org/ticket/1090 – although that trac has been marked as a duplicate with 1150, they seem to be separate problems to me. But you never know!

    Do you know what the correct url format for a undeleting should be? Is my forum directing me incorrectly, is delete-topic.php failing, or is my server not carrying through the command?

    #85624
    mr_pelle
    Participant

    Hi! After 3 hours of brute-force testing, I found a working configuration:

    # BEGIN bbPress

    Options -MultiViews

    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /forum/

    #handle admin stuff
    RewriteRule ^bb-admin/.*$ - [L,QSA]

    # handle the rest
    RewriteRule ^page/([0-9]+)/?$ ?page=$1 [L,QSA]

    RewriteRule ^profile/([^/]+)/page/([0-9]+)/?$ profile.php?id=$1&page=$2 [L,QSA]
    RewriteRule ^profile/([^/]+)/([^/]+)/?$ profile.php?id=$1&tab=$2 [L,QSA]
    RewriteRule ^profile/([^/]+)/([^/]+)/page/([0-9]+)/?$ profile.php?id=$1&tab=$2&page=$3 [L,QSA]
    RewriteRule ^profile/([^/]+)/?$ profile.php?id=$1 [L,QSA]
    RewriteRule ^profile/?$ profile.php [L,QSA]

    RewriteRule ^rss/?$ rss.php [L,QSA]
    RewriteRule ^rss/topics/?$ rss.php?topics=1 [L,QSA]
    RewriteRule ^rss/forum/([^/]+)/?$ rss.php?forum=$1 [L,QSA]
    RewriteRule ^rss/forum/([^/]+)/topics/?$ rss.php?forum=$1&topics=1 [L,QSA]
    RewriteRule ^rss/topic/([^/]+)/?$ rss.php?topic=$1 [L,QSA]
    RewriteRule ^rss/tags/([^/]+)/?$ rss.php?tag=$1 [L,QSA]
    RewriteRule ^rss/tags/([^/]+)/topics/?$ rss.php?tag=$1&topics=1 [L,QSA]
    RewriteRule ^rss/profile/([^/]+)/?$ rss.php?profile=$1 [L,QSA]
    RewriteRule ^rss/view/([^/]+)/?$ rss.php?view=$1 [L,QSA]

    RewriteRule ^tags/([^/]+)/page/([0-9]+)/?$ tags.php?tag=$1&page=$2 [L,QSA]
    RewriteRule ^tags/([^/]+)/?$ tags.php?tag=$1 [L,QSA]
    RewriteRule ^tags/?$ tags.php [L,QSA]

    RewriteRule ^view/([^/]+)/page/([0-9]+)/?$ view.php?view=$1&page=$2 [L,QSA]
    RewriteRule ^view/([^/]+)/?$ view.php?view=$1 [L,QSA]

    # handle forums
    RewriteRule ^([^/]+)/page/([0-9]+)/?$ forum.php?id=$1&page=$2 [L,QSA]
    RewriteRule ^([^/]+)/$ forum.php?id=$1 [L,QSA] # no '?' before the closing '$' this time: very important!

    # handle topics
    RewriteRule ^([^/]+)/([^/]+)/page/([0-9]+)/?$ topic.php?id=$2&page=$3 [L,QSA]
    RewriteRule ^([^/]+)/([^/]+)/$ topic.php?id=$2 [L,QSA] # no '?' before the closing '$' this time: very important!

    # handle non-existent pages
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule ^.*$ index.php [L]
    </IfModule>

    # END bbPress

    #33960
    kingscast
    Member

    I realized I was not upgraded to the latest version. I followed the instructions as identified on the site and got this:

    An invalid configuration file was found at bb-config.php

    The installation cannot continue.

    Usually this is caused by one of the database connection settings being incorrect. Make sure that the specified user has appropriate permission to access the database.

    Any insight? Thanks in advance!

    #86633

    In reply to: Thesis integration?

    A “Thesis page” is just like any other html/php/css WP page except that it uses Thesis Hooks, which is the framework Chris Pearson created to sit on top of WP and is far more efficient than the underlying WP code. It looks like this…

    <?php

    // Using hooks is absolutely the smartest, most bulletproof way to implement things like plugins,
    // custom design elements, and ads. You can add your hook calls below, and they should take the
    // following form:
    // add_action('thesis_hook_name', 'function_name');
    // The function you name above will run at the location of the specified hook. The example
    // hook below demonstrates how you can insert Thesis' default recent posts widget above
    // the content in Sidebar 1:
    // add_action('thesis_hook_before_sidebar_1', 'thesis_widget_recent_posts');

    /**
    * function custom_bookmark_links() - outputs an HTML list of bookmarking links
    * NOTE: This only works when called from inside the WordPress loop!
    * SECOND NOTE: This is really just a sample function to show you how to use custom functions!
    *
    * @since 1.0
    * @global object $post
    */

    function custom_bookmark_links() {
    global $post;
    ?>
    <ul class="bookmark_links">

    <li><a rel="nofollow">&title=<?php urlencode(the_title()); ?>" onclick="window.open('http://delicious.com/save?v=5&noui&jump=close&url=<?php urlencode(the_permalink()); ?>&title=<?php urlencode(the_title()); ?>', 'delicious', 'toolbar=no,width=550,height=550'); return false;" title="Bookmark this post on del.icio.us">Bookmark this article on Delicious</a></li>
    <?php
    }

    Thesis is on one level, just an additional library of high level functions, and at another, its an incredibly easy way to design and manipulate your theme/template. The structure of the framework and the finished theme it provides also happen to be presented in a very SEO conscious way, which is obviously a big selling point.

    What I would really like to see is a BBPress Template written for Thesis. Hmmm. I wonder. How hard can that be?

    #86617

    In reply to: Templates for 1.x ???

    chrishajer
    Participant

    r2417 is the very latest trunk in the 1.0 series. Actually, Matt tagged it 1.1-alpha about 3 months ago. It’s essentially 1.0.2 with bug fixes, PLUS subscribe to topic and login-less posting added. Not much else. It’s probably as safe to run as 1.0.2 right now.

    PubDirLtd, the issue you describe with missing thumbnails and missing CSS used to be caused by improper permissions on the my-templates folder (and my-plugins folder has the same problem, but is not causing this symptom for you.) The permissions should be 0755, not 0750. The directories used to get created with 750 permissions, but I thought a clean install of 1.1-alpha should create the directories with the proper permissions. Did you upgrade a 1.0.2 or older installation, or install the latest r2417 using SVN?

    In any case, changing the permissions on the my-templates directory to 755 should take care of the missing thumbnails issue and other theme-related issues you’re having.

    #86615

    In reply to: Templates for 1.x ???

    Actually, it is that one – 2417. I used the latest SVN version, which calls itself 1.1-alpha, unless that’s a mistake.

    #85951
    psycheangels
    Member

    you can fix the plugin anonymous to make anonymous post sistem and anonymous post moderation

    tested in my website and works with little fix

    #86581
    zaerl
    Participant

    All values under the cookie section of /bb-admin/options-wordpress.php must be changed according to the WordPress values.

    WordPress URL

    Blog URL

    Cookie salt “auth”

    Cookie salt “secure auth”

    Cookie salt “logged in”

    also make sure to:

    1) delete the old cookie before making your tests.

    2) check values of bbPress Integration plugin (/wp-admin/options-general.php?page=bbpress-integration-admin)

    3) change COOKIEPATH according to what the bbPress Integration plugin reports

    #86590
    gerikg
    Member

    Sorry I was trying to explain it without full explanation or linking to my test site.

    I’m trying to imitate the buddypress default theme for bbpress. They have a button under title called Public Group. You can see an example here in blue. http://testbp.org/groups/testgroupp-1060610747/forum/topic/a-forum-topic/

    I wanted to do the same in my bbpress theme that the button says Public Forum or Hidden Forum depending on what it is. Does this make sense now?

    #86502
    Alex Luft
    Participant

    Perfect! Works like a charm!

    #86501
    psycheangels
    Member
    #86500
    Alex Luft
    Participant

    Thanks gerikg.

    I installed and activated, and it seemed to have just removed all of the latest discussions – the entire list!

    I read that the default is 7 days and we’ve had new posts today. Am I doing something wrong?

    #86499
    gerikg
    Member
Viewing 25 results - 8,176 through 8,200 (of 11,591 total)
Skip to toolbar