Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for '\"wordpress\'

Viewing 25 results - 21,676 through 21,700 (of 26,881 total)
  • Author
    Search Results
  • #72650
    bedbugger
    Participant

    Aha… 2.7.1 and 0.9.0.4: got them integrated (light integration: logins only), using _ck_’s guide here: https://bbpress.org/forums/topic/wordpress-and-bbpress-integration-101

    and Ann’s plugin: http://superann.com/2009/02/26/wordpress-26-27-bbpress-09-cookie-integration-plugin/

    #72684
    adeboy
    Member

    I just had a similar event. Using IE & FF that i had previously logged in to bbpress/wordpress and then logged out, i couldn’t get the registration form to work. But when i close the browser and reopen then the form works. This is with the alpha bbpress and 2.7 WP

    Not sure if this is really a problem, as it stops someone repeatedly registering in the same session, but worth knowing. Thanks

    #5084

    hi,

    i’ve looked around but haven’t found a solution for a language switcher — i.e. a plugin or instructions on how to make it possible for the user to load different localizations of the bbpress. there were some threads about integrating bbpress with wordpress etc., but i am interested in a purely bbpress solution.

    any tips will be greatly appreciated

    tench

    #65228
    319
    Participant

    Hi, I just installed WP MU 2.7 and am trying to merge it with the latest bbpress install but have some major confusion with the config file secret keys. In new 2.7+ versions of WordPress and WPMU there is no mention of SECRET_KEY or SECRET_SALT, the config instead lists the following 7 keys:

    define(‘AUTH_KEY’, ‘XXXXXXXXXXXXXXXXXXXXXX’);

    define(‘SECURE_AUTH_KEY’, ‘XXXXXXXXXXXXXXXXXXXXXX’);

    define(‘LOGGED_IN_KEY’, ‘XXXXXXXXXXXXXXXXXXXXXX’);

    define(‘NONCE_KEY’, ‘XXXXXXXXXXXXXXXXXXXXXX’);

    define(‘AUTH_SALT’, ‘XXXXXXXXXXXXXXXXXXXXXX’);

    define(‘LOGGED_IN_SALT’, ‘XXXXXXXXXXXXXXXXXXXXXX’);

    define(‘SECURE_AUTH_SALT’, ‘XXXXXXXXXXXXXXXXXXXXXX’);

    While the BBPRESS config only lists one key:

    define(‘BB_SECRET_KEY’, ‘XXXXXXXXXXXXXXXXXXXXXX’);

    Which key in WPMU 2.7+ is equivalent to BB_SECRET_KEY?

    Or, do i now need to define all 7 of the WordPress secret keys in bbpress as well? Eg. BB_AUTH_KEY, BB_SECURE_AUTH_KEY, BB_LOGGED_IN_KEY, etc…

    Any help clearing up this config confusion would be great. Thanks!

    #72693
    _ck_
    Participant

    Silly question but did you rebuild the .mo file?

    The po/mo on the automattic svn is very outdated and is from 0.8

    Try this version which has many more stings, even thought it’s for 1.0 it might work well on 0.9

    http://ayudawordpress.com/bbpress-espanol-alpha-104/

    #62260
    chrishajer
    Participant

    I haven’t seen an answer to that question yet. There are issues with integration and the alpha versions (and to be fair, it is alpha software which no one has recommended we use.)

    #62259
    swaymedia
    Member

    what am i supposed to do then?

    #62258
    chrishajer
    Participant
    #5076
    #62257
    swaymedia
    Member

    Im using BBpress Version 1.0-alpha-6 with WP 2.7.1.. i also have it intergrated cookies and database.

    #62256
    chrishajer
    Participant

    At least the system can find the file now.

    The Cannot redeclare errors are usually because a function of the same name has already been declared, thus it can’t be redeclared.

    What versions did you integrate?

    #62255
    swaymedia
    Member

    hey chris, thanks i just did that.. but i still get an error, it some what smaller though but its this:-

    Fatal error: Cannot redeclare _http_build_query() (previously declared in /home/eraxeco1/public_html/massbase.com/community/bb-includes/backpress/functions.compat.php:21) in /home/eraxeco1/public_html/massbase.com/wp-includes/compat.php on line 45

    now i haven’t touched any other file, i havent touched compat.php either.

    #62254
    chrishajer
    Participant

    Try using the file path to the file rather than a relative path. The system is telling you it can’t find the file in that location. Try this:

    require_once('/home/eraxeco1/public_html/massbase.com/community/bb-load.php');

    #62253
    swaymedia
    Member

    Im using the latest alpha version, My wordpress is on root, and my forum is on a folder called /community.

    I put this on wp-config.php :-

    require_once('/community/bb-load.php');

    im getting this error:-

    Warning: require_once(/community/bb-load.php) [function.require-once]: failed to open stream: No such file or directory in /home/eraxeco1/public_html/massbase.com/wp-config.php on line 2

    Fatal error: require_once() [function.require]: Failed opening required '/community/bb-load.php' (include_path='.:/usr/lib/php') in /home/eraxeco1/public_html/massbase.com/wp-config.php on line 2

    chrishajer
    Participant

    This?

    https://bbpress.org/forums/topic/i-want-to-use-bbpress-function-on-wordpress

    Most of the posts I’ve seen have been old regarding including bbPress inside WordPress.

    There is this for the newer alpha versions, but it only does a couple things:

    https://wordpress.org/extend/plugins/bbpress-live/

    #72682
    chrishajer
    Participant

    Sorry, I deleted the first one as a dupe of this by mistake. Should have undeleted it. My mistake.

    #72651
    _ck_
    Participant

    You can set a cookie and make it semi-permanent.

    Because there is also a filter in that function, you do not need to hack the core.

    $locale = apply_filters('locale', $locale);

    You would make a mini-plugin something like this

    add_filter('locale', 'language_switcher');
    function language_switcher($locale) {
    if (!empty($_REQUEST['lang'])) {$locale=substr(strip_tags(stripslashes($_REQUEST['lang'])),0,30);}
    return $locale;
    }

    You still have to write the code to make some kind of pulldown/menu to select the language and set the cookie.

    There is a language switcher for wordpress that could be ported to bbPress, I think there was some talk about it around here and someone else made their own too.

    Oh here it is:

    https://bbpress.org/plugins/topic/user-languages

    #60880
    swaymedia
    Member

    im getting the same error, but the reference above (chrishajer’s) doesnt help.

    #72681
    swaymedia
    Member

    iv looked everywhere and the documentary, it just shows for WP functions to go in bbpress… i need a vice versa

    swaymedia
    Member

    i just want to add bbpress functions to wordpress what header files do i have to include where?

    #5072
    swaymedia
    Member

    how can i use bbpress functions like: – <?php bb_new_topic_link(); ?> in my wordpress theme?

    what header files do have to add where?

    please dont delete this topic.

    chrishajer
    Participant
    swaymedia
    Member

    i would like to know how to do the other way round of adding BBPRESS functions in wordpress.

    #72677

    HI sway,

    I dont think it does work like that. It’s a confusing name choice as a Category means something different in wordpress. Category in this instance means and equivalent of “section” or a parent group of forums so…

    Category

    – – Forum

    – – – – Topic

    – – Forum

    – – – – Topic

    – – – – Topic

    – – Forum

    – – – – Topic

    If i can link to an old example i made (from September last year) , you can see that the different categories have forums as ‘children’: http://kevinjohngallagher.com/___alpha/bbpress_as_phpbb/

    #5065
    chrishajer
    Participant
Viewing 25 results - 21,676 through 21,700 (of 26,881 total)
Skip to toolbar