Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '+.+default+.+'

Viewing 25 results - 6,301 through 6,325 (of 6,788 total)
  • Author
    Search Results
  • #60990
    peterwsterling
    Participant

    Matt, the file does exist – it is in the template you are using. If you don’t have one (a template, or a template without this file), bbPress will be using the default one in “bb-templates/kakumei”

    #58224

    In reply to: bbSync

    sheatsb
    Member

    I’m having a couple of issues:

    -Is it just me, or are a few files missing from the package. There are claims in the documents of a

    stylesheet and another file outside of bbsync.php.

    -When I put the <?php bbrepliestext(); ?> tag in my theme, it shows nothing, then I try <?php felbbreplies(); ?> and I get Fatal error: Call to undefined function felbbreplies() in /Applications/MAMP/taos.htdocs/woodfin/wp-content/themes/default/single.php on line 56

    I’ve integrated WordPress and bbPress with the database and plugins. Is there something I’m missing to make this work, because this is a great plugin.

    #2642
    Null
    Member

    Hi,

    I thought there already was a plugin for this, but I can’t find it.

    What I am looking for is a way so the admin can put the forum in undercontruction-mode. Visitors will see a default underconstruction-page until the admin removes it again (with a selection option in the admin?). Very handy when updating a forum.

    _Null

    #49638

    In reply to: Emoticons For bbPress?

    mattpeckham
    Member

    Has anyone been able to get this working with the ‘bbpress-forum’ template (the one that mimics this forum) and bbPress 8.3? I had this working fine in my older install using the default template, but 8.3 seems to break things, and ‘bbpress-forum’ doesn’t have the post-form.php and edit-form.php files.

    #59680

    In reply to: OpenID for bbpress

    baptiste
    Member

    Did anyone find that you could piggyback onto the WordPress integration/authentication when using the OpenID plugin? It didn’t work for me. I had the plugin activated on my WordPress site and was able to login and create users just fine, but bbPress didn’t know about the credentials and wouldn’t login.

    I need to get more familiar with how the integration is working – I thought it would work fine since it created a normal WordPress user record. But it kept saying the userid was unknown… Will probably dig into it later. The WP plugin is great – the persona fill in stuff is very cool. Only quirk was my ‘Display As’ defaulted to the userid even though a name was included. But I digress.

    #61649

    In reply to: Suggestions and misc

    vafaaaan
    Member

    Now .. ive managed to make WP and bbp share same theme. Dont know if its god but it works.. im running right now.

    wp-content/theme/header.php

    <?php
    include(ROOT . '/theme/header-start.php');
    ?>
    <title><?php bloginfo('name'); ?> - <?php if ( is_single() ) { ?> &raquo; Archive <?php } ?> <?php wp_title(); ?></title>
    <?php
    wp_head();
    include(ROOT . '/theme/header-end.php');
    ?>
    <body>
    <?php
    wp_head();
    include(ROOT. '/theme/body-start.php');
    ?>

    my-themes/theme/header.php

    <?php
    include(ROOT . '/theme/header-start.php');
    ?>
    <title>MyWebsite - <?php bb_title() ?></title>
    <?php
    bb_feed_head();

    if ( is_topic() && bb_is_user_logged_in() ) : ?>
    <script type="text/javascript">
    var lastMod = <?php topic_time( 'timestamp' ); ?>;
    var page = <?php global $page; echo $page; ?>;
    var currentUserId = <?php bb_current_user_info( 'id' ); ?>;
    var topicId = <?php topic_id(); ?>;
    var uriBase = '<?php bb_option('uri'); ?>';
    var tagLinkBase = '<?php bb_tag_link_base(); ?>';
    var favoritesLink = '<?php favorites_link(); ?>';
    var isFav = <?php if ( false === $is_fav = is_user_favorite( bb_get_current_user_info( 'id' ) ) ) echo "'no'"; else echo $is_fav; ?>;
    </script>
    <?php
    bb_enqueue_script('topic');
    endif;

    bb_head();
    include(ROOT. '/theme/header-end.php');
    ?>
    <body id="<?php bb_location(); ?>">
    <?php
    include(ROOT . '/theme/body-start.php');
    if ( is_bb_profile() ) profile_menu();
    ?>

    my-themes/theme/footer.php

    <?php
    do_action('bb_foot', '');
    include(ROOT . '/theme/body-end.php');
    ?>

    wp-content/theme/footer.php

    <?php
    include(ROOT . '/theme/body-end.php');
    ?>

    theme/header-start.php

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
    <head profile="http://gmpg.org/xfn/11">

    theme/header-end.php

    <link rel="stylesheet" href="<?php echo URL; ?>/theme/default.css" type="text/css" title="Default style" media="screen" />
    <link rel="alternate" href="<?php echo URL; ?>/?feed=rss2" type="application/rss+xml" title="RSS Feed" />
    <link rel="pingback" href="<?php echo URL; ?>/xmlrpc.php" />
    <link rel="EditURI" href="<?php echo URL; ?>/xmlrpc.php?rsd" type="application/rsd+xml" title="RSD" />
    <link rel="wlwmanifest" href="<?php echo URL; ?>/wp-includes/wlwmanifest.xml" type="application/wlwmanifest+xml" />
    <meta http-equiv="content-type" content="text/html; charset=UTF-8" />
    <meta name="generator" content="WordPress 2.3.1" />
    </head>

    theme/body-start.php

    <div id="wrapper">
    <?php
    get_sidebar();
    // Etc...
    ?>

    theme/body-end.php

    <?php
    // Etc...
    wp_footer();
    ?>
    </div>
    </body>
    </html>

    Hope its all there.. ;)

    URL and ROOT is defined in wp-config.php

    Edit: you can of course cut BODY to include different sidebar wp / bbp :)

    #61547

    In reply to: How Do I Do This?

    chrishajer
    Participant

    For WP header and navigation, or the logo and navigation back to WP, everything you need is in the theme files and the stylesheets. I would make a copy of the default template (create a new folder of a different name, then copy all the files from the stock theme into that new folder, and open style.css and change the Theme Name: Kakumei to Theme Name: ChgoGrrl99), then make your modifications in those files. If you break it, just revert to the stock theme.

    But, adding links, adding the WP header and navigation, can all be done in the theme files.

    #2624
    #61482
    refueled
    Member

    betwixt: probably the best thing to do is to redesign the default kakumei theme to make it look exactly like the WordPress theme you are using.

    Is there a particular WordPress theme you are using or is your design custom?

    #61373
    Sam Bauers
    Participant

    The sub-forum setup may not be what you are after exactly, but it is the only way to closely approximate your needs using a default install.

    Categories (similar to what you show in your image) was something I spent quite a lot of effort on a few releases ago. It never made it to core, but there is still an intention to add similar functionality in the future. I’m thinking maybe we should have forums which don’t hold topics, and act as de-facto categories when they contain sub-forums. This is future stuff though, for now sub-forums is as good as it gets.

    #2591
    JeffVoegtlin
    Member

    After filling in step one of the installation I get this message:

    Now we’re going to create the database tables and fill them with some default data.

    bbPress database error: [A table must have at least 1 column]

    CREATE TABLE wp_

    Created table wp_

    bbPress database error: [You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near ‘;$bb->wp_homeusers (user_login, user_pass, user_email, us]

    INSERT INTO wp_;$bb->wp_homeusers (user_login, user_pass, user_email, user_url, user_registered) VALUES (‘JeffV’, ‘145d638abb3245b4362f959f774bf1b2’, ‘jeff@jackhammr.org’, ”, ‘2007-11-13 06:30:26’)

    bbPress database error: [You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near ‘ ”, , ”, ‘200]

    INSERT INTO bb_topics (topic_title, topic_slug, topic_poster, topic_poster_name, topic_last_poster, topic_last_poster_name, topic_start_time, topic_time, forum_id) VALUES (‘Your first topic’, ‘your-first-topic’, , ”, , ”, ‘2007-11-13 06:30:26’, ‘2007-11-13 06:30:26’, 1)

    bbPress database error: [You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near ‘;$bb->wp_homeusers WHERE ID = 0’ at line 1]

    SELECT * FROM wp_;$bb->wp_homeusers WHERE ID = 0

    Finished!

    I’m sorry I don’t understand what all that means. Can someone here help me? Thanks.

    Jeff Voegtlin

    #61437
    chrishajer
    Participant

    You changed the installation from forums to bbpress, but you didn’t make the change in the config.php. So, your forum is at http://www.reviewsaurus.com/bbpress/, but the config has $bb->uri = 'http://www.reviewsaurus.com/forums/'; You need to change one or the other (either the folder name or the URI in the config) for it to work.

    As proof, I can see http://www.reviewsaurus.com/bbpress/bb-templates/kakumei/style.css just fine.

    #2590
    mayankg
    Member

    Hello,

    I followed all the steps mentioned in the installation and bbpress got installed properly but it doesn’t display the forum properly.

    you can see the forum login here : http://www.reviewsaurus.com/bbpress/

    but you’ll see that it doesn’t look correct as no images no css is loaded.

    It’s a fresh installation and i’ve not changed anything else. Can you please suggest me what could be the problem….I’m using the pretty permalinks feature….could that be a problem?

    #58866

    In reply to: bbPress vs. a plugin

    chrishajer
    Participant

    Yes, use the same database (it’s easier later with integration) and you can even leave the default table prefix in the bbPress config.php. By default, WordPress uses a table prefix of wp_ and bbPress uses bb_, so there is no conflict, and even if bbPress goes horribly wrong, it won’t hurt WordPress at all.

    Good luck. I’m in Chicago too if you need any help.

    #61339
    tbronson
    Member

    Thanks, chrishajer, this…

    <?php tag_heat_map( 8, 16, ‘pt’, 100); ?>

    …worked, putting the parameters in the template tag, although I don’t know why, ’cause the default values seemed to be changed in the function in template-functions.php. But, I don’t care why, either, since it works!

    #61294
    chrishajer
    Participant

    With integration, it’s easiest to use the same database, then just change the table prefix (or leave it at the default for bbpress – there’s no conflict.) If you use the same database, then just use the database connection details from wp-config.php.

    It seems you can’t even SHOW TABLES, not even talking about creating anything yet. The permissions required to SHOW TABLES are much less than those needed to create a table.

    Something weird is going on and we’re going to smack our heads when we realize how simple it really was.

    #61293
    ericakadisco
    Member

    Hey Chris,

    I had created a second bbpress database called bbpress2 to see if that was the problem, which it wasn’t. The error message is an older one. The one I’m getting now is in reference to bbpress, not bbpress2 like above. But everything else is the same:

    bbPress database error: [Access denied for user 'disco'@'localhost' to database 'approachanxiety_com_bbpress']
    SHOW TABLES;

    bbPress database error: [Access denied for user 'disco'@'localhost' to database 'approachanxiety_com_bbpress']
    CREATE TABLE bb_forums ( forum_id int(10) NOT NULL auto_increment, forum_name varchar(150) NOT NULL default '', forum_slug varchar(255) NOT NULL default '', forum_desc text NOT NULL, forum_parent int(10) NOT NULL default '0', forum_order int(10) NOT NULL default '0', topics bigint(20) NOT NULL default '0', posts bigint(20) NOT NULL default '0', PRIMARY KEY (forum_id) ) DEFAULT CHARACTER SET utf8

    bbPress database error: [Access denied for user 'disco'@'localhost' to database 'approachanxiety_com_bbpress']
    CREATE TABLE bb_posts

    Question: can I use the same database as my WordPress database?

    I may call my hosting provider to see if there is something wrong with the way mysql databases are set up. Perhaps I can connect but can’t create tables?

    Thanks for all your work on this!

    Eric

    #61289
    ericakadisco
    Member

    Also, using a test script, I entered the same database information that’s in my bbpress config.php file and I can successfully connect to my database. The user, Disco, is the default user and is database administrator so there’s no reason why I should get access denied.

    #2557
    ericakadisco
    Member

    I am installing bbPress to integrate with an existing WordPress. After the second step of install I get this error:

    Second Step

    Now we’re going to create the database tables and fill them with some
    default data.

    bbPress database error: [Access denied for user 'disco'@'localhost' to
    database 'approachanxiety_com_bbpress2']
    SHOW TABLES;

    bbPress database error: [Access denied for user 'disco'@'localhost' to
    database 'approachanxiety_com_bbpress2']
    CREATE TABLE bb_forums....

    It seems to be similar to this post,

    http://bbpress.org/forums/topic/step-two-database-error?replies=4

    And this one,

    http://bbpress.org/forums/topic/db-access-problem-in-the-first-installation-step?replies=19

    I tried to resolve it by replacing db-mysqli.php with db.php in the bb-includes folder and that didn’t work.

    The username and password are correct. They are the same as for my original wordpress blog. And the database is correct as well. When I change it to something else I can’t even get to the second step.

    Any help would be greatly appreciated!!!

    #61194

    In reply to: Plugin: Gravatar

    livibetter
    Member

    New Version, 0.2. Download the zipped file.

    • Two Gravatar Email Source

      • Use registered email
      • Use additional Gravatar Email field

    • Email Verification – Users need to verify Gravatar Emails which they input
    • Options page (screenshot)
    • Default Image – Supports displaying Default Image

      • Also supports displaying different Default Image based on user’s role

    • Display Name – Shows Display Name instead of Login name if available
    • Customize Size, Rating of avatar
    • Complete Deactivation – Removes options and data in usermeta

    Plugin’s page

    #2551
    lookfab
    Member

    Is there a simple way (i.e. not involving a plug-in) to change the title of a view? For example, if I wanted the view “Topics with no replies” to say “Threads with no replies”, how can I do this?

    I do see that the views are set up in default-filters.php, so I guess I’m asking whether there is an easy way to override these view definitions using code in the theme.

    Thanks.

    #61267
    jazbek
    Member

    thanks, yeah, i am not using bbpress + wordpress on the installation i’m trying to disable posts and registration on.. that’s the old one that’s getting moved to the new site that has wordpress.

    0.8 doesn’t have plugin activation, i guess everything’s just enabled by default (someone correct me if i’m wrong). i’ll have to check out capabilities.php tomorrow (i’m off to a halloween party!). thanks for the help. :)

    #61236
    livibetter
    Member

    Have you tried to search one in Extend?

    If you find no plugin and you can do code, I think you can check line 18 in /bb-post.php, line 479 in /bb-includes/capabilities.php.

    You need to check current user’s is allowed to start a new topic in specific forum or not in your filter hook.

    Just thoughts, but should work.

    PS. I think it’s better not to do too much that bbPress can’t by default, or you could suffer more after upgrading unless you completely know what you do.

    #2532
    krussell
    Member

    I’m looking for advice on how to modify the search functionality to paginate the results that are returned; i.e. the default functionality returns N matches in each of the following categories: thread title, recent posts and relevant posts, but I would like to allow a user to scroll through repeated pages of search results.

    I’ve had a look at search.php and this is structured around returning a fixed number of results for each query, which effectively hides anything that doesn’t come up in the first N results of the search. The concept of listing the results of 3 different queries in one results page also seems to be incompatible with providing a pagination mechanism (which list do you paginate?). I feel that the default method of handling search results is a bit limited and confusing for users familiar with a typical Google-style search that returns one simple list in multiple pages.

    I have had a look at the code, but I’m no PHP guru; is there any way of getting the sort of results I would like without fundamentally rewriting the search mechanism?

    p.s. not being overly critical here – I think bbPress is a great piece of work!

Viewing 25 results - 6,301 through 6,325 (of 6,788 total)
Skip to toolbar