Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'code'

Viewing 25 results - 21,501 through 21,525 (of 32,516 total)
  • Author
    Search Results
  • #87422

    My email – ashishsainiashfameatgmaildotcom

    #87089

    In reply to: Compatibility ….

    evilgeek23
    Member

    thats not a spam script ….. it has a verification thingy built in ….. u always have to put in the code …. and there is a 10 emails per day limit on an ip …..

    btw ill post the error a bit later as im goin to sleep right now … “please”

    #87215
    mr_pelle
    Participant

    @zaerl: yep, that’s what I have in my post.php too.

    #87214
    zaerl
    Participant
    <p>
    <strong><?php post_author(); ?></strong><br />
    <small><?php post_author_title_link(); ?></small>
    </p>

    #87086

    In reply to: Compatibility ….

    evilgeek23
    Member

    kevin , i said i will use that DOMAIN , not that website …. i use that website for testing any php scripts i code… my wordpress blog is local currently ….

    and btw , signatures aint workin in 1.0.2

    #87084

    In reply to: Compatibility ….

    EvilGeek,

    With all due respect, what basic features we had working in 0.9 still work in 1.0. bbPress 1.0 didn’t take-away/change any of the basic features in the core; if anything it added to them slightly. Yes ther are basic forum features that bbPress doesn’t have, but then it’s never had them.

    I doubt anyone will convert the plugins you need for free because 1) if they wanted to they would have done so already, 2) you’ve only been part of the project for 1 week and 3) You didn’t say please (manners count for alot)!

    You could pay for someone to convert them for you, but that would be a separate request, and would be time consuming (and possibly/probably expensive).

    Also, please don’t bump your thread, especially as you bumped it 2 minutes after you last posted, thats just stooopid – this forum aint that busy ;)

    And finally, its not for me to be anyone else’s moral voice, but man, thats a poor assed website; with the sole purpose of sending spam email.

    #87209
    mr_pelle
    Participant

    Edit post.php @line 5 changing post_author_link(); into post_author();

    #87129
    jakshi
    Member

    Check wp-config.php and bb-config.php closely. May be you forget something to do.

    Did you cut to 32 chars BB_AUTH_KEY = AUTH_KEY, BB_SECURE_AUTH_KEY=SECURE_AUTH_KEY in wp-config.php and bb-config.php?

    I have working cookie integration now.

    My wp-config.php (without comments and passwords)

    <?php

    define( ‘COOKIEPATH’, ‘/’ );

    define(‘DB_NAME’, ‘wordpress’);

    define(‘DB_USER’, ‘wpuser’);

    define(‘DB_PASSWORD’, ‘StrongPassword’);

    define(‘DB_HOST’, ‘localhost’);

    define(‘DB_CHARSET’, ‘utf8’);

    define(‘DB_COLLATE’, ‘utf8_general_ci’);

    define(‘AUTH_KEY’, ’32charsalphanumerickeys’);

    define(‘SECURE_AUTH_KEY’, ’32charsalphanumerickeys’);

    define(‘LOGGED_IN_KEY’, ’32charsalphanumerickeys’);

    define(‘NONCE_KEY’, ’32charsalphanumerickeys’);

    $table_prefix = ‘wp_’;

    define (‘WPLANG’, ‘ru_RU’);

    if ( !defined(‘ABSPATH’) )

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

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

    ?>

    My bb-config.php (without comments and passwords)

    <?php

    define( ‘COOKIEPATH’, ‘/’ );

    define( ‘BBDB_NAME’, ‘wordpress’ );

    define( ‘BBDB_USER’, ‘wpuser’ );

    define( ‘BBDB_PASSWORD’, ‘StrongPassword’ );

    define( ‘BBDB_HOST’, ‘localhost’ );

    define( ‘BBDB_CHARSET’, ‘utf8’ );

    define( ‘BBDB_COLLATE’, ‘utf8_general_ci’ );

    define( ‘BB_AUTH_KEY’, ’32charsalphanumerickeys’ );

    define( ‘BB_SECURE_AUTH_KEY’, ’32charsalphanumerickeys’ );

    define( ‘BB_LOGGED_IN_KEY’, ’32charsalphanumerickeys’ );

    define( ‘BB_NONCE_KEY’, ’32charsalphanumerickeys’ );

    $bb_table_prefix = ‘bb_’;

    define( ‘BB_LANG’, ‘ru_RU’ );

    ?>

    There are a lot mention about problem with cookie integration wordpress 2.9.2 and bbpress 1.0.2 .

    So you are one of the many :)

    #87409
    chrishajer
    Participant

    WordPress mentions creating the database first, in (2) here:

    https://codex.wordpress.org/Installing_WordPress#Famous_5-Minute_Install

    Their docs are a lot more comprehensive than those for bbPress.

    #87398
    pagal
    Participant

    mail sent :)

    #87268

    In reply to: My Account Is Dead

    ericnovak2
    Member

    I see that is says in the number of views, “array.” I assumed that means something is wrong with the account and I didn’t get any answers which could mean I just post really stupid stuff :P

    #87395
    zaerl
    Participant

    Please take note that the “10” limit is hardcoded. I can make an admin panel if you need to change the value. Or you can simply modify it in za-link-limitation.php line 10.

    #87393
    pagal
    Participant

    zaerl you are amazing… :)

    #87317
    f00f
    Member

    You want to look here to find such a function: https://trac.bbpress.org/ticket/1207

    #87347
    wemaflo
    Member

    I have activated your theme, it works great! Tanks for that!

    But deep integration is a little bit too much in my opinion :)

    #68596
    KateS30
    Member

    So nobody has this WP Mimic bbpress theme :(

    thanks anyways

    #87316
    Navin
    Member

    To give an example. A piece of code generates the post url of each reply in this topic, see below:

    https://bbpress.org/forums/topic/direct-code-to-post-url#post-67639

    https://bbpress.org/forums/topic/direct-code-to-post-url#post-67659

    https://bbpress.org/forums/topic/direct-code-to-post-url#post-67660

    i want the code that generates that unique url for each reply.

    Is there a way?

    #87315
    zaerl
    Participant

    Yes. The post URL is just an anchor URL appended to the topic URL like in many BBS engine out there. As ashfame said you can’t have a page that display only a single post. But what you want can be easily achieved with a plugin.

    #87370
    chrishajer
    Participant

    The author ID should be pretty constant no matter what you do with migration or upgrade. The worst thing about it is that you will be hard coding the author ID in your style.css. You could always create a plugin and make an admin page, but if it’s not going to happen too often, simply editing the style.css should not be too bad. I can imagine a couple different classes (super member, cool dude, expert, pro, etc) then for each of those defined classes you would just add to the members that applies to:

    .pro, .author-14, .author-355, .author-84 {
    font-weight: bold;
    background-color: #666;
    border: 1px solid #CCC;
    }

    You would just add more .author- classes to your CSS to have that new author highlighted like others of the same stature.

    #87346
    Arturo
    Participant

    if you want the simple theme is easy to “fix”

    tomorrow i create a simple theme for bbpress ;)

    #87314

    @chanderbs

    a post don’t have its own page like in other forum scripts, if that’s what you looking for

    #87313
    Navin
    Member

    I’m trying to insert the Like button from Facebook into my bbpress-based forum. Therefor i need the exact url of each reply.

    is there a code for that? at the moment im using <?php topic_posts_link(); ?> but thats not the best one, cos it generates a link to the topic url, instead to the reply url.

    #87368

    I think it can be done by hacking the template to add

    author-author ID

    as a class to the DIV and then style as per CSS

    #82557
    Skip Savage
    Member

    Thanks Coffee4cr and kingkong954!

    Changing from PHP4 to PHP5 worked for me.

    I then deleted these lines from both wp- and bb-config.php files (earlier “fixes”)

    define( 'COOKIEHASH', 'dsfasdfasdfasdfas' );
    define( 'SITECOOKIEPATH', '/' )

    and it still works.

    #87312
    zaerl
    Participant

    post.php line 11

    <a href="<?php post_anchor_link(); ?>">#</a>

Viewing 25 results - 21,501 through 21,525 (of 32,516 total)
Skip to toolbar