Skip to:
Content
Pages
Categories
Search
Top
Bottom

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

Viewing 25 results - 5,376 through 5,400 (of 6,794 total)
  • Author
    Search Results
  • #34055
    brucini
    Member

    hi

    i have ck’s bb-smiley plugin installed. i just want to add two more smileys to the exisitng default folder of gifs

    i’ve uploaded the gifs and renamed them like the others

    however, they don’t appear in my forum

    what am i missing? in time i’d like to cherry pick other smilies to add in

    i also tried changing the folder another set {graemlins) and altered the php for the folder name and none worked

    what am i missing?

    tks in advance

    #86654

    In reply to: User Role Map

    psycheangels
    Member

    there is no documentation of default roles, but if you want to add or edit roles you can use this plugin

    https://bbpress.org/plugins/topic/role-manager

    gerikg
    Member

    Add

    AddHandler x-httpd-php5 .php
    AddHandler x-httpd-php .php4

    to your .htacess file. By default GoDaddy uses php4

    bah I should add pictures to my tutorial!

    #86822
    robalan
    Member

    Here are my config files, for reference:

    wp-config:

    <?php

    // ** MySQL settings ** //

    define(‘COOKIEPATH’, ‘/’);

    define(‘DB_NAME’, ‘###’); // The name of the database

    define(‘DB_USER’, ‘###’); // Your MySQL username

    define(‘DB_PASSWORD’, ‘###’); // …and password

    define(‘DB_HOST’, ‘internal-db.###.gridserver.com’); // 99% chance you won’t need to change this value

    define(‘DB_CHARSET’, ‘utf8’);

    define(‘DB_COLLATE’, ”);

    define(‘WP_CACHE’, true);

    define(‘SECRET_KEY’, ‘###’);

    define(‘AUTH_KEY’, ‘###’);

    define(‘SECURE_AUTH_KEY’, ‘###’);

    define(‘LOGGED_IN_KEY’, ‘###’);

    define(‘NONCE_KEY’, ‘###’);

    define(‘AUTH_SALT’, ‘###’);

    define(‘SECURE_AUTH_SALT’, ‘###’);

    define(‘LOGGED_IN_SALT’, ‘###’);

    define(‘NONCE_SALT’, ‘###’);

    // You can have multiple installations in one database if you give each a unique prefix

    $table_prefix = ”; // Only numbers, letters, and underscores please!

    // Change this to localize WordPress. A corresponding MO file for the

    // chosen language must be installed to wp-content/languages.

    // For example, install de.mo to wp-content/languages and set WPLANG to ‘de’

    // to enable German language support.

    define (‘WPLANG’, ”);

    /* That’s all, stop editing! Happy blogging. */

    define(‘ABSPATH’, dirname(__FILE__).’/’);

    require_once(ABSPATH.’wp-settings.php’);

    ?>

    bb-config:

    <?php

    /**

    * The base configurations of bbPress.

    *

    * This file has the following configurations: MySQL settings, Table Prefix,

    * Secret Keys and bbPress Language. You can get the MySQL settings from your

    * web host.

    *

    * This file is used by the installer during installation.

    *

    * @package bbPress

    */

    // ** MySQL settings – You can get this info from your web host ** //

    /** The name of the database for bbPress */

    define( ‘BBDB_NAME’, ‘###’ );

    /** MySQL database username */

    define( ‘BBDB_USER’, ‘###’ );

    /** MySQL database password */

    define( ‘BBDB_PASSWORD’, ‘###’ );

    /** MySQL hostname */

    define( ‘BBDB_HOST’, ‘internal-db.###.gridserver.com’ );

    /** Database Charset to use in creating database tables. */

    define( ‘BBDB_CHARSET’, ‘utf8’ );

    /** The Database Collate type. Don’t change this if in doubt. */

    define( ‘BBDB_COLLATE’, ” );

    define(‘COOKIEPATH’, ‘/’);

    /**#@+

    * Authentication Unique Keys.

    *

    * Change these to different unique phrases!

    * You can generate these using the {@link https://api.wordpress.org/secret-key/1.1/bbpress/ WordPress.org secret-key service}

    *

    * @since 1.0

    */

    define(‘AUTH_KEY’, ‘###’);

    define(‘SECURE_AUTH_KEY’, ‘###’);

    define(‘LOGGED_IN_KEY’, ‘###’);

    define(‘NONCE_KEY’, ‘###’);

    define(‘AUTH_SALT’, ‘###’);

    define(‘SECURE_AUTH_SALT’, ‘###’);

    define(‘LOGGED_IN_SALT’, ‘###’);

    define(‘NONCE_SALT’, ‘###’);/**#@-*/

    /**

    * bbPress Database Table prefix.

    *

    * You can have multiple installations in one database if you give each a unique

    * prefix. Only numbers, letters, and underscores please!

    */

    $bb_table_prefix = ‘bb_’;

    /**

    * bbPress Localized Language, defaults to English.

    *

    * Change this to localize bbPress. A corresponding MO file for the chosen

    * language must be installed to a directory called “my-languages” in the root

    * directory of bbPress. For example, install de.mo to “my-languages” and set

    * BB_LANG to ‘de’ to enable German language support.

    */

    define( ‘BB_LANG’, ” );

    ?>

    #86821
    robalan
    Member

    Also found this in bb-settings.php:

    /**

    * Should be exactly the same as the default value of the KEYS in bb-config-sample.php

    * @since 1.0

    */

    $bb_default_secret_key = 'put your unique phrase here';

    Do I need to also define the keys here manually??

    #86819
    robalan
    Member

    Thanks guys—I’m going to have a more competent db admin switch over the WordPress database so that the tables have the wp_ prefix. Everything else seems to be default, so hopefully that fixes it (though if that’s what fixes it, I’m going to be pissed). ;o)

    I’ll keep you posted.

    #86809
    robalan
    Member

    Yes. Installed, copied the “define” code into wp-config… I’ve tried everything you’d find on other forum entries on the topic. I wouldn’t have started my own thread unless I had tried the default “have you…” options and still couldn’t get it to work…

    Any other ideas?

    #86835

    In reply to: Language Problem

    jurasiks
    Participant

    Скорее всего проблема в кодировке БД и хостинга,

    нужно, чтобы бд была utf8_general_ci

    проверь кодировку браузера, базы данных

    и ещё поставь в htaccess:

    AddDefaultCharset utf-8

    AddCharset utf-8 *

    <IfModule mod_charset.c>

    CharsetSourceEnc utf-8

    CharsetDefault utf-8

    </IfModule>

    после этого переустанови форум

    #70045
    Anonymous User
    Inactive

    In the german bbpress board (http://support.bbpress.de/topic/installation-der-sprachdatei) i found for the language problem the following code:

    // Load the default text localization domain.

    if ( !(defined('DB_NAME')) ) { // Include localization the bbPress-way when WP is not running.

    load_default_textdomain();

    }

    else {

    $locale = get_locale();

    $mofile = BB_LANG_DIR . "$locale.mo";

    load_textdomain(‘default’, $mofile);

    };

    But this seems not to work with the new version. :(

    Markus

    #33967

    Topic: BuddyBar in bbPress

    in forum Plugins
    Anonymous User
    Inactive

    Hi gerikg,

    i saw your post about your problems with the integration of the BuddyBar in bbPress – (http://bbpress.org/forums/topic/buddypress-default-theme-for-bbpress). I found it after a short research in Google – because I’ve the same problems yesterday.

    Warning: call_user_func_array() [function.call-user-func-array]: First argument is expected to be a valid callback, 'bp_core_admin_bar_css' was given in /homepages/0/00/htdocs/wpbpbbp/wordpress/wp-includes/plugin.php on line 339

    Warning: call_user_func_array() [function.call-user-func-array]: First argument is expected to be a valid call

    But … I think I have an “hack” for you – I changed a few lines of code in my installation and now it seems to work. :)

    These was “myWay”:

    1. Deep Integration between WordPress and bbPress

    2. Plugins on bbPress: buddybar-in-bbpress

    3. Edit bp_buddybar.php – I only comment out the following lines

    /* add_action( 'bb_head', 'bp_core_admin_bar_css', 1 );

    add_action( 'bb_head', 'bp_core_add_js', 1 );

    add_action( 'bb_admin_head', 'bp_core_admin_bar_css', 1 );

    add_action( 'bb_admin_head', 'bp_core_add_js', 1); */

    4. Edit bp-core-adminbar.php

    Here I’ve a error code because auf “$wpdb” – so I commet out:

    /* $blog_prefix = $wpdb->get_blog_prefix( $current_blog->id );*/

    5. header.php in my theme

    I put the Stylesheet-Link to my header.php file.

    <link rel=”stylesheet” href=”http://www.mysteria3000.de/wp/wp-content/plugins/buddypress/bp-themes/bp-default/_inc/css/adminbar.css&#8221; type=”text/css” />

    No the best solution – but it works for me. :)

    Greetings

    Markus

    Positics
    Member

    I have a similar challenge to the earlier topic “Linking back to main website”. It is for a site I have configured for someone, who has asked for the same ability for their logo to have a link associated to it, that will take the user back to the home page of site that pointed them to the blog / forum.

    I have installed bbpress 1.02

    You suggested the following;

    in header.php where the body tag starts.

    ===========================

    <body id=”<?php bb_location(); ?>”>

    <div id=”wrapper”>

    How do I locate this logo in the top right hand corner of the header where the default bb_emblem was located?

    “<a’x’ href=”http://www.reflexology-uk.net/site”><img src=”images/iior.jpg” alt=”ITEC” /><‘x’/a>”

    ===Note===== ‘x’ === added in string above to break code so it will print =====

    At presentI have a logo situated in the CSS file as a background, which you suggest is not the right way to go about achieving this.

    Any pointers will be useful. Thanks.

    #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?

    #76041
    chrishajer
    Participant

    If this is the home page of the website:

    http://oakleafmeadowshoa.net/

    Then that is what your link will be. Just like this:

    <a href="http://oakleafmeadowshoa.net/" title="website home">Website Home</a>

    Is it any more complicated than that? You don’t necessarily need a page name in there, the web server will serve up the default index page for that site. If that’s the page you want, then you’re done.

    #76039
    juboe
    Member

    What I am ultimately trying to do is allow the users to get back to the home page of the website from this home page of the forum. You’re right! I didn’t think that it should be in the phpBB folder. This is my first website and I guess it shows. When I tried once before to just add link path back to http://oakleafmeadowshoa.net/default.html it gave an error page stating that this url page was not found.

    I don’t want the default.html in the forum folder but just need a proper path back to the home page of my website.

    #76038
    chrishajer
    Participant

    The home page link should not be to http://oakleafmeadowshoa.net/phpBB/default.html

    but should link to http://oakleafmeadowshoa.net/ right? What do you mean by “Home”? Home of the website? What URL?

    If you really want to link Home to http://oakleafmeadowshoa.net/phpBB/default.html then you will need to adjust the path to your CSS and images. I can’t figure out why you want that default.html in the forum folder though. Please explain further what you’re trying to do.

    #86551
    chrishajer
    Participant

    Seems like a separate issue from the one I was having here then, and even the trac ticket. We should focus on your issue.

    What sort of server are you on (Linux, OSX, Windows)? Any plugins that might affect this? How about changing to the default them. There was a problem for a while with both delete and undelete links being visible in some themes.

    #76037
    juboe
    Member

    Okay, I did get the link to work going back to the home page. I added a copy of the default.html in the bb-templates folder. The problem is that it does not bring along the css styling. The website is password protected but I have created a temporary user and password so that someone can take a look at this and tell me if there is a way to bring along the css styling with my default page so that when users link back to the home page, it will look like it originally looks.

    user: tempuser

    pass: GNN*Xup*OrD, (don’t forget the comma)

    oakleafmeadowshoa.net

    Just go to Bulletin Board page and link to the forum. I put the home page link at the top left in the header.

    Thanks,

    juboe

    #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?

    #86588
    gerikg
    Member

    zaerl, that will show only on the title correct? I want an addition to that.

    I was thinking if forum=hidden then echo…. (I don’t know how to write that)

    example: The default label for a hidden forum is “[H]” so I will use that.

    [H] Installation — Getting it up and running – This is a Hidden Forum

    gerikg
    Member

    for the default theme it’s on front-page.php and forum.php

    #86535
    moochyschwag
    Member

    I thought that theme came with the installation. Is that not the default theme? There is a blue one and a green one and no other themes in the folder. I didn’t install any plug-ins. What do you suggest? If I made another clean install from the same files won’t the same thing happen?

    #33941
    yoyopop
    Member

    if I delete a topic, then go back to the topic via the admin panel in order to ‘undelete’ the topic, it doesn’t work.

    On clicking ‘undelete entire topic’ I am forwarded to a blank screen at a url in this format (had to break it up to fit on the page):

    /bbpress/bb-admin/delete-topic.php?
    id=2090&view=all&_wp_http_referer=/bbpress/topic.php
    %3Fid%3D2090%26view%3Dall&_wpnonce=be30703be1

    this is the case with no plugins installed and default template. Any ideas? I couldn’t find this issue anywhere on the forums already.

    #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?

    #78640
    yoyopop
    Member

    I’m having this same issue in a test forum I’m running at the moment. Adding tags doesn’t refresh the page, consistently in certain topics. And when it does, the whole page reloads, rather than just the tag section via ajax…

    This problem happens when using the default theme.

    Any ideas? kirpi.it didn’t say how it was fixed!?

    #86463
    lwoods
    Member

    I just installed bbpress into a folder “bbpress” that is in the root of my site, which is essentially a WordPress site. It said that the installation when fine. I want to integrate it into WP but the bbpress installation instructions say that I need to go to the bbpress admin page in order to do this. This is where things go wrong. I can’t GET to the admin page. It keeps sending me back to the bbpress default page, a page of forums.

Viewing 25 results - 5,376 through 5,400 (of 6,794 total)
Skip to toolbar