Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 65,101 through 65,125 (of 69,106 total)
  • Author
    Search Results
  • #45838
    mgrunk1
    Participant

    BuddyPress 1.0

    Wordpress MU 2.7.1

    *replaced db name w/ mydb – and this is the errors that show at the bottom of the page in the admin – if I delete the BP plugin, the messages all go away.

    WordPress database error Table ‘mydb.wp_bp_xprofile_data’ doesn’t exist for query SELECT d.value, f.name FROM wp_bp_xprofile_data d, wp_bp_xprofile_fields f WHERE d.field_id = f.id AND d.user_id = 1 AND f.parent_id = 0 AND f.name = ‘Name’ made by require, require_once, require_once, require_once, do_action, call_user_func_array, bp_core_setup_globals, bp_core_global_user_fullname, bp_fetch_user_fullname, xprofile_get_field_data, BP_XProfile_ProfileData->get_value_byfieldname WordPress database error Table ‘mydb.wp_bp_xprofile_fields’ doesn’t exist for query SELECT id FROM wp_bp_xprofile_fields WHERE name = ‘Name’ made by require, require_once, require_once, require_once, do_action, call_user_func_array, bp_core_setup_globals, bp_core_global_user_fullname, bp_fetch_user_fullname, xprofile_set_field_data, xprofile_get_field_id_from_name, BP_XProfile_Field->get_id_from_name WordPress database error Table ‘mydb.wp_bp_notifications’ doesn’t exist for query SELECT * FROM wp_bp_notifications WHERE user_id = 1 AND is_new = 1 made by require, require_once, include, get_footer, locate_template, load_template, require_once, wp_footer, do_action, call_user_func_array, bp_core_admin_bar, do_action, call_user_func_array, bp_adminbar_notifications_menu, bp_core_get_notifications_for_user, BP_Core_Notification->get_all_for_user

    Jeff Sayre
    Participant

    t’s about 30 minutes later and an Internal Redirect Error just showed up in my logs with wp-super-cache out, and all but buddypress plugins out. So it doesn’t look like its a plugin.

    So, you had all plugins deactivated except BuddyPress?

    doncha’s domain mapping plugin

    What are you trying to accomplish with this plugin?

    Are you running this as a subdomain or subdirectory install?

    I’d suggest that you also create a phpinfo file and provide the output of that file to a pastebin that some of us can look at.

    #45834
    Mark
    Participant

    @Gpo1 – It’s there now, and it was not easy!

    Rich Spott
    Participant

    Okay, thank you for helping me, I’ll try to go through your questions one-by-one.

    First I’ll let you know what I have:

    Slicehost

    1GB slice

    Ubuntu Hardy LTS 8.04

    Running Apache, PHP 5, MySQL 5.0 (followed Pickeled Onion’s walk-throughs on how to set it up, I am by no means an expert, and my very first barebones VPS was this one.)

    I help run http://sportsblognet.com where we have WPMU 2.7.1 and BP 1.0, along with bbPress 1.0-alpha6

    Have you tried deactivating all non-buddypress plugins, wp-super-cache in particular?

    I deactivated all but buddypress, feedwordpress (because our theme will break), wp-super-cache, and doncha’s domain mapping plugin. But maybe I will remove them all for an hour to see if any errors get through

    I am removing wp-super-cache right now, but it was tough to get rid of the wp-content/cache folder because it was owned by the root user. But i got it deleted and removed the wp-super-cache stuff in the .htaccess and I’ll guess i’ll have to wait to see how that goes.

    Have you tried using the default .htaccess file that ships with WPMU?

    I just tried to, but it won’t let me.

    My current working .htaccess (minus wp-super-cache stuff)

    <FilesMatch ".(ico|pdf|flv|jpg|jpeg|png|gif|js|css|swf)$">
    Header set Expires "Thu, 15 Apr 2015 20:00:00 GMT"
    </FilesMatch>

    RewriteEngine On
    RewriteBase /

    #uploaded files
    RewriteRule ^(.*/)?files/$ index.php [L]
    RewriteCond %{REQUEST_URI} !.*wp-content/plugins.*
    RewriteRule ^(.*/)?files/(.*) wp-content/blogs.php?file=$2 [L]

    # add a trailing slash to /wp-admin
    RewriteCond %{REQUEST_URI} ^.*/wp-admin$
    RewriteRule ^(.+)$ $1/ [R=301,L]

    RewriteCond %{REQUEST_FILENAME} -f [OR]
    RewriteCond %{REQUEST_FILENAME} -d
    RewriteRule . - [L]
    RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-.*) $2 [L]
    RewriteRule ^([_0-9a-zA-Z-]+/)?(.*.php)$ $2 [L]
    RewriteRule . index.php [L]

    <IfModule mod_security.c>
    <Files async-upload.php>
    SecFilterEngine Off
    SecFilterScanPOST Off
    </Files>
    </IfModule>

    and the WPMU standard one

    RewriteEngine On
    RewriteBase BASE/

    #uploaded files
    RewriteRule ^(.*/)?files/$ index.php [L]
    RewriteCond %{REQUEST_URI} !.*wp-content/plugins.*
    RewriteRule ^(.*/)?files/(.*) wp-content/blogs.php?file=$2 [L]

    # add a trailing slash to /wp-admin
    RewriteCond %{REQUEST_URI} ^.*/wp-admin$
    RewriteRule ^(.+)$ $1/ [R=301,L]

    RewriteCond %{REQUEST_FILENAME} -f [OR]
    RewriteCond %{REQUEST_FILENAME} -d
    RewriteRule . - [L]
    RewriteRule ^([_0-9a-zA-Z-]+/)?(wp-.*) $2 [L]
    RewriteRule ^([_0-9a-zA-Z-]+/)?(.*.php)$ $2 [L]
    RewriteRule . index.php [L]

    <IfModule mod_security.c>
    <Files async-upload.php>
    SecFilterEngine Off
    SecFilterScanPOST Off
    </Files>
    </IfModule>

    it wont let me use the standard one, and the only difference that I can see is the expires header setting that i added.

    Are there any PHP errors in your log files?

    this is my current concern right now

    Request exceeded the limit of 10 internal redirects due to probable configuration error.

    ALERT - canary mismatch on efree() - heap overflow detected

    for the ALERT error, I contacted slicehost and they upgraded my kernel, they said that has fixed other people’s problems (fingers crossed – but no errors since they did that this morning) if that doesnt work i have to go through and install php without the suhosin patch.

    most of the other errors are of spam scripts trying to signup and not finding wp-signup (i changed the signup name)

    what are the other listed errors in your apache log?

    That’s pretty much it.

    EDIT: it’s about 30 minutes later and an Internal Redirect Error just showed up in my logs with wp-super-cache out, and all but buddypress plugins out. So it doesn’t look like its a plugin.

    JsonB123
    Participant

    UPDATE: I just installed it online at http://bp.jason-boyle.com. You can access the forums at http://bp.jason-boyle.com/forums…I haven’t put the button in the navigation yet.

    I am still experiencing this problem…however I will not fix it here in case anyone wants to check it out. Just look at the topics I’ve posted in Groups on BuddyPress and the same topics reflected on the BBPress side at http://bp.jason-boyle.com/forums.

    If no one responds to this in the next day or so though I’m going to put my crappy fix on it. Let me know if you want to poke around a bit on it, maybe I could set up a temporary FTP for just that folder so you can see my code.

    Jeff Sayre
    Participant

    301 Redirects:

    http://www.google.com/support/webmasters/bin/answer.py?hl=en&answer=93633

    http://www.seomoz.org/blog/url-rewrites-and-301-redirects-how-does-it-all-work

    Using your robots.txt file to block googlebot-image from discovering your image files:

    http://www.google.com/support/webmasters/bin/answer.py?answer=35308

    Make sure you block only the image directories that you do not want indexed.

    Also, if you do not use Google’s Webmaster Tools, you may want to investigate. This service offers many tools, including a list of which files are throwing 404s. http://www.google.com/webmasters/tour/tour1.html

    Do you mean while I get this situation worked out? Or do you mean that people are working on this because numerous people have been getting this issue?

    I’m not sure that the word numerous applies as I’ve only seen a half dozen or fewer threads with this particular issue. Remember, one person’s 404 is not necessarily the same as the next persons.

    This type of issue often comes down to one or more factors: bad install, using too old a version of WPMU or BP, plugin conflict, custom theme issue, apache issue, ISP limitations.

    We can try helping you with most of these but do not have any control outside the core of the BuddyPress code. We investigate as best we can with the information provided and if it is caused by BuddyPress, offer a fix in trunk.

    I see in another thread that you are on Slicehost. I’m with them as well. Since you have to set up your own slice, there may be an apache issue. So, to better understand you particular issue, please provide some more details:

    1. Have you tried deactivating all non-buddypress plugins, wp-super-cache in particular?
    2. Have you tried using the default .htaccess file that ships with WPMU?
    3. Are there any PHP errors in your log files?
    4. what are the other listed errors in your apache log?

    JsonB123
    Participant

    Okay, so it seems your content areas are stripping out my backslashes that I’m trying to show as an example, even with the code tag around them. :-(

    The first BBPress example should be:

    triple-backslashes for every single-backslashes that shows in my post above

    The one after my FIRST fix should show a single backslash before each of these characters ” ‘ and (back-slash character)

    #45825
    Roy McKenzie
    Participant

    @M, @BeLogical – we want twitter plugin, we want twitter plugin, hehe.

    #45823
    belogical
    Participant

    @M

    shall we start a chant? we want twitter plugin, we want twitter plugin!!

    #45822
    gpo1
    Participant

    what about friends avatars in the chat box like FB?

    JsonB123
    Participant

    Hey Rbn,

    I found an awesome tutorial that utilizes the Alpha 6 version of BBPress…not the latest one since no one can seem to get it working. http://theeasybutton.com/blog/2009/04/30/integrating-buddypress-10-wpmu-and-bbpress/

    Just follow those instructions EXACTLY and you’ll get the integration up and running.

    WPMU 2.7.1, BuddyPress 1.0 (current latest), and BBPress Alpha 6 (note, Chris posted a link for this download in the above tutorial since it is unavailable on the BBPress site…at least I can’t find it there.)

    JsonB123
    Participant

    Hey Rbn,

    I found an awesome tutorial that utilizes the Alpha 6 version of BBPress…not the latest one since no one can seem to get it working. http://theeasybutton.com/blog/2009/04/30/integrating-buddypress-10-wpmu-and-bbpress/

    Just follow those instructions EXACTLY and you’ll get the integration up and running.

    WPMU 2.7.1, BuddyPress 1.0 (current latest), and BBPress Alpha 6 (note, Chris posted a link for this download in the above tutorial since it is unavailable on the BBPress site…at least I can’t find it there.)

    JsonB123
    Participant

    Hey Rbn,

    I found an awesome tutorial that utilizes the Alpha 6 version of BBPress…not the latest one since no one can seem to get it working. http://theeasybutton.com/blog/2009/04/30/integrating-buddypress-10-wpmu-and-bbpress/

    Just follow those instructions EXACTLY and you’ll get the integration up and running.

    WPMU 2.7.1, BuddyPress 1.0 (current latest), and BBPress Alpha 6 (note, Chris posted a link for this download in the above tutorial since it is unavailable on the BBPress site…at least I can’t find it there.)

    #45816
    omgitsrfb
    Participant

    DJPaul,

    I deleted all of the wp_bp tables. I’m not sure what you meant by check the wp_sitemeta table for similarly-named buddypress settings? Could you give me an example of what you are talking about? Here are the meta_keys for the sitemeta table? Anything I need to do or am I good to go with the reinstall?

    admin_email

    admin_user_id

    registration

    upload_filetypes

    blog_upload_space

    fileupload_maxk

    site_admins

    allowedthemes

    illegal_names

    welcome_email

    first_POST

    update_core

    blog_count

    blog_count_ts

    user_count

    user_count_ts

    comment_indexer_version

    comment_indexer_installed

    communities_version

    communities_installed

    forums_version

    forums_installed

    friends_version

    friends_installed

    messaging_version

    messaging_installed

    post_indexer_version

    post_indexer_installed

    signup_language_version

    #45814
    2766283
    Inactive

    Hello! I have not any idea of programation, maybe you can use this jquery component for your chat. I think it’s simple.

    http://anantgarg.com/2009/05/13/gmail-facebook-style-jquery-chat/

    Sorry for my english! ;)

    #45813
    Roy McKenzie
    Participant

    Hey this plugin rocks. I’m testing it now. Other people should come by and test too …SO COOL!

    http://simplercomputing.net/bp

    #45812
    Paul Wong-Gibbs
    Keymaster

    Yes. all the buddypress tables are prefixed _bp_ which are in turn prefixed by whatever the buddypress table prefix is (by default, wp_).

    Also check the wp_sitemeta table for similary-named buddypress settings.

    #45809
    Mark
    Participant

    @Roy McKenzie – I didn’t find it, I wrote it based on some Ajax libraries – which still need some modification. Thus the chat plugin is very much still in development.

    @Gpo1 – Those 2 features are data intensive because of the way Twitter’s API works. I’m thinking of how to implement that without overburdening the system. Image if you have 10,000 users of your site and all of them are using those 2 Twitter features you’re asking for – that’s a lot of traffic back and forth between your site and Twitter’s site. It can be done, just thinking of how to handle it optimally.

    #45808
    Mark
    Participant

    There were a couple of bugs in the chat that I found today – those would have caused it not to work properly. So if anyone can test again, thanks.

    #45804
    belogical
    Participant

    trust me, use statcounter.com, it’s amazing, free, fast, and invisible

    i just want to make sure this plugin will adequately cover all of buddypress as well.

    #45803
    gpo1
    Participant

    @M, When completed can you submit this to the WP plugin repo so it will show up on the BuddyPress site?

    gpo1
    Participant

    @Xmike, “can you submit this to the WP plugin repo so it will show up on the BuddyPress site?”

    #45801
    gpo1
    Participant

    Please add users followering avatar & tweets as well as reply feature this would be a top-notch plugin.

    And also for chat plugin add the avatars in the chat-box whom you are chatting with?

    #45800
    Burt Adsit
    Participant

    Only bp themes go into /wp-content/bp-themes. Normal wp themes do not go there. They live in /wp-content/themes as always. If you have just upgraded to 1.0 then the bp member theme directory name has changed from bp-member to bpmember due to changes in wpmu 2.7.1.

    Go to the back end of wpmu BuddyPress > General Settings, make sure the default member theme is selected and press Save Settings. Should go away.

    #45797
    David Lewis
    Participant

    It would only be awesome if people actually answered the pre-set questions and if the others on the site cared about the answers. How much structure do you want to impose on people’s social interaction? It’s a good question. For instance, I rarely if ever use the “buckets” in the buddypress.org forums… I only look at the “latest posts” area.

    As for implementing what you’re talking about… you need a programmer. I’m not sure exactly what your goal is but from what you’ve said… it does not sound simple… there would be programming involved.

    p.s. Wire vs. Status seems like semantics to me… same difference.

Viewing 25 results - 65,101 through 65,125 (of 69,106 total)
Skip to toolbar