Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'code'

Viewing 25 results - 19,651 through 19,675 (of 32,518 total)
  • Author
    Search Results
  • #97612
    mr_pelle
    Participant

    I’m on bbPress latest trunk, testing bbPM 1.0.1 and I’ve never had any problem at all. :)

    #102619

    In reply to: Add variable to link

    Snat
    Member

    What you want to look at is $_GET;

    If you place something like $_GET in the register page (or hook it in as a plugin) then you can add whatever code you need to for the mobile users.

    #97519

    In reply to: Add variable to link

    Snat
    Member

    What you want to look at is $_GET;

    If you place something like $_GET in the register page (or hook it in as a plugin) then you can add whatever code you need to for the mobile users.

    #102578

    Oh don’t worry about it, I’ll see if we can get the thread locked! ;)

    #97478

    Oh don’t worry about it, I’ll see if we can get the thread locked! ;)

    #102354

    You’ve indentified a number of possible plugins that can help/prevent any SPAM on your forum Ramiuz. Yes I’d recommend you used Akismet because it’s designed to work on this kind of stuff, plus it’s owned by Automattic who make sure it integrates well with the likes of bbPress (and WordPress!) — If there is a problem with it, do the developers know about it?

    My $0.02 anyway! ;)

    #97254

    You’ve indentified a number of possible plugins that can help/prevent any SPAM on your forum Ramiuz. Yes I’d recommend you used Akismet because it’s designed to work on this kind of stuff, plus it’s owned by Automattic who make sure it integrates well with the likes of bbPress (and WordPress!) — If there is a problem with it, do the developers know about it?

    My $0.02 anyway! ;)

    #102576

    Yeah you’re best place to get support would be BuddyPress, while it’ll integrate with bbPress, I believe they do some cool stuff with code to make it possible, you’ll also get a much quicker response! :)

    #97476

    Yeah you’re best place to get support would be BuddyPress, while it’ll integrate with bbPress, I believe they do some cool stuff with code to make it possible, you’ll also get a much quicker response! :)

    OreilleMalade
    Participant

    Hi people,

    I’m running a (french) WP (3.0.1) site :

    http://www.oreille-malade.com

    There is a (not integrated) bbPress (1.02) forum :

    http://www.oreille-malade.com/forum

    I used to participate a lot in a forum dealing with same kind of topics (hearing issues) : http://www.sos-audition.org (phpbb)

    Today one of the admin of SOS-audition.org told me they decided to close their forum in a near future. This is very sad as there is a lot of good informations on this forum. I don’t want it to disappear completely from the web !

    These people don’t agree to let me import all their datas because they think it would not be “correct” for users but they are OK for me to import all topics I participated in. In other words, I am allowed to import SOME of their content.

    I let more than 2000 posts on this forum those days so you can guess it would be a loooooong task for me to do it all manually.

    But as they completely abandon the forum they don’t want to do anything to help me do this. So no way for me to get my hands on their phpbb database :-(

    So here is my question :

    is there a (quite simple) way to import this content and export it to :

    1. either posts on WordPress

    2. or topics on bbPress

    Any help would be much appreciated !

    Best regards

    #67179
    ronaldstarr
    Member

    i had that problem in IE7 but didnt knew that the problem existed in IE8 im using win 7 and got to try your trick, anyways thanks for sharing :)

    http://www.reallyvegasphoto.com ‘Las vegas photographer’

    #36137
    DallasBomber
    Member

    Hi all. New bbpress user. Just for some background, I currently have a mediawiki and vanilla forums installed concurrently on the machine I wish to run bbpress on. OS X 10.6.5, php & mysql (both from darwinports) and the stock httpd Apple provides on the OS.

    I receive an error after “installing” (re: unzip and move the files to the appropriate directory) bbpress and creating/editing bb-config.php

    ERROR: Could not establish a database connection

    I’m not much of a php developer since what I can only do is check for minimal syntax and rearrange html elements. Trying to debug the php to mysql is out of my scope. Can anybody offer insights as to what may be going on?

    Cheers!

    #97546
    master5o1
    Participant

    Just managed another way by patching bbPress’ xmlrpc.php and overwriting $_SERVER with the desired value.

    // Poster IP
    $_SERVER['REMOTE_ADDR'] = isset( $structure['poster_ip'] ) ? $structure['poster_ip'] : $_SERVER['REMOTE_ADDR'];

    Then what I do on the bbPress Mobile side is send the data:

    $params_array = new xmlrpcval(
    array(
    "title" => new xmlrpcval($title, "string"),
    "text" => new xmlrpcval($text, "string"),
    "forum_id" => new xmlrpcval($forum_id, "int"),
    "tags" => new xmlrpcval($tags, "string"),
    "poster_ip" => new xmlrpcval($_SERVER['REMOTE_ADDR'], "string")),
    "struct");

    #102646
    master5o1
    Participant

    Just managed another way by patching bbPress’ xmlrpc.php and overwriting $_SERVER with the desired value.

    // Poster IP
    $_SERVER['REMOTE_ADDR'] = isset( $structure['poster_ip'] ) ? $structure['poster_ip'] : $_SERVER['REMOTE_ADDR'];

    Then what I do on the bbPress Mobile side is send the data:

    $params_array = new xmlrpcval(
    array(
    "title" => new xmlrpcval($title, "string"),
    "text" => new xmlrpcval($text, "string"),
    "forum_id" => new xmlrpcval($forum_id, "int"),
    "tags" => new xmlrpcval($tags, "string"),
    "poster_ip" => new xmlrpcval($_SERVER['REMOTE_ADDR'], "string")),
    "struct");

    #97545
    master5o1
    Participant

    Sweet. In my plugin, I just made this:

    if ( isset($_GET['poster_ip']) && !empty($_GET['poster_ip']) ) {
    $bbdb->query( $bbdb->prepare( "UPDATE $bbdb->posts SET poster_ip = %s WHERE post_id = %d", $_GET['poster_ip'], $post_id ) );
    }

    And the .'&poster_ip='.$_SERVER['REMOTE_ADDR'] is in bbPress Mobile.

    It would probably be better doing it a different way, can anyone suggest something?

    #102645
    master5o1
    Participant

    Sweet. In my plugin, I just made this:

    if ( isset($_GET['poster_ip']) && !empty($_GET['poster_ip']) ) {
    $bbdb->query( $bbdb->prepare( "UPDATE $bbdb->posts SET poster_ip = %s WHERE post_id = %d", $_GET['poster_ip'], $post_id ) );
    }

    And the .'&poster_ip='.$_SERVER['REMOTE_ADDR'] is in bbPress Mobile.

    It would probably be better doing it a different way, can anyone suggest something?

    #36136
    MathiasB
    Member

    Is there a way to add a variable to the links?

    I wanna make a mobile layout and it needs to be passed…

    like: www.site.com/bbpress/register.php?mobile=true … if you go then to the next step,

    the ?mobile=true stays until you close your browser…

    Maybe bad explained… :(

    #102609
    mr_pelle
    Participant

    Try zaerl Editor instead, I’ve never had problems with that. =)

    #97509
    mr_pelle
    Participant

    Try zaerl Editor instead, I’ve never had problems with that. =)

    #102596
    mr_pelle
    Participant

    Something like this:

    <?php if ( bb_is_front() ) : ?>
    <meta name="description" content="bla bla bla" />
    <?php endif; ?>

    #97496
    mr_pelle
    Participant

    Something like this:

    <?php if ( bb_is_front() ) : ?>
    <meta name="description" content="bla bla bla" />
    <?php endif; ?>

    #36134
    jabre
    Member

    Maybe someone can help me here.

    Everytime I post a Link in my BBPress-Forum. It adds a ” to the Link.

    For Example:

    BBpress

    is transformed to

    BBpress

    I use a TinyMCE-Plugin, which I wrote on my own. But if I use Editor-Plugins from BBPress Plugin Repository (Wysiwyg CKEditor for Example), the same thing happens.

    Any Ideas?

    BBPress 1.0.2 on Apache

    Jan

    #102594
    mr_pelle
    Participant

    Does anyone how to insert meta description only on the home page?

    Just check if bb_is_front(). =)

    #97494
    mr_pelle
    Participant

    Does anyone how to insert meta description only on the home page?

    Just check if bb_is_front(). =)

    #102248
    citizenkeith
    Participant

    Thanks for the update, and thanks to Justin for contributing code.

    A side note: I still don’t understand why healthy debate is considered “drama.” :D

Viewing 25 results - 19,651 through 19,675 (of 32,518 total)
Skip to toolbar