Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 32,176 through 32,200 (of 32,678 total)
  • Author
    Search Results
  • #3469
    marcbrazeau
    Member

    My BBPress installation cannot find my salt cookies even when I plug them into the install from wp-config.

    They do not appear in my WPMU admin options menu.

    I always get this message at the end of install:

    >>> WordPress “auth” cookie salt not set.

    >>>>>> Could not fetch “auth” cookie salt from the WordPress options table.

    >>>>>> You will need to manually define the “auth” cookie salt in your database.

    >>> WordPress “logged in” cookie salt not set.

    >>>>>> Could not fetch “logged in” cookie salt from the WordPress options table.

    >>>>>> You will need to manually define the “logged in” cookie salt in your database.

    Forum could not be created!

    Nevertheless, I get an email saying that the install was successful. But when I go to the BBPress admin in the WPMU dashboard it doesn’t see the installation.

    #37803
    marcbrazeau
    Member

    My BBPress installation cannot find my salt cookies even when I plug them into the install from wp-config.

    They do not appear in my WPMU admin options menu.

    I always get this message at the end of install:

    >>> WordPress “auth” cookie salt not set.

    >>>>>> Could not fetch “auth” cookie salt from the WordPress options table.

    >>>>>> You will need to manually define the “auth” cookie salt in your database.

    >>> WordPress “logged in” cookie salt not set.

    >>>>>> Could not fetch “logged in” cookie salt from the WordPress options table.

    >>>>>> You will need to manually define the “logged in” cookie salt in your database.

    Forum could not be created!

    Nevertheless, I get an email saying that the install was successful. But when I go to the BBPress admin in the WPMU dashboard it doesn’t see the installation.

    #3466
    mburp
    Member

    A few random notes for now. I’ll add others as I proceed. Having reviewed the BuddyPress files in mu-plugins root for 1.0b1 and 1.0b2, I find a lot of the following:

    Presentation of date and time differs from culture to culture. Its better to mark these as translatable strings than to hard code in a western standard.

    My understanding is that when a text domain is used to denote a language file other than the main WordPress MU language file, it needs to be added to every marked string, not just the first marked string in a line.

    I’ve found a couple of instances like this from line 63 of bp-blogs/bp-blogs-ajax.php:

    _e( sprintf( 'Latest Post: %s', '<a>blog_id ) . '">' . apply_filters( 'the_title', $post[0]->post_title ) . '</a>' ), 'buddypress' );

    That won’t be recognized. This will:

    sprintf( __('Latest Post: %s', 'buddypress'), '<a>blog_id ) . '">' . apply_filters( 'the_title', $post[0]->post_title ) . '</a>' );

    I also find a lot of instances of sentence fragments interspersed between segments of code. Syntax varies significantly between languages; sentence fragments are often untranslatable – without going in and tweaking the code.

    Here’s what I have so far, line numbers only I’m afraid. I expect I’ve missed a lot even in these few files. Line numbers are from 1.0b2

    bp_core.php: 785, 788

    bp-friends.php: 261, 265, 271, 275

    bp-groups.php: 1100, 1103, 1114, 1116, 1127, 1129, 1141, 1143, 1154, 1156, 1167, 1169

    bp-messages.php: 372, 374

    bp-xprofile.php: 577, 580

    bp-blogs/bp-blogs-ajax.php: 53

    bp-blogs/bp-blogs-ajax.php: 44

    bp-blogs/directories/bp-blogs-directory-blog.php: 106, 177

    If you’ll leave this string open, I’ll add to it as I go along.

    Michael

    #37783
    reprocessor
    Participant

    and some of this:

    [Sat Feb 7 17:41:14 2009] [error] [client 86.162.51.73] user gigbuddy not found: /

    [Mon Feb 9 12:26:44 2009] [error] [client 86.158.64.7] FastCGI: server “/var/www/fcgi/php-cgi” stderr: WordPress database error Unknown column ‘g.status’ in ‘where clause’ for query SELECT id as group_id, slug FROM wp_bp_groups WHERE g.status = ‘public’ made by require_once, do_action, call_user_func_array, groups_admin_settings, bp_has_groups, BP_Groups_Template->bp_groups_template, groups_get_all, BP_Groups_Group->get_all

    [Mon Feb 9 12:28:56 2009] [error] [client 86.158.64.7] user damageinc not found: /phpmyadmin

    [Mon Feb 9 12:29:53 2009] [error] [client 86.158.64.7] user gigbuddy not found: /wp-admin/

    [Thu Feb 12 10:41:55 2009] [error] [client 86.162.51.73] FastCGI: server “/var/www/fcgi/php-cgi” stderr: WordPress database error Unknown column ‘g.status’ in ‘where clause’ for query SELECT id as group_id, slug FROM wp_bp_groups WHERE g.status = ‘public’ made by require_once, do_action, call_user_func_array, groups_admin_settings, bp_has_groups, BP_Groups_Template->bp_groups_template, groups_get_all, BP_Groups_Group->get_all

    [Thu Feb 12 10:44:35 2009] [error] [client 86.162.51.73] user damageinc not found: /phpmyadmin

    #37749

    This is what is called “deep integration” over on the bbPress side of things. It is often times shied upon but I feel is very much a requirement for making things look all nice and pretty.

    I know for sure it is possible on the WordPress.org side of things as I’ve done it several times, but I am going through my first MU/BuddyPress attempt tonight and tomorrow.

    I’ll do my best to see if there are any differences, and report back with what I find.

    #37731
    Trent Adams
    Participant

    Actually, it would be the other way around. dbDelta is actually a wordpress function that plugins can call to get upgraded. Andrew mentioned that this would all be sorted out with a plan to address buddypress by the multi-db 2.8 release. The reason you have to comment out all the dbDelta lines of code is due to a compatibility error that will fill your errors logs :)

    As well, the search breaks with multi-db since it needs to call more than 1 database since one is global and one is for specific users information, it fails. It tries to find a member specific query in the global DB (since that is the one that is called first) and can’t find the info which causes an error.

    The multi-db code also puts all user activity tables in the same DB right now (since it can’t spread them around without code to do so), so the only benefit you get is if you need this solution for multiple blogs. It actually created them all in the global DB when I used the move-blogs tool, but wanted to find them in the same DB as main blog. I had to copy all the user activity tables to that DB for it to work. If you start with a fresh install, it will create them in the right DB straight away.

    Summing up, by WPMU and multi-db 2.8 and a 1.0 BP final release, it will draw more attention so that the solutions will have a clear goal to shoot for. This is a topic better suited in the Premium wpmudev forums as well I think. Glad to discuss it further there!

    Trent

    #37730
    Arturo
    Participant

    oh thanks Andy this sounds good!

    and now i take the opportunity to ask if there is a repository i18n for buddypress in the svn, and, if is yes, how update the language files.

    thank you for the great work you do.

    Arturo

    BPIT Staff

    #37728
    Andy Peatling
    Keymaster

    I’d assume for now that you will have to manually add the language file, however in the future it would be nice to support that too.

    #3453
    Arturo
    Participant

    Hi,

    I read the post about BuddyPress and WordPressMU, and i’ve a question about the feature that allows install, download and update BuddyPress through WPMU backend in WordPressMU language?

    For example, I have installed WPMU in Italian, I can install BP in Italian from the backend of WPMU? Or must still rely on the sites of translation like buddypress-it.it for the Italian language and then insert the files in bp-languages?

    #3452
    Andy Peatling
    Keymaster

    Tomorrow will see the release of RC-1 and not the final 1.0 version. Please see the post via the link below for more information:

    http://buddypress.org/blog/2009/02/rc-1-new-wordpress-mu-functionality/

    #3450

    Hello everybody!

    I have this pagination problem at the end of this page http://planetuga.org/news when i click “« Notícias Antigas” it goes to http://planetuga.org/news/page/2/ that is the 404 error page.

    I’m using wordpress mu 2.7 and using the funciction next_posts_link(‘« Notícias Antigas’)

    Is there any solution for this?

    #3444
    Anointed
    Participant

    I was planning on using the multi-db plugin for my wordpressmu + buddypress website.

    However, on their forums I am told the following

    You can use multi-DB with BP, BUT you may have to create the global BP tables manually.

    Once they are created , BP should run fine. The other thing that you should do once the

    tables are created is go through the main BP files and comment out all of the dbDelta

    lines of code (one for each BP global table)

    Are there plans to fix buddypress so that it will work properly with a multi-db setup?

    #37657
    Andy Peatling
    Keymaster

    one thread has one to many messages

    one message has one to many recipients

    one user has zero to many threads

    the squiggly stuff you posted is a serialized array of message and sender ID’s. In PHP if you take that value and use the function unserialize() (or maybe_unserialize() if you are in the WordPress environment) you will get an array full of ID’s you can then iterate and use.

    #37650

    Thanks Burt. That answered my question.

    I realize now I didn’t really phrase my question clearly. I have been using bbPress integrated with WordPress.org for a few months now and am very comfortable with how it works, however it obviously integrates much differently with BuddyPress, with group forums and all.

    So to confirm, there are group forums and then global forums, and anyone can post anywhere regardless of group membership?

    #3422
    jurmous
    Participant

    The current theme contains a lot of English inside. None of the sentences are beautifully contained within the localizable brackets. I know most is copied from the standard wordpress theme which is also non localizable.

    Now I need to include a separate translated version of the theme in the language pack. And a whole theme makes the download a multitudes larger than only the po & mo for the language.

    Why not localize all the english terms in the theme and make the default BuddyPress theme cleaner than WordPress’ default? You only need one po included with the theme.

    Paul Wong-Gibbs
    Keymaster

    FYI https://trac.mu.wordpress.org/ticket/894#comment:3 has added a hook so we can customise the subject line of the email sent to new users (accounts) after activation.

    #37639
    Paul Wong-Gibbs
    Keymaster

    MartinNr5.

    Clear your cookies, then after logging in both places, view your cookies in like Firefox. I am assuming that they should be named something like wordpress_ and wordpress_f5433ed3c296d4543 (where the letters after the underscore is a hash).

    In both your wordpress and bbpress config files, add the following:

    define('COOKIE_DOMAIN', '.example.org');
    define('COOKIEPATH', '/');
    define('COOKIEHASH', 'f5433ed3c296d4543');

    Log out, clear cookies, and it should work.

    #3416
    ib0189
    Member

    Apologies in advance for the long post – I’m after a bit of guidance. Ok, here’s the scenario:

    I used to hit mountains and hills hiking and camping, and am getting back into it. There’s a fair few friends that are interested in joining in, all with various levels of experience, but some are green to the outdoors.

    I currently run a vBulletin site that some of these friends are members of. Others aren’t but are on Facebook, and others aren’t members of any social networking sites as yet.

    The site I create I want ultimately to do two main things:

    1) Be a one-stop shop for information, CMS stylee.

    a) Give information on upcoming events.

    b) Give articles/information about advice for kit (eg boots, waterproofs, layers, tents, stoves, etc).

    c) Give articles/information on skills (eg map & compass, GPS, etc, etc).

    d) Have a blog for relevant thoughts.

    2) Encourage discussion for upcoming events and people to upload walking logs, photos, etc.

    a) Allow individual profiles.

    b) Allow uploading of photos and videos.

    c) Allow basic forum discussion, and other commenting.

    d) Allow group creations as some of my mates like mountain biking, kayaking, etc – so some will go out and carry out those activities, whilst others will just hike, etc.

    I could setup some Facebook style site – but I know that some of my mates aren’t up for joining Facebook. I also know that some of them won’t want to join the vB site I already have (and it’s not really geared towards this purpose in any case).

    I don’t really want to use vB, and feel that WordPress could offer a solution. I want to use WPRemix for the CMS side of what I’m trying to do (1 above). But then I want to use BuddyPress + WordPress MU + bbPress to achieve the discussion/social networking side (2 above).

    I did try and setup WordPress MU + BuddyPress + bbPress, and then added WPRemix and set that to the main site/blogs theme. I setup with subdomains for users, but basically that creates some weird outcomes:

    site.com > WPRemix theme.

    user.site.com > BuddyPress Home theme – but no widgets setup (I thought that that should have gone to either the user’s profile or the user’s blog?).

    And there were some strange authentication issues, I’m assuming cookie/domain related? I also want users to be able to use the BuddyPress theme only, not the WPRemix theme.

    Anyway, would I be better off creating two sites:

    site.com > WordPress 2.7 + WPRemix.

    my.site.com > WordPress MU + BuddyPress + bbPress with WordPress MU setup not to use subdomains (directories instead).

    Thoughts would be appreciated!

    Cheers,

    IB.

    #3400
    auwagner
    Participant

    Is there a plugin that will give me a ‘Featured Blog’ widget I can use on the Front Page (Similar to the feature group widget)? I’ve looked on the WordPress MU site and throughout the forums and could have missed it.

    Thanks,

    John

    #37533
    Erwin Gerrits
    Participant

    Don’t know about the groups, but as far as your subdomain problem… you can only set these options (between user.domain.com vs. domain.com/user) when you install WordPress MU. Once you set that during install, there’s no way to change it after that. If you have to change it, you have to reinstall WordPress from scratch and pick the right installation options.

    #37519

    I will go out on a limb to say that what looks like a bug at first is often times just normal user error.

    I consider myself a seasoned PHP/SQL/Linux/WordPress/bbPress veteran, and to be honest it took me installing and reinstalling MU/BuddyPress 4 times before I was able to follow the instructions correctly. Each time I would have sworn on my undead mothers grave that I did everything right, but alas…

    So a tip to you all, if it isn’t working, it just might be because of something you don’t know you didn’t do… ;)

    Scotm
    Participant

    Now I’m trying to use Burt’s plugin in combo with the Block Admin plugin to prevent users from accessing the dashboard but no luck. I have new blog owners defaulted to author, and yet they still get access to the dashboard.

    life2000
    Participant

    You are correct Scot;

    It worked.

    It’s perfect.

    Thank you.

    Vida

    Scotm
    Participant

    For what it’s worth, I’m using it and I can get to the dashboard once logged in via ‘URL/wp-admin’.

    life2000
    Participant

    Of all the solutions, Burt’s plugin seems to work best, and of course if we can redirect the login page to whatever page we want to, it would be even better.

    However, the only problem I have encountered with Burt’s plugin is that after I upload it, I can not access the dashboard as the administrator either! To get in the admin area, I have to remove the plugin again. Perhaps, there is a shortcut of something to avoid this.

    Sorry Burt. The questions don’t seem to end. But I guess that’s how human beings have continued to evolve, eh?

    Thank you :)

    Vida

Viewing 25 results - 32,176 through 32,200 (of 32,678 total)
Skip to toolbar