Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'code'

Viewing 25 results - 30,076 through 30,100 (of 32,491 total)
  • Author
    Search Results
  • #57977
    ganzua
    Member

    I’ve been watching the resulting code with fire fox and I notice that

    a </div> appears and this one was not opened before;

    <p>Allowed markup: a blockquote br code em strong ul ol li.
    Put code in between backticks.</p>

    <input type=”hidden” name=”_wpnonce” value=”9e88410df1″ /><input type=”hidden” name=”_wp_http_referer”

    value=”/wordpress/bbpress/?new=1″ />

    </form>

    </div>

    but in post form there is not any div

    #1928
    willspill
    Member

    My bbpress is having trouble displaying stylesheets correctly. I am using the default style that bbpress comes with. I have it installed locally on a test environment.

    The admin section looks exactly how it should, but the forum itself does not. I have noticed that the path to the stylesheet is incorrect.

    <link rel=”stylesheet” href=”http://localhostbbpress/bb-templates/kakumei/style.css&#8221; type=”text/css” />

    notice how after localhost the “” is the wrong way.

    Not sure if anyone can tell me how to fix it.


    in the admin page, the stylesheet path is correct

    <link rel=”stylesheet” href=”http://localhost/bbpress/bb-admin/style.css&#8221; type=”text/css” />


    my config.php looks like this

    // If your bbPress URL is http://bbpress.example.com/forums/ , the examples would be correct.

    // Adjust the domain and path to suit your actual URL.

    // Just the domain name; no directories or path. There should be no trailing slash here.

    $bb->domain = ‘http://localhost&#8217;; // Example: ‘http://bbpress.example.com&#8217;

    // There should be both a leading and trailing slash here. ‘/’ is fine if the site is in root.

    $bb->path = ‘/bbpress/’; // Example: ‘/forums/’

    #57975
    fel64
    Member

    Alright. Split up the <?php endif; else : // $forums ?> into <?php endif; ?> and <?php else : ?> and put the </div> we were moving around between them. Could work.

    #55774
    fel64
    Member

    Did you actually go around to each user and set their bozo field to 0 and update? Otherwise the fix won’t work and neither would disabling akismet.

    I’m think $bb->akismet_key = 'anything other than a key' does disable it. Take a look at bb-includes/akismet.php.

    #57965
    fel64
    Member

    Hey, if that worked for you can you do me a big favour? (If it didn’t work, this is worth a try!) Put it back at the top like you had it and then underneath it add

    global $bbdb;

    and see if that works. Thank you very much!

    #1672
    ganzua
    Member

    Hi!

    I put es_ES .mo and .po translation files in this folder;

    bb-includes/languages/

    Then I changed config.php;

    define(‘BBLANG’, ‘es’);

    and as a result the whole forum stops working and I’m getting this message;

    Fatal error: Cannot redeclare class CachedFileReader in D:wampwwwwordpressbbpressbb-includesstreams.php on line 163

    Any idea of what’s wrong?

    I have another question;

    Is there anyway I can make bbpress to read wordpress language files in wordpress language folder?

    #55773
    tigrelog
    Member

    This fix didn’t work for me. Anybody else has an idea how to totally disable Akismet SPAM?

    Setting $bb->akismet_key = 'false' didn’t work for me either.

    #57973
    ganzua
    Member

    WARNING!!!!!! new error!

    I’ve just realized that after moving that div and when the user logouts the front page is messed.

    I moved the div to the former place and front page displays ok again.

    So;

    * div in former place + logged out user = front-page ok but add new link not working

    * div above <?php endif; else : // $forums ?> + logged in user = add new link working but frontpage messed. :(

    #57972
    fel64
    Member

    Cool, glad to help. :)

    Ticket #656

    #57971
    ganzua
    Member

    Thanks a lot fel64!

    “Try it. If it works, come back and tell us please, because then we should probably make a trac ticket.”

    It works! Code should be;

    </div> <!– this div now is here –>

    <?php endif; else : // $forums ?>

    <h3 class=”bbcrumb”>“><?php bb_option(‘name’); ?></h3>

    <?php post_form(); endif; ?>

    <!– </div> and before was here –>

    :)

    #56525

    In reply to: Strut Your bbPress!

    fel64
    Member

    That’s too bad. It’s a pretty nice site anyway. ;) Beige with green’s an interesting combination, but I think it works. The link colour when you hover over them clashes a bit, and I suggest making the brown you get when you hover over a thread title to be the same beige as that for the table headers, but I like it – especially the header.

    #57970
    fel64
    Member

    Front-page.php I believe is used to create the ?new=1 page.

    Near the very bottom, look for a <?php endif; else : ?> line. Below this it should have code for <h3 class="bbcrumb"> ... and then <?php post_form(); endif; ?>

    The code between the else : and the endif; are what executes to make the ?new=1 page. Looking at my theme in comparison, I think that the </div> underneath the else : ... endif; should actually be above it. Try it. If it works, come back and tell us please, because then we should probably make a trac ticket. Never noticed this before – I hacked up kakumei into my template straight away and assumed it to be a fault of mine in rewriting the horrible if : endif; method into nice braces.

    [Edit] Just tested it myself, and there are five </div> in the page source in kakumei and only four <div. Pretty sure that’ll be your problem.

    #49934

    In reply to: En español

    ganzua
    Member

    “Ahora mismo pienso que la solución real es incluir la traducción del foro en el archivo .mo de WordPress.”

    -> Hola! ¿Como se configura bbpress para que lea el archivo .mo de wordpress?

    Esto;

    define(‘BBLANG’, ‘es_ES’);

    en el config.php me da este error;

    Fatal error: Cannot redeclare class CachedFileReader in D:wampwwwwordpressbbpressbb-includesstreams.php on line 163

    #57963
    Trent Adams
    Member

    I would imagine it was this:

    $bb->domain = 'http://saladtossers.org'; // Example: 'http://bbpress.example.com'
    // There should be both a leading and trailing slash here. '/' is fine if the site is in root.
    $bb->path = '/bbpress/'; // Example: '/forums/'

    It needed the additional /wp/bbpress/ as the path.

    Trent

    fel64
    Member

    Pop this in at the top of your register.php file:

    header("Location: http://www.example.com/"); /* Redirect browser */
    /* Make sure that code below does not get executed when we redirect. */
    exit;

    In the long term it might be good to solve why bb users don’t work with WP, but I can’t think of anything off the top of my head.

    gjaw88
    Member

    I’m not a php coder yet and am learning. How would I go about making when I click “register” on bbpress to shoot it to my wordpress registration instead?

    The reason why is because I have it setup so that WP users can also log on the forum, but bbpress signups don’t work with WP.

    Thanks

    #49933

    In reply to: En español

    Covi
    Member

    Tengo un problema con la integración con WordPress… por cierto, hola, creo que es la primera vez que escribo ^^

    Pues eso, a ver si a alguién más le ha pasado, más que la integración el problema es sin intentamos usar las funciones de WordPress incluyendo wp-blog-header y además traducimos a cualquier idioma, por eso creo que la mayoría de la comunidad no se habrá dado cuenta ya que, quizás, no especifican un lenguaje (BBLANG).

    Lo que ocurre es:

    Al especificar la variable BBLANG se activa la traducción incluyendo algunos archivos desde bb-settings.php:

    if ( defined('BBLANG') && '' != constant('BBLANG') ) { // Covi:Don't include these when WP TRANSLATION is running: BBLANG defined

    include_once(BBPATH . BBINC . 'streams.php');

    include_once(BBPATH . BBINC . 'gettext.php');

    }

    if ( !( defined('DB_NAME') || defined('WP_BB') && WP_BB ) ) { // Don't include these when WP is running.

    require( BBPATH . BBINC . 'kses.php');

    require( BBPATH . BBINC . 'l10n.php');

    }Estos archivos también los incluye WordPress y provoca un error (funciones repetidas).

    La solución, como indica el archivo, aunque no en la traducción sobre BBLANG, es no incluirlos y lo soluciona en parte pero nos quedamos sin traducción porque usa el .mo de WordPress creo.

    Ahora mismo pienso que la solución real es incluir la traducción del foro en el archivo .mo de WordPress.

    Un saludo ;)

    #57960
    gjaw88
    Member

    Here is the site. NO I’m not using this for my site, this is just a test and is what domain name my friend offered haha. Nothing is inappropiate on this site, it is just for testing purposes before I buy my own domain.

    http://www.saladtossers.org/wp/bbpress/

    ‘code'<?php

    // ** MySQL settings ** //

    define(‘BBDB_NAME’, ‘mike_i126wor’); // The name of the database

    define(‘BBDB_USER’, ‘mike_i126wor’); // Your MySQL username

    define(‘BBDB_PASSWORD’, passwordhere’); // …and password

    define(‘BBDB_HOST’, ‘localhost’); // 99% chance you won’t need to change this value

    // Change the prefix if you want to have multiple forums in a single database.

    $bb_table_prefix = ‘bb_’; // Only letters, numbers and underscores please!

    // If your bbPress URL is http://bbpress.example.com/forums/ , the examples would be correct.

    // Adjust the domain and path to suit your actual URL.

    // Just the domain name; no directories or path. There should be no trailing slash here.

    $bb->domain = ‘http://saladtossers.org&#8217;; // Example: ‘http://bbpress.example.com&#8217;

    // There should be both a leading and trailing slash here. ‘/’ is fine if the site is in root.

    $bb->path = ‘/bbpress/’; // Example: ‘/forums/’

    // What are you going to call me?

    $bb->name = ‘test site’;

    // This must be set before running the install script.

    $bb->admin_email = ’email@gmail.com’;

    // Set to true if you want pretty permalinks.

    $bb->mod_rewrite = false;

    // The number of topics that show on each page.

    $bb->page_topics = 30;

    // A user can edit a post for this many minutes after submitting.

    $bb->edit_lock = 60;

    // Your timezone offset. Example: -7 for Pacific Daylight Time.

    $bb->gmt_offset = 0;

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

    // chosen language must be installed to bb-includes/languages.

    // For example, install de.mo to bb-includes/languages and set BBLANG to ‘de’

    // to enable German language support.

    define(‘BBLANG’, ”);

    // Your Akismet Key. You do not need a key to run bbPress, but if you want to take advantage

    // of Akismet’s powerful spam blocking, you’ll need one. You can get an Akismet key at

    // http://wordpress.com/api-keys/

    $bb->akismet_key = ”; // Example: ‘0123456789ab’

    // The rest is only useful if you are integrating bbPress with WordPress.

    // If you’re not, just leave the rest as it is.

    $bb->wp_table_prefix = ‘wp_’; // WordPress table prefix. Example: ‘wp_’;

    $bb->wp_home = ‘http://www.saladtossers.org/wp&#8217;; // WordPress – Options->General: Blog address (URL) // No trailing slash. Example: ‘http://example.com&#8217;

    $bb->wp_siteurl = ‘http://www.saladtossers.org/wp&#8217;; // WordPress – Options->General: WordPress address (URL) // No trailing slash. Example: ‘http://example.com&#8217;

    /* Stop editing */

    if ( !defined(‘BBPATH’) )

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

    require_once( BBPATH . ‘bb-settings.php’ );

    ?> ‘code’

    #1923
    bavardage
    Member
    <?php
    require_once( '../wp-blog-header.php' );
    $bb->WP_BB = true;
    define('WP_BB', true);

    Start of config is as per above, but get the following error:

    Fatal error: Call to a member function on a non-object in /home/jefferss/public_html/blog/forum/bb-includes/functions.php on line 503

    Any ideas?

    #57959
    Trent Adams
    Member

    Put up a copy of your config.php with the integration portions in it. Tell us what your wordpress database prefix is and we can try and work this out. Just saying it doesn’t work will not help us help you. We need details of what you have tried and what your have entered. Just make sure you don’t put any password or other information in.

    For reference, my WP integrated config.php has these entries:

    $bb->wp_table_prefix = 'wp_';  // WordPress table prefix.  Example: 'wp_';
    $bb->wp_home = 'http://trentadams.com'; // WordPress - Options->General: Blog address (URL) // No trailing slash. Example: 'http://example.com'
    $bb->wp_siteurl = 'http://trentadams.com'; // WordPress - Options->General: WordPress address (URL) // No trailing slash. Example: 'http://example.com'

    It is important to have bbPress in the same database as wordpress. As well, give us your URL to check this out for ourselves and try and see if we can help.

    Trent

    #57957
    gjaw88
    Member

    I just tried that and it does the same thing…

    :(

    #57956
    Trent Adams
    Member

    It would be your database prefix:

    $bb->wp_table_prefix = 'wp_';

    Trent

    #57361

    In reply to: Plugin: Move It

    fel64
    Member

    To get it to be for Key Masters only instead of Admins (and above) only, use 'use_keys' instead of 'administrate'. :)

    #57360

    In reply to: Plugin: Move It

    Trent Adams
    Member

    You can put up a conditional like I use in the YouTube plugin:

    if (bb_current_user_can('administrate')) :

    Put that after the main plugin function and then the following before the closing of that function:

    endif;

    Trent

    #57906
    drmike
    Member

    Hmm, I tried code (well teh backticks) in there when I noticed that the blockquotes didn’t work. In Netscape they looked teh same so I went back to just using the blockquote.

    Moderators have backend access, right Trent? You should change that. ;)

Viewing 25 results - 30,076 through 30,100 (of 32,491 total)
Skip to toolbar