Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'test'

Viewing 25 results - 8,076 through 8,100 (of 11,591 total)
  • Author
    Search Results
  • #88817
    chrishajer
    Participant
    #88785

    In reply to: Plugins for 1.0.2

    chrishajer
    Participant

    On this page:

    http://www.homedesignsense.com/forum/topic/video-test

    There is no embedded video, just the code you pasted in there. The plugin is not working. It did not parse your post for the video bbcode and replace it with embed code, which is what the plugin is SUPPOSED to be doing.

    #34355
    netgo
    Member

    I have a theme and the latest topics appear on the front page before the forums list.

    I want the forums list to appear before

    This is the front page PHP – Any help is greatly appreciated – thanks

    <?php bb_get_header(); ?>

    <?php if ( $forums ) : ?>

    <div id=”hottags” role=”main”>

    <h2><?php _e(‘Hot Tags’); ?></h2>

    <p class=”frontpageheatmap”><?php bb_tag_heat_map(); ?></p>

    <h2><?php _e(‘Freebies Updates’); ?></h2>

    <script type=”text/javascript” src=”http://signup.ymlp.com/signup.js?id=geuswjjgmguw”></script&gt;

    <br >

    <script type=”text/javascript”><!–

    google_ad_client = “pub-0827570622639205”;

    /* freebie forum side */

    google_ad_slot = “5398224595”;

    google_ad_width = 120;

    google_ad_height = 240;

    //–>

    </script>

    <script type=”text/javascript”

    src=”http://pagead2.googlesyndication.com/pagead/show_ads.js”&gt;

    </script>

    </div>

    <div id=”discussions”>

    <?php if ( $topics || $super_stickies ) : ?>

    <h2><?php _e(‘Latest Discussions’); ?></h2>

    <table id=”latest”>

    <tr>

    <th><?php _e(‘Topic’); ?> — <?php bb_new_topic_link(); ?></th>

    <th><?php _e(‘Posts’); ?></th>

    <!– <th><?php _e(‘Voices’); ?></th> –>

    <th><?php _e(‘Last Poster’); ?></th>

    <th><?php _e(‘Freshness’); ?></th>

    </tr>

    <?php if ( $super_stickies ) : foreach ( $super_stickies as $topic ) : ?>

    <tr<?php topic_class(); ?>>

    <td><?php bb_topic_labels(); ?> <big>“><?php topic_title(); ?></big><?php topic_page_links(); ?></td>

    <td class=”num”><?php topic_posts(); ?></td>

    <!– <td class=”num”><?php bb_topic_voices(); ?></td> –>

    <td class=”num”><?php topic_last_poster(); ?></td>

    <td class=”num”>“><?php topic_time(); ?></td>

    </tr>

    <?php endforeach; endif; // $super_stickies ?>

    <?php if ( $topics ) : foreach ( $topics as $topic ) : ?>

    <tr<?php topic_class(); ?>>

    <td><?php bb_topic_labels(); ?> “><?php topic_title(); ?><?php topic_page_links(); ?></td>

    <td class=”num”><?php topic_posts(); ?></td>

    <!– <td class=”num”><?php bb_topic_voices(); ?></td> –>

    <td class=”num”><?php topic_last_poster(); ?></td>

    <td class=”num”>“><?php topic_time(); ?></td>

    </tr>

    <?php endforeach; endif; // $topics ?>

    </table>

    <?php bb_latest_topics_pages( array( ‘before’ => ‘<div class=”nav”>’, ‘after’ => ‘</div>’ ) ); ?>

    <?php endif; // $topics or $super_stickies ?>

    <?php if ( bb_forums() ) : ?>

    <h2><?php _e(‘Forums’); ?></h2>

    <table id=”forumlist”>

    <tr>

    <th><?php _e(‘Main Theme’); ?></th>

    <th><?php _e(‘Topics’); ?></th>

    <th><?php _e(‘Posts’); ?></th>

    </tr>

    <?php while ( bb_forum() ) : ?>

    <?php if (bb_get_forum_is_category()) : ?>

    <tr<?php bb_forum_class(‘bb-category’); ?>>

    <td colspan=”3″><?php bb_forum_pad( ‘<div class=”nest”>’ ); ?>“><?php forum_name(); ?><?php forum_description( array( ‘before’ => ‘<small> – ‘, ‘after’ => ‘</small>’ ) ); ?><?php bb_forum_pad( ‘</div>’ ); ?></td>

    </tr>

    <?php continue; endif; ?>

    <tr<?php bb_forum_class(); ?>>

    <td><?php bb_forum_pad( ‘<div class=”nest”>’ ); ?>“><?php forum_name(); ?><?php forum_description( array( ‘before’ => ‘<small> – ‘, ‘after’ => ‘</small>’ ) ); ?><?php bb_forum_pad( ‘</div>’ ); ?></td>

    <td class=”num”><?php forum_topics(); ?></td>

    <td class=”num”><?php forum_posts(); ?></td>

    </tr>

    <?php endwhile; ?>

    </table>

    <?php endif; // bb_forums() ?>

    <?php if ( bb_is_user_logged_in() ) : ?>

    <div id=”viewdiv”>

    <ul id=”views”>

    <?php foreach ( bb_get_views() as $the_view => $title ) : ?>

    <li class=”view”>“><?php view_name( $the_view ); ?>

    <?php endforeach; ?>

    </div>

    <?php endif; // bb_is_user_logged_in() ?>

    </div>

    <?php else : // $forums ?>

    <div class=”bbcrumb”>“><?php bb_option(‘name’); ?> » <?php _e(‘Add New Topic’); ?></div>

    <?php post_form(); endif; // $forums ?>

    <?php bb_get_footer(); ?>

    #88776

    In reply to: Plugins for 1.0.2

    Petehds
    Member

    chrishajer – tried posting the video link. No video just a headline. Should a video show up or should it send you to the video page?

    This is the page. don’t know if you will see it without being logged in.

    http://www.homedesignsense.com/forum/topic/video-test

    #79296

    according to plugin users ….plugin throwing errors & Exceptions ?

    Could you please give us the Errors / Exceptions?

    Did you test it before and after putting it on your website?

    I’m also sorry to say that your E-mail issues are outwith our control.

    #88753
    KentonMr
    Member

    I understand where you come from in that statement.

    However, in some forums (especially one of the forums on the site I am building I do not want users repeating the same topic and would want them to add to the topic that has already been started.

    Ideally with a user friendly warning or a redirect to that previously started topic.

    Anyway a bit of hard coding and some reuse later I have a working button on the main site

    using bb_get_forum() to check that the forum exists before

    testing $bbdb->get_var($bbdb->prepare(“SELECT topic_id FROM $bbdb->topics WHERE topic_title = %s”, $topic_title));

    seems to resolve this issue.

    #88800

    Well, one login works really well if you follow the steps. Don’t rely on the old “5 minute install” or whatever its called these days.

    And email notifications has been working as a plugin for about 2 years, and recently Matt decided that it was key to roll it into the core, so you can actually get it working out of the box with teh latest trunk version (which is actually good/stable and an upgrade on bbPress1.0.2).

    #87770
    _ck_
    Participant

    Neither is “add your plugin”

    It’s also missing the tag cloud.

    Hopefully they will test and fixup the plugin section soon!

    #88709

    In reply to: Install problem

    Hi Wallis,

    Could you be so kind as to give us some more information?

    bbpress version?

    PHP versionon server?

    I think this is the bug from the latest version of PHP, but i can’t be sure yet.

    #86914

    In reply to: Latest Discussion Page

    Rich Pedley
    Member

    all i did was a did a link to: view.php?view=latest

    It works without anything else required.

    #86912

    In reply to: Latest Discussion Page

    gerikg
    Member

    Anyone else can help with this?

    #34332
    perrym
    Member

    Wow, I downloaded the latest bbPress 1.0.2, unzipped it, copied it to a folder /bbpress off my main directory, types in http://www.mysite.com/bbpress and bbPress asked for my user name and PW.

    I entered my user name and PW for my site and I then get a blank page.

    Come on guys – I installed Simple:Press and had users posting in just 15 minutes.

    I’m using bbPress with BuddyPress but guys you’ve got to do better than a blank screen.

    If anyone can help me I’ll take the help, if not I’ll chuck this program and have users up and posting in 15 minutes with Simple:Press.

    This is really disappointing….

    P.S.

    When I get your log-in screen I get the “Page not found” 404 error if that helps.

    And yes I’m using WP 2.9.2 and I’ve used WP for 3+ years now so I know what I’m doing.

    #87761

    Four little bugs with the theme:

    1) Pagination duplication on Profile page:

    http://www.kevinjohngallagher.com/bbpress_duplication_of_pagination.png

    2) Pagination on Profile page:

    Posts started will only appear/work on the first page. As soon as you move to page 2 or above, it says you’ve not started any ( haha, we all know I’ve started more than i should have ;-] )

    3) bbPress Edit area:

    http://www.kevinjohngallagher.com/bbpress_edit_area.png

    It’s not been looked at in the slightest. Even teh default styles haven’t been applied.

    4) bbpress Edit area:

    If you write some code in a <code> tag. and edit your post, bbPress now puts in <p> and <br /> tags into your code on every line. If yuo’re syslexic like me and struggle with the small font, and edit code based posts a few times to remove errors, you get alot of added code.

    5) RSS feed:

    The new RSS feed has new/added HTML. If you’re RSS reader is a mail client (say google or windows live mail) then it strips these extra tags, but if you’re not using an overly sophisticated RSS client, you see everything wrapped in a <p> tag.

    From what I can tell, and this may be down to the latest trunk version rather than the theme, it appears to wrap each paragraph twice in the <p> tags.

    Thanks to Noel or whoever at Automattic is working on fixing these, we apprecaite it :)

    #88519

    Ok, lets see what we can do here:

    1) What version of WordPress?

    2) What version of bbPress?

    3) Are they integrated (share login cookies)?

    4) Are they “deep integrated” (can call functions in the other program)?

    5) Do you have the latest version of akismet on both WP and bbP?

    6) What happens when you log in and post?

    7) What happens when you log in and post as a new user (i.e. not as you)?

    8) Are you using buddyPress?

    9) Have to tried disabling all plugins and trying again?

    10) Are you using a premium (paid for) theme?

    11) If so, have to tried switching to the default theme?

    12) When you say things appear in your akismet que and then akismet

    13) Are comments getting through akismet on wordpress?

    I selected the check box next to “Create a page that shows spam

    statistics” on the Akismet page. The page showed there was 26 post in the spam section.

    I selected spam in the drop down box but the messages do not show up even

    after I click on filter. I don’t know of any other way to get to the

    messages to see if they are all spam

    Um, is this on the wordpress side or the bbPress side?

    #88613

    In reply to: Same avatar

    leander8728
    Member

    Yes i have done that ;)

    This is the result, i don’t have testing it. But when i have enough time i will do that: https://buddypress.org/community/groups/requests-feedback/forum/topic/wordpressmu-buddypress-bbpess-same-avatar/#post-55137

    #88633

    In reply to: Login Issue

    chrishajer
    Participant

    So, what happens when you try to log in?

    Can you register a new user there and log in like that (just as a test)?

    #87760
    chrishajer
    Participant

    This topic has been derailed and I am going to delete the off-topic posts.

    The design of bbpress.org will not be made available for download, that I know of. It didn’t happen with the last design, but there were many duplicates created.

    If you would like to download the latest version of bbPress for testing, you will find it here:

    https://trac.bbpress.org/browser/trunk

    There is a link at the bottom center to “Download Zip Archive”, but I believe if you do that backpress does not get installed.

    If you can install with subversion, you won’t have any trouble like that, as all externals are installed at the same time.

    svn co http://svn.automattic.com/bbpress/trunk/ ./bbpress/

    Will install the latest trunk version by subversion into a directory called bbpress.

    #34316

    Topic: Music E-zine Forums

    in forum Showcase
    jbrzr3
    Member

    Would love constructive feedback as we just just switched our whole e-zine over from JOOMLA.

    http://latestartermusician.com/forums/

    Thank you

    #34315
    jbrzr3
    Member

    Hello,

    When my members post, their I.P. addresses show on the side of their usernames. How do I stop this from happening?

    http://www.latestartermusician.com/forums/topic.php?id=2

    Thank you.

    #88568

    Coding:

    I’ve found NotePad++ to be quite invaluable in the past year or so.

    I’ve use both Komodo and the PHP plugin for Eclipse in the past; but frankly once you use Visual Studio and intellisence, i find half-assed IDE’s to just annoy me. Thats purely personal ofcourse, but it’s lead me to keeping the NotePad++ installer on my USB stick just incase i have to work somewhere on the move (how sad is that???).

    Somethign else that won’t endear me to anyone, when outputting tables or visually formatted HTML, Dreamweaver makes life so much easier. I can’t count the amount of time i’ve saved by churning some HTML out on Dreamweaver and then just finxing the code with one or two saved Reg-Ex’s.

    FTP:

    Filezilla

    Images:

    Fireworks is still awesome. I thankfully haven’t had to touch Photoshop for any theming in years and years. I’ve not tried the latest version of GIMP, but it’d have to be something special to overtake FireWorks.

    UML / Process / User Flow

    I use Visio.

    Edit: Ok I realise that i’ve just mentioned both Adobe and Microsoft products, so i expect the comments to come flying in ;-) Night all!

    #88462
    mr_pelle
    Participant

    mikkelsen said:

    I want to call up <?php login_form(); ?> from bbPress and show it in my WordPress header.

    I thought bbPress were not yet loaded in his WP header…

    Hardcoding is not a good choice IMHO, because it means you have to update many pages everytime you change your mind just on a single line of code. Not to mention that the code you suggested does not handle login errors…

    I’ve successfully completed a “deep integration” and I’m currently testing another pretty integrated installation, without users db sharing and it works fine.

    Why do you think bbPress and WordPress don’t play that nice together (reguardless of what the front page of this website says)? Wasn’t bbPress born for this (and more)?

    #88452
    TrishaM
    Participant

    @chrishajer – thanks for the tip on the folder names – even though the older version of bbPress did not have trouble with a space in the folder name, the latest version does – so I used an underscore in place of the space, and that fixed the problem for me…..many, many thanks again for your help!

    #88439
    TrishaM
    Participant

    Yes, the my-templates folder and its two sub-folders are set to 755. I did find that suggestion when searching for a fix, and made sure of that before posting my question, but it did not make any difference – I still can only choose from the two default (kakumei) themes……

    I use 1&1 for hosting, and I don’t think they’ve made any changes but if I knew what to look for I could check that specifically – also, the my-templates folder was fine before I upgraded from 0.9.0.2 to the latest 1.0.2

    What I’m doing in the meantime is just modifying the default kakumei theme, but that is not ideal because I’ll have to remember to keep it backed up and not overwrite it on the next upgrade…..I’d prefer to find a solution to the problem.

    I’m grateful for any help anyone can offer.

    #88455
    mr_pelle
    Participant

    @Gautam: yeah sorry, I suggested that because I’m testing with no users db sharing, so I’ve to use bb_is_user_logged_in() instead of WP’s function.

    #88435
    TrishaM
    Participant

    Hi Gautam – thanks for your response.

    Below is what is at the top of my custom theme’s style.css – I did compare it to the default (kakumei) theme to be sure something hadn’t changed there with the new version of bbPress, but this should be working. It was working fine before the upgrade, but after the upgrade bbPress no longer ‘sees’ the two themes in the my-templates folder (the other is a testing theme I occasionally use to test new things). It does find the my-plugins folder just fine, just not the my-templates.

    /*

    Theme Name: TWE New

    Theme URI: http://www.tech-kitten.com/

    Description: Custom bbPress theme to match TWE site.

    Version: 1.02

    Author: Trisha Miller

    Author URI: http://www.tech-kitten.com/

    */

Viewing 25 results - 8,076 through 8,100 (of 11,591 total)
Skip to toolbar