Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'change buddypress menu'

Viewing 25 results - 576 through 600 (of 845 total)
  • Author
    Search Results
  • #118119

    Thanks for your reply i started with a new theme and was able to just comment them out. I have now coded in one of the pages where i want it (in front of members) and i have used a plugin to remove the WordPress created page (of same name). However now when i select it it does not indicate on the menu as being the currently selected page.

    ( bp_is_page( BP_PROJECTS_SLUG ) ) : ?> //i think this statement is wrong because —->

    THIS DIDNT WORK PROPERLY I HAD TO CODE IN LINK MANUALLY
    <li class=”selected”>
    <a href="//” title=””>

    MANUALLY
    <li class=”selected”>
    <a href="/projects/” title=””>

    ( bp_is_page( ‘projects’ ) ) : ?>

    ( bp_is_active( ‘projects’ ) ) : ?>

    i tried all these conditions but it still doesnt work.

    i have also used this code in my functions.php (its from another forum post, maybe i havent used it right?) —->

    <?php

    /*Define slugs*/
    define(‘BP_PROJECTS_SLUG’, ‘projects’); /* this will show up as http://yourdomain.com/projects */

    /*Add slug as a root component*/
    function page_setup_root_component()
    {
    bp_core_add_root_component( BP_PROJECTS_SLUG );
    }
    add_action( ‘plugins_loaded’, ‘page_setup_root_component’, 2 );

    /*Show defined slug*/
    function bp_show_page() {
    global $bp, $current_blog;

    if ( $bp->current_component == BP_PROJECTS_SLUG && $bp->current_action == ” ) {
    bp_core_load_template( ‘projects’, true ); /*replace example with the name that of the template you upload*/
    }
    }
    add_action( ‘wp’, ‘bp_show_page’, 2 );

    /*For extra functionality you can add a title for that page*/
    function page_titles( $title, $b ) {
    global $bp;

    if ( $bp->current_component == BP_PROJECTS_SLUG && $bp->current_action == ” ) {
    $title = __( ‘Projects’, ‘buddypress’ ); /*change Example with what you want the title of your page to be*/
    }
    return $title;
    }
    add_filter( ‘bp_page_title’, ‘page_titles’, 10, 2 );

    ?>

    #118103
    @mercime
    Participant

    @naijaping you’d have to add classes to the links you wanted to highlight to change the link color of each link. Or, you might want to change navigation links to use wp_nav_menu where you could easily target the links to implement your customizations. Here’s an easy tutorial on adding wp_nav_menu to your theme http://justintadlock.com/archives/2010/06/01/goodbye-headaches-hello-menus

    #118000
    @mercime
    Participant

    @naijaping what theme are you using and how are nav items generated in your theme? If you’re using child theme of bp-default, there are CSS classes automatically which you can target for styling currently selected items.

    For BP 1.2.9 there’s .selected and .current_page_item classes
    `ul#nav li.selected a, ul#nav li.current_page_item a {
    background: #f5f5f5;
    color: #555;
    }`

    For upcoming BP 1.5 bp-default using wp_nav_menu, there’s .selected, .current-menu-item, .current_page_item, and even current_page_ancestor
    `#nav li.selected a,
    #nav > li.current-menu-item a,
    #nav > li.current_page_item a,
    #nav > li.current_page_ancestor a {
    background: none repeat scroll 0 0 #F5F5F5;
    color: #4D4D4D;
    }`

    #117604

    In reply to: Frisco Child Theme

    Micheal Kennedy
    Participant

    Thanks @davidtcarson for the best BP theme to date! A few issues, though:

    1. Need support for sidebar/widgets.

    2. Main nav tabs on the Activity Stream page looks like they’re missing some CSS, they’re not centered properly for me (using Ubuntu 10.04/Chrome 13). Changing default.css on line 2710 to:
    div.item-list-tabs ul li a, div.item-list-tabs ul li span {
    display: block;
    padding: 5px 10px 10px 10px; /* Changed from: padding: 5px 10px; */
    text-decoration: none;
    }

    made it look better.

    3. Too much white space: too much use of margins and padding, especially on activity updates. (BP Default has this problem, too.)

    4. When pages/menus are hierarchical and you create a drop down menu, it’s hidden by the Activity Stream text box (or whatever happens to be underneath it.

    5 Layout is too wide. Just a CSS thing, but make sure things fit into the layout properly when the width is changed. Very wide layouts aren’t in style, especially for “social networking-related” websites. It’s awkward and uncomfortable lol. Perhaps you might want to change it so that things look right when the layout’s width is changed to 960px or so.

    6. The Buddy Bar doesn’t extend all the way to the left and right on large screens (at least it didn’t for my other computer with a larger square monitor.) The CSS in buddybar on line 1:
    body#bp-default #wp-admin-bar .padder {
    min-width: 960px;
    max-width: 1250px;
    }

    had to be changed, I had to uncheck “max-width: 1250px;” for it to extend all the way on both sides.

    7. When you have bbPress installed and sidebar widgets activated (which only appear on bbPress pages)

    needs a fixed width or something on the bbPress topic edit page, because it extends underneath of the sidebar, and you can’t click on the Submit button. (I have to go into Inspect Elements and delete the sidebar in order to update a topic lol.) But all other bbPress pages seem to be fine, though.

    8. BP pages, WP pages, and bbPress pages are inconsistent with their design. BP pages are wide and have no left and right side (ie. http://allmad.org/lol/), while bbPress and WP pages have spaces along the top and sides (i.e. http://allmad.org/lol/forums/forum/rants/) – which, I think, looks much better because it’s makes the header stand out more, and it’s easier to understand since the pages are then separated from the header, rather than BP pages where they’re not. Oh, and bbPress /forums/ page isn’t styled (i.e. http://allmad.org/lol/forums/)

    Paul Wong-Gibbs
    Keymaster

    Some of the changes you will need to make in your own theme. To start, have you turned off the BuddyPress Components that you aren’t using? Find these in wp-admin, in the BuddyPress menu, under “Settings.”

    @mercime
    Participant

    @donmcint go to dashboard menu Appearance > Header > Change image and background color there.

    dude
    Member

    the finger of suspicion

    anyway, moving on from this



    I cant post a new topic on here so this is the only place i can start a new topic

    does anyone know why my site has decided to shift to the left, and this ‘random’ drop down menu has
    appeared from outta no where in the top right hand side of the page..?

    It’s making the site look dumb, also when logged in if I click on a members name I get logged outta the site but if I click their profile pic it goes to their profile..?

    sorry about the topic change but buddypress.org has got the flu or something lol

    cheers

    #23141

    When using the UberMenu I found a strange bug on the avatar crop page. It breaks image paths that are in the upload directory.

    It’s is changing the img url from:
    http://example.com/wp-content/uploads/2011/06/menu1.png

    To:
    http://example.com/wp-content/uploads/avatars/9/2011/06/menu1.png

    From the plugin developer:
    http://codecanyon.net/item/ubermenu-wordpress-mega-menu-plugin/discussion/154703?page=18&filter=All%20Discussion#comment_1227533

    It’s unfortunate that that solution didn’t pan out, but we were pursuing it based on your suggestion, as I was unable to observe the issue myself at the outset. Now that I am back home with a computer I can investigate and diagnose the problem on my own machine. And I have discovered, in fact, this is not an UberMenu bug at all.

    I installed WordPress 3.2, UberMenu 1.1.2, and BuddyPress 1.2.9, with the default BuddyPress theme. I set up an UberMenu with a thumbnail image.

    Then I uploaded and cropped an avatar – everything worked perfectly with the upload and crop process.

    The only issue was that, on that single screen, the thumbnail image in the menu did not show up, because the source URL was incorrect (as you originally reported). And as I said at the beginning, I had no idea why that would happen – it doesn’t make any sense that UberMenu would be changing this.

    I have spent a lot of time tonight digging through the BuddyPress and WordPress core, looking for how the two plugins could be interacting. I’ve determined there is nothing wrong on UberMenu’s end. Rather, BuddyPress changes the WordPress uploads directory for its own purposes on the avatar crop page. As a result, when UberMenu calls the WordPress standard wp_get_attachment_image_src function, which calls image_downsize, which calls wp_get_attachment_url, which calls wp_upload_dir, the wrong upload directory (in this case, BuddyPress’s avatar directory) is returned. So UberMenu has been provided the incorrect path for the thumbnail from the core WordPress functions, because BuddyPress has changed them. The code is in this line:

    /*buddypress/bp-core/bp-core-avatars.php line 356 */
    add_filter( 'upload_dir', $upload_dir_filter, 10, 0 );

    The BuddyPress function that handles this filter is xprofile_avatar_upload_dir in bp-xprofile.php.

    As I see it, you have three options:

    1. Live with the menu thumbnails going blank on that single page

    2. Ask BuddyPress to change how their upload directory filtering works, as it is clearly affecting other plugins that rely on the built in WordPress functionality.

    3. Write a “hack” that tests for these BuddyPress-generated avatar upload paths and strip them out before the images are printed via the UberMenu custom walker.

    It seems that this is either an oversight on BuddyPress’ part, or this was the only way to accomplish their desired functionality without editing the core. Either way, the proper solution involves changes to BuddyPress, not UberMenu.:

    DoctorDR
    Member

    I thought it would be most useful for the BP community if I posted a link to our new site – then answer any questions and post tutorials and code snippets as the need arises.

    The site – http://skiddnet.com – is an automotive social community that is designed to support our other automotive properties – SkiddMark (editorial/magazines) and SkiddPlayer (the largest branded content platform for automotive videos). You can find links to these sites in the footer.

    I built SkiddNet originall on Webligo’s social engine 3 platform (using Smarty templates & PHP), then redeveloped it on social engine 4 (Zend PHP). Unlike Buddypress, social engine is a paid product and most of the add-ons and plugins are also paid with a huge amount of nulled software that makes it a minefield if you try looking for code snippets. There’s very little documentation and little sharing between developers and therefore coding standards are highly variable.

    So here we have the site now redeveloped on Buddypress.

    The basic premise of SkiddNet is to foster the creation of quality editorial content, so we are using Paul’s achievement plugin to reward this behavior.

    The site adopts a multisite configuration based on the bpdefault theme, but using a bespoke theme for user blogs. Both themes use the wootumblog plugin to create posts using the wordpress post taxonomies (aside, video, image, quote etc..) and posts are aggregated across the network into the main site using WPMU sitewide tags plugin. This is the part that I’m least happy about – it’s still pretty clunky and I’m still working on debugging it.

    I also use a series of custom functions to grap images from posts and display on index pages (although there are a few bugs that I’m still fixing on this too).

    All of the design and features are contained in a child-theme of bpdefault, so it upgrades effortlessley (the recent upgrade to BP1.29 went smoothly). I have also redesigned the WP admin with changes made to menu items, dashboard widgets, login page and the header and footer.

    I have also developed our own BP admin bar – which is now fixed at the bottom of the screen.

    You’re welcome to take a look around and then pick my brains on how particular features were created – I’ll try and answer as many questions as I can and share any custom code.

    We’re in the snagging phase ironing out the remaining bugs, so if you spot something and can suggest a fix I’d be most grateful to hear from you.

    Thanks

    Daniele Mezzetti
    Participant

    WP 3.1.2 (multisite with subdirectories) + BP 1.2.8. When I try to modify *anything* about the theme of a sub-site (header, menus, widgets etc) I need to turn off BP before, or the whole thing doesn’t work. E.g. if I try to change the header image without turning off BP, the images won’t load and the change won’t happen. Even the example images are not shown on the header admin page. If I try to change widgets, the dashboard shows the *main* site widgets and reports some errors. If I turn off BP, make the changes and reactivate BP, all seems OK.
    Is this normal or at least a known problem? May it depend on my themes setup (main site theme: a BuddyPress child theme; sub-site theme: twentyten or other wp standard theme)?

    Frankyitaly
    Member

    I want to add some buddypress pages (such as profile, activity feed, etc.) to the MAIN SITES page navigation NOT the buddypress admin bar at the top. But every time I go to get the code from my profile it says my name on it. Anyway to change that so it goes to the members profile, activity stream, page etc.?

    #114728

    In reply to: forum setup

    Hi Joanquingrech.

    You can change any of the labels and messages in BuddyPress to whatever you want by making a customized language file. This article explains what to do: http://wpmu.org/basic-guide-to-creating-a-buddypress-language-file-for-sitewide-label-and-message-editing/

    I like thinking of groups as “categories” myself. If you change them to “categories” or “topics” in the language file, then they can be geographical areas, or guilds, or whatever you want.

    You can remove “groups” from the menu by creating a custom menu in WordPress that doesn’t have a ‘Groups’ tab.

    Normally, users would join the groups themselves by clicking on the “join group” button, but as an admin you can move users around as you want between groups.

    I can’t advise you on the theme for the forum appearance. I’m just going to edit the stylesheet myself to set mine up how I want.

    cheers,

    Clare

    #114590
    projectjerel
    Member

    so here is the error_log

    I’m not sure what i’m looking for? but I bet the answer is that i skipped this step.
    “Change .htaccess to increase memory size and redirect to www”

    as i see memory errors down there at the bottom. I’ll google how to adjust my .htaccess file then post back.

    Pretty sure this qualifies as making me look like an idot, much appreciated! (hopefully)

    [Mon May 23 18:17:54 2011] [warn] RSA server certificate CommonName (CN) `plesk’ does NOT match server name!?
    [Tue May 24 13:34:23 2011] [warn] RSA server certificate CommonName (CN) `plesk’ does NOT match server name!?
    [Tue May 24 13:34:30 2011] [warn] RSA server certificate CommonName (CN) `plesk’ does NOT match server name!?
    [Tue May 24 13:34:33 2011] [warn] RSA server certificate CommonName (CN) `plesk’ does NOT match server name!?
    [Tue May 24 18:38:46 2011] [warn] RSA server certificate CommonName (CN) `plesk’ does NOT match server name!?
    [Wed May 25 01:22:44 2011] [error] [client 71.182.217.144] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/favicon.ico
    [Wed May 25 01:24:30 2011] [error] [client 71.182.217.144] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/favicon.ico
    [Wed May 25 13:05:24 2011] [warn] RSA server certificate CommonName (CN) `plesk’ does NOT match server name!?
    [Wed May 25 13:05:27 2011] [warn] RSA server certificate CommonName (CN) `plesk’ does NOT match server name!?
    [Thu May 26 17:01:47 2011] [error] [client 96.236.134.15] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/favicon.ico
    [Thu May 26 22:59:40 2011] [error] [client 66.249.72.41] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/robots.txt
    [Thu May 26 22:59:41 2011] [error] [client 66.249.72.167] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/robots.txt
    [Fri May 27 23:15:20 2011] [error] [client 66.249.72.106] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/robots.txt
    [Sat May 28 13:59:07 2011] [error] [client 66.249.72.106] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/robots.txt
    [Sun May 29 04:25:13 2011] [warn] RSA server certificate CommonName (CN) `plesk’ does NOT match server name!?
    [Sun May 29 08:56:07 2011] [error] [client 66.249.72.248] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/robots.txt
    [Sun May 29 08:56:09 2011] [error] [client 66.249.72.106] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/robots.txt
    [Mon May 30 19:14:42 2011] [error] [client 119.63.196.17] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/robots.txt
    [Mon May 30 23:30:58 2011] [error] [client 66.249.72.106] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/robots.txt
    [Tue May 31 19:06:02 2011] [error] [client 66.249.72.106] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/robots.txt
    [Wed Jun 01 13:56:20 2011] [error] [client 64.246.165.150] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/robots.txt
    [Wed Jun 01 15:48:59 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/favicon.ico, referer: http://www.kingfishmafia.com/
    [Wed Jun 01 17:13:57 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/wp-content/themes/glossyred/images/favicon.ico, referer: http://www.kingfishmafia.com/
    [Wed Jun 01 17:17:09 2011] [error] [client 98.239.183.5] PHP Warning: require_once(BACKPRESS_PATH/class.ixr.php) [function.require-once]: failed to open stream: No such file or directory in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-content/plugins/bpgroups/oci_bb_group_forums.php on line 30, referer: http://www.kingfishmafia.com/wp-admin/update.php?action=install-plugin&plugin=bpgroups&_wpnonce=63679f5b0e
    [Wed Jun 01 17:17:09 2011] [error] [client 98.239.183.5] PHP Fatal error: require_once() [function.require]: Failed opening required ‘BACKPRESS_PATH/class.ixr.php’ (include_path=’.:’) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-content/plugins/bpgroups/oci_bb_group_forums.php on line 30, referer: http://www.kingfishmafia.com/wp-admin/update.php?action=install-plugin&plugin=bpgroups&_wpnonce=63679f5b0e
    [Wed Jun 01 17:17:10 2011] [error] [client 98.239.183.5] PHP Warning: require_once(BACKPRESS_PATH/class.ixr.php) [function.require-once]: failed to open stream: No such file or directory in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-content/plugins/bpgroups/oci_bb_group_forums.php on line 30, referer: http://www.kingfishmafia.com/wp-admin/plugins.php?error=true&plugin=bpgroups%2Foci_bb_group_forums.php&_error_nonce=d55b0fef80
    [Wed Jun 01 17:17:10 2011] [error] [client 98.239.183.5] PHP Fatal error: require_once() [function.require]: Failed opening required ‘BACKPRESS_PATH/class.ixr.php’ (include_path=’.:’) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-content/plugins/bpgroups/oci_bb_group_forums.php on line 30, referer: http://www.kingfishmafia.com/wp-admin/plugins.php?error=true&plugin=bpgroups%2Foci_bb_group_forums.php&_error_nonce=d55b0fef80
    [Wed Jun 01 17:17:21 2011] [error] [client 98.239.183.5] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-admin/menu-header.php on line 96, referer: http://www.kingfishmafia.com/wp-admin/plugins.php?error=true&plugin=bpgroups%2Foci_bb_group_forums.php&_error_nonce=d55b0fef80
    [Wed Jun 01 17:18:09 2011] [error] [client 72.30.142.229] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/robots.txt
    [Wed Jun 01 17:20:53 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/members, referer: http://www.kingfishmafia.com/
    [Wed Jun 01 17:20:57 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/members, referer: http://www.kingfishmafia.com/
    [Wed Jun 01 17:21:04 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/members, referer: http://www.kingfishmafia.com/
    [Wed Jun 01 17:21:08 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/members, referer: http://www.kingfishmafia.com/
    [Wed Jun 01 17:21:16 2011] [error] [client 98.239.183.5] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/class-simplepie.php on line 3736, referer: http://www.kingfishmafia.com/wp-admin/
    [Wed Jun 01 17:21:17 2011] [error] [client 98.239.183.5] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/class-simplepie.php on line 3736, referer: http://www.kingfishmafia.com/wp-admin/
    [Wed Jun 01 17:21:18 2011] [error] [client 98.239.183.5] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/class-simplepie.php on line 3736, referer: http://www.kingfishmafia.com/wp-admin/
    [Wed Jun 01 17:22:46 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/members, referer: http://www.kingfishmafia.com/
    [Wed Jun 01 17:23:00 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/members, referer: http://www.kingfishmafia.com/
    [Wed Jun 01 17:23:27 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/members, referer: http://www.kingfishmafia.com/
    [Wed Jun 01 17:23:36 2011] [error] [client 98.239.183.5] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/class-simplepie.php on line 3736, referer: http://www.kingfishmafia.com/wp-admin/
    [Wed Jun 01 17:23:36 2011] [error] [client 98.239.183.5] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/class-simplepie.php on line 3736, referer: http://www.kingfishmafia.com/wp-admin/
    [Wed Jun 01 17:23:37 2011] [error] [client 98.239.183.5] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/class-simplepie.php on line 3736, referer: http://www.kingfishmafia.com/wp-admin/
    [Wed Jun 01 17:24:15 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/members, referer: http://www.kingfishmafia.com/wp-admin/themes.php?activated=true
    [Wed Jun 01 17:24:23 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/wp-content/themes/unplugged/_inc/css/reset.css, referer: http://www.kingfishmafia.com/
    [Wed Jun 01 17:24:35 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/wp-content/themes/unplugged/_inc/css/reset.css, referer: http://www.kingfishmafia.com/
    [Wed Jun 01 17:24:41 2011] [error] [client 98.239.183.5] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 30720 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/class-simplepie.php on line 2829, referer: http://www.kingfishmafia.com/wp-admin/
    [Wed Jun 01 17:24:41 2011] [error] [client 98.239.183.5] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/class-simplepie.php on line 2648, referer: http://www.kingfishmafia.com/wp-admin/
    [Wed Jun 01 17:24:42 2011] [error] [client 98.239.183.5] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 30720 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/class-simplepie.php on line 2829, referer: http://www.kingfishmafia.com/wp-admin/
    [Wed Jun 01 17:32:04 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/members, referer: http://www.kingfishmafia.com/wp-admin/admin.php?page=bp-general-settings
    [Wed Jun 01 17:33:05 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/wp-content/themes/unplugged/_inc/css/reset.css, referer: http://www.kingfishmafia.com/
    [Wed Jun 01 17:33:10 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/activity, referer: http://www.kingfishmafia.com/
    [Wed Jun 01 17:33:39 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/sample-page, referer: http://www.kingfishmafia.com/
    [Wed Jun 01 17:33:51 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/members, referer: http://www.kingfishmafia.com/#
    [Wed Jun 01 17:34:17 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/wp-content/themes/unplugged/_inc/css/reset.css, referer: http://www.kingfishmafia.com/
    [Wed Jun 01 17:35:10 2011] [error] [client 98.239.183.5] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 30720 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/class-simplepie.php on line 2829, referer: http://www.kingfishmafia.com/wp-admin/
    [Wed Jun 01 17:35:10 2011] [error] [client 98.239.183.5] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/class-simplepie.php on line 2648, referer: http://www.kingfishmafia.com/wp-admin/
    [Wed Jun 01 17:35:11 2011] [error] [client 98.239.183.5] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 30720 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/class-simplepie.php on line 2829, referer: http://www.kingfishmafia.com/wp-admin/
    [Wed Jun 01 17:35:35 2011] [error] [client 98.239.183.5] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-admin/menu-header.php on line 96, referer: http://www.kingfishmafia.com/wp-admin/plugins.php
    [Wed Jun 01 17:37:40 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/wp-content/themes/unplugged/_inc/css/reset.css, referer: http://www.kingfishmafia.com/
    [Wed Jun 01 17:38:26 2011] [error] [client 98.239.183.5] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 5 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/functions.php on line 4121, referer: http://www.kingfishmafia.com/wp-admin/admin.php?page=bp-general-settings
    [Wed Jun 01 17:39:30 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/wp-content/themes/unplugged/_inc/css/reset.css, referer: http://www.kingfishmafia.com/
    [Wed Jun 01 17:39:51 2011] [error] [client 98.239.183.5] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-admin/menu-header.php on line 96, referer: http://www.kingfishmafia.com/wp-admin/
    [Wed Jun 01 17:40:10 2011] [error] [client 98.239.183.5] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-admin/menu-header.php on line 96, referer: http://www.kingfishmafia.com/wp-admin/plugin-install.php
    [Wed Jun 01 17:40:15 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/wp-content/themes/unplugged/_inc/css/reset.css, referer: http://www.kingfishmafia.com/
    [Wed Jun 01 17:40:20 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/members, referer: http://www.kingfishmafia.com/
    [Wed Jun 01 17:42:14 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/wp-content/themes/unplugged/_inc/css/reset.css, referer: http://www.kingfishmafia.com/wp-content/themes/unplugged/_inc/css/colours.css
    [Wed Jun 01 17:42:15 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/favicon.ico
    [Wed Jun 01 17:42:18 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/favicon.ico
    [Wed Jun 01 17:42:37 2011] [error] [client 98.239.183.5] PHP Fatal error: Call to undefined method BP_XProfile_Group::get_all() in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-content/plugins/bpgroups/oci_bp_group_forums.php on line 346, referer: http://www.kingfishmafia.com/
    [Wed Jun 01 17:42:55 2011] [error] [client 98.239.183.5] PHP Fatal error: Call to undefined method BP_XProfile_Group::get_all() in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-content/plugins/bpgroups/oci_bp_group_forums.php on line 346, referer: http://www.kingfishmafia.com/
    [Wed Jun 01 17:43:04 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/wp-content/themes/unplugged/_inc/css/reset.css, referer: http://www.kingfishmafia.com/wp-content/themes/unplugged/_inc/css/colours.css
    [Wed Jun 01 17:43:22 2011] [error] [client 98.239.183.5] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-admin/admin-header.php on line 123, referer: http://www.kingfishmafia.com/wp-admin/
    [Wed Jun 01 17:43:31 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/members, referer: http://www.kingfishmafia.com/
    [Wed Jun 01 17:43:45 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/groups, referer: http://www.kingfishmafia.com/
    [Wed Jun 01 17:44:08 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/wp-content/themes/unplugged/_inc/css/reset.css, referer: http://www.kingfishmafia.com/wp-content/themes/unplugged/_inc/css/colours.css
    [Wed Jun 01 17:44:10 2011] [error] [client 98.239.183.5] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 71 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/wp-db.php on line 1116, referer: http://www.kingfishmafia.com/
    [Wed Jun 01 17:44:19 2011] [error] [client 98.239.183.5] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-admin/menu-header.php on line 96, referer: http://www.kingfishmafia.com/wp-admin/admin.php?page=bp-general-settings
    [Wed Jun 01 17:46:03 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/wp-content/themes/unplugged/_inc/css/reset.css, referer: http://www.kingfishmafia.com/wp-content/themes/unplugged/_inc/css/colours.css
    [Wed Jun 01 17:46:09 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/members, referer: http://www.kingfishmafia.com/
    [Wed Jun 01 17:46:54 2011] [error] [client 98.239.183.5] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-admin/menu-header.php on line 96, referer: http://www.kingfishmafia.com/
    [Wed Jun 01 17:46:59 2011] [error] [client 98.239.183.5] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 491520 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-admin/edit-form-advanced.php on line 285, referer: http://www.kingfishmafia.com/wp-admin/
    [Wed Jun 01 17:49:22 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/favicon.ico
    [Wed Jun 01 17:50:27 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/wp-content/themes/unplugged/_inc/css/reset.css, referer: http://www.kingfishmafia.com/wp-content/themes/unplugged/_inc/css/colours.css
    [Wed Jun 01 17:50:31 2011] [error] [client 98.239.183.5] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/class-simplepie.php on line 2648, referer: http://www.kingfishmafia.com/wp-admin/
    [Wed Jun 01 17:50:31 2011] [error] [client 98.239.183.5] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/class-simplepie.php on line 2648, referer: http://www.kingfishmafia.com/wp-admin/
    [Wed Jun 01 17:50:32 2011] [error] [client 98.239.183.5] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/class-simplepie.php on line 2648, referer: http://www.kingfishmafia.com/wp-admin/
    [Wed Jun 01 17:51:44 2011] [error] [client 98.239.183.5] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-admin/admin-header.php on line 123, referer: http://www.kingfishmafia.com/wp-admin/plugins.php
    [Wed Jun 01 17:51:56 2011] [error] [client 98.239.183.5] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-admin/admin-header.php on line 123, referer: http://www.kingfishmafia.com/wp-admin/plugins.php
    [Wed Jun 01 17:52:54 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/wp-content/themes/unplugged/_inc/css/reset.css, referer: http://www.kingfishmafia.com/
    [Wed Jun 01 17:53:05 2011] [error] [client 98.239.183.5] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/class-simplepie.php on line 2648, referer: http://www.kingfishmafia.com/wp-admin/
    [Wed Jun 01 17:53:06 2011] [error] [client 98.239.183.5] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/class-simplepie.php on line 2648, referer: http://www.kingfishmafia.com/wp-admin/
    [Wed Jun 01 17:53:07 2011] [error] [client 98.239.183.5] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/class-simplepie.php on line 2648, referer: http://www.kingfishmafia.com/wp-admin/
    [Wed Jun 01 17:55:15 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/favicon.ico
    [Wed Jun 01 17:57:28 2011] [error] [client 98.239.183.5] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-admin/menu-header.php on line 96, referer: http://www.kingfishmafia.com/wp-admin/plugin-install.php?tab=search&type=term&s=buddypress&plugin-search-input=Search+Plugins
    [Wed Jun 01 17:59:31 2011] [error] [client 98.239.183.5] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-admin/menu-header.php on line 96, referer: http://www.kingfishmafia.com/wp-admin/plugin-install.php?tab=search&type=tag&s=profile+pic&plugin-search-input=Search+Plugins
    [Wed Jun 01 17:59:55 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/wp-content/themes/unplugged/_inc/css/reset.css, referer: http://www.kingfishmafia.com/
    [Wed Jun 01 18:00:07 2011] [error] [client 98.239.183.5] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/class-simplepie.php on line 2648, referer: http://www.kingfishmafia.com/wp-admin/
    [Wed Jun 01 18:00:07 2011] [error] [client 98.239.183.5] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/class-simplepie.php on line 2648, referer: http://www.kingfishmafia.com/wp-admin/
    [Wed Jun 01 18:00:08 2011] [error] [client 98.239.183.5] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/class-simplepie.php on line 2648, referer: http://www.kingfishmafia.com/wp-admin/
    [Wed Jun 01 18:00:16 2011] [error] [client 98.239.183.5] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-admin/admin-header.php on line 123, referer: http://www.kingfishmafia.com/wp-admin/plugins.php
    [Wed Jun 01 18:00:25 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/favicon.ico
    [Wed Jun 01 18:03:52 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/members, referer: http://www.kingfishmafia.com/
    [Wed Jun 01 18:04:07 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/activity, referer: http://www.kingfishmafia.com/
    [Wed Jun 01 18:04:14 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/sample-page, referer: http://www.kingfishmafia.com/
    [Wed Jun 01 18:05:35 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/favicon.ico
    [Wed Jun 01 18:09:07 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/members, referer: http://www.kingfishmafia.com/
    [Wed Jun 01 18:09:23 2011] [error] [client 98.239.183.5] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/class-simplepie.php on line 2648, referer: http://www.kingfishmafia.com/wp-admin/
    [Wed Jun 01 18:09:23 2011] [error] [client 98.239.183.5] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/class-simplepie.php on line 2648, referer: http://www.kingfishmafia.com/wp-admin/
    [Wed Jun 01 18:09:24 2011] [error] [client 98.239.183.5] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/class-simplepie.php on line 2648, referer: http://www.kingfishmafia.com/wp-admin/
    [Wed Jun 01 18:10:45 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/favicon.ico
    [Wed Jun 01 18:13:27 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/members, referer: http://www.kingfishmafia.com/wp-admin/plugins.php
    [Wed Jun 01 18:13:35 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/members, referer: http://www.kingfishmafia.com/wp-admin/plugins.php
    [Wed Jun 01 18:15:55 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/favicon.ico
    [Wed Jun 01 18:54:11 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/favicon.ico
    [Wed Jun 01 18:54:54 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/activity, referer: http://www.kingfishmafia.com/
    [Wed Jun 01 18:55:47 2011] [error] [client 98.239.183.5] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/class-simplepie.php on line 2648, referer: http://www.kingfishmafia.com/wp-admin/
    [Wed Jun 01 18:55:47 2011] [error] [client 98.239.183.5] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/class-simplepie.php on line 2648, referer: http://www.kingfishmafia.com/wp-admin/
    [Wed Jun 01 18:55:48 2011] [error] [client 98.239.183.5] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/class-simplepie.php on line 2648, referer: http://www.kingfishmafia.com/wp-admin/
    [Wed Jun 01 18:59:33 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/favicon.ico
    [Wed Jun 01 19:04:43 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/favicon.ico
    [Wed Jun 01 19:09:53 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/favicon.ico
    [Wed Jun 01 19:15:03 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/favicon.ico
    [Wed Jun 01 19:20:13 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/favicon.ico
    [Wed Jun 01 19:25:23 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/favicon.ico
    [Wed Jun 01 19:33:16 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/favicon.ico
    [Wed Jun 01 19:38:26 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/favicon.ico
    [Wed Jun 01 19:43:36 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/favicon.ico
    [Wed Jun 01 19:48:46 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/favicon.ico
    [Wed Jun 01 19:53:57 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/favicon.ico
    [Wed Jun 01 19:59:07 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/favicon.ico
    [Wed Jun 01 20:04:17 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/favicon.ico
    [Wed Jun 01 20:09:28 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/favicon.ico
    [Wed Jun 01 20:14:38 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/favicon.ico
    [Wed Jun 01 20:19:48 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/favicon.ico
    [Wed Jun 01 20:40:47 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/favicon.ico
    [Wed Jun 01 20:42:38 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/members, referer: http://www.kingfishmafia.com/
    [Wed Jun 01 20:45:57 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/favicon.ico
    [Wed Jun 01 20:51:07 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/favicon.ico
    [Wed Jun 01 20:56:17 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/favicon.ico
    [Wed Jun 01 20:58:36 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/favicon.ico
    [Wed Jun 01 21:03:46 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/favicon.ico
    [Wed Jun 01 21:08:56 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/favicon.ico
    [Wed Jun 01 21:11:48 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/feed
    [Wed Jun 01 23:10:27 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/favicon.ico
    [Wed Jun 01 23:15:37 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/favicon.ico
    [Wed Jun 01 23:20:47 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/favicon.ico
    [Wed Jun 01 23:23:05 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/feed
    [Wed Jun 01 23:25:57 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/favicon.ico
    [Wed Jun 01 23:31:07 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/favicon.ico
    [Wed Jun 01 23:36:17 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/favicon.ico
    [Wed Jun 01 23:41:27 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/favicon.ico
    [Wed Jun 01 23:46:37 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/favicon.ico
    [Wed Jun 01 23:56:07 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/favicon.ico
    [Thu Jun 02 00:00:07 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/feed
    [Thu Jun 02 00:01:17 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/favicon.ico
    [Thu Jun 02 00:06:27 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/favicon.ico
    [Thu Jun 02 00:11:37 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/favicon.ico
    [Thu Jun 02 00:16:47 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/favicon.ico
    [Thu Jun 02 00:21:57 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/favicon.ico
    [Thu Jun 02 02:40:03 2011] [error] [client 66.249.72.248] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/robots.txt
    [Thu Jun 02 02:40:05 2011] [error] [client 66.249.72.106] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/robots.txt
    [Thu Jun 02 03:00:48 2011] [error] [client 66.249.72.106] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/archives
    [Thu Jun 02 03:07:41 2011] [error] [client 66.249.72.106] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/sample-page
    [Thu Jun 02 03:14:36 2011] [error] [client 66.249.72.106] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/archives
    [Thu Jun 02 04:15:18 2011] [error] [client 66.249.72.106] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/register
    [Thu Jun 02 04:17:19 2011] [error] [client 66.249.72.106] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/members
    [Thu Jun 02 04:28:35 2011] [error] [client 66.249.72.106] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/groups
    [Thu Jun 02 04:32:31 2011] [error] [client 66.249.72.106] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/members
    [Thu Jun 02 04:36:06 2011] [error] [client 66.249.72.106] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/activity
    [Thu Jun 02 04:40:10 2011] [error] [client 66.249.72.106] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/register
    [Thu Jun 02 04:47:53 2011] [error] [client 66.249.72.106] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/members
    [Thu Jun 02 04:51:07 2011] [error] [client 66.249.72.106] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/members
    [Thu Jun 02 04:55:46 2011] [error] [client 66.249.72.106] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/archives
    [Thu Jun 02 04:58:36 2011] [error] [client 66.249.72.106] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/groups
    [Thu Jun 02 05:02:21 2011] [error] [client 66.249.72.106] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/members
    [Thu Jun 02 09:34:33 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/favicon.ico
    [Thu Jun 02 09:39:01 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/feed
    [Thu Jun 02 09:39:43 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/favicon.ico
    [Thu Jun 02 09:44:54 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/favicon.ico
    [Thu Jun 02 09:50:04 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/favicon.ico
    [Thu Jun 02 09:55:14 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/favicon.ico
    [Thu Jun 02 10:00:24 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/favicon.ico
    [Thu Jun 02 10:05:33 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/favicon.ico
    [Thu Jun 02 10:09:02 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/feed
    [Thu Jun 02 10:10:43 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/favicon.ico
    [Thu Jun 02 10:15:53 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/favicon.ico
    [Thu Jun 02 10:21:03 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/favicon.ico
    [Thu Jun 02 10:26:14 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/favicon.ico
    [Thu Jun 02 10:31:23 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/favicon.ico
    [Thu Jun 02 10:36:33 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/favicon.ico
    [Thu Jun 02 10:39:05 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/feed
    [Thu Jun 02 10:56:05 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/favicon.ico
    [Thu Jun 02 11:01:15 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/favicon.ico
    [Thu Jun 02 11:06:25 2011] [error] [client 98.239.183.5] File does not exist: /var/www/vhosts/kingfishmafia.com/httpdocs/favicon.ico
    [Thu Jun 02 12:39:34 2011] [error] [client 96.236.134.15] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/class-simplepie.php on line 2648, referer: http://www.kingfishmafia.com/wp-admin/
    [Thu Jun 02 12:39:34 2011] [error] [client 96.236.134.15] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/class-simplepie.php on line 2648, referer: http://www.kingfishmafia.com/wp-admin/
    [Thu Jun 02 12:39:35 2011] [error] [client 96.236.134.15] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/class-simplepie.php on line 2648, referer: http://www.kingfishmafia.com/wp-admin/
    [Thu Jun 02 12:43:22 2011] [error] [client 96.236.134.15] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/class-simplepie.php on line 2648, referer: http://www.kingfishmafia.com/wp-admin/index.php
    [Thu Jun 02 12:43:23 2011] [error] [client 96.236.134.15] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/class-simplepie.php on line 2648, referer: http://www.kingfishmafia.com/wp-admin/index.php
    [Thu Jun 02 12:43:24 2011] [error] [client 96.236.134.15] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/class-simplepie.php on line 2648, referer: http://www.kingfishmafia.com/wp-admin/index.php
    [Thu Jun 02 16:18:35 2011] [error] [client 98.239.183.5] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/class-simplepie.php on line 2648, referer: http://www.kingfishmafia.com/wp-admin/
    [Thu Jun 02 16:18:36 2011] [error] [client 98.239.183.5] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/class-simplepie.php on line 2648, referer: http://www.kingfishmafia.com/wp-admin/
    [Thu Jun 02 16:18:37 2011] [error] [client 98.239.183.5] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/class-simplepie.php on line 2648, referer: http://www.kingfishmafia.com/wp-admin/
    [Thu Jun 02 16:20:19 2011] [error] [client 98.239.183.5] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-admin/menu-header.php on line 96, referer: http://www.kingfishmafia.com/wp-admin/plugin-install.php?tab=search&type=term&s=+profile+pics&plugin-search-input=Search+Plugins
    [Thu Jun 02 16:20:36 2011] [error] [client 98.239.183.5] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/class-simplepie.php on line 2648, referer: http://www.kingfishmafia.com/wp-admin/index.php
    [Thu Jun 02 16:20:37 2011] [error] [client 98.239.183.5] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/class-simplepie.php on line 2648, referer: http://www.kingfishmafia.com/wp-admin/index.php
    [Thu Jun 02 16:20:38 2011] [error] [client 98.239.183.5] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/class-simplepie.php on line 2648, referer: http://www.kingfishmafia.com/wp-admin/index.php
    [Thu Jun 02 16:31:51 2011] [error] [client 98.239.183.5] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/class-simplepie.php on line 2648, referer: http://www.kingfishmafia.com/wp-admin/
    [Thu Jun 02 16:31:51 2011] [error] [client 98.239.183.5] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/class-simplepie.php on line 2648, referer: http://www.kingfishmafia.com/wp-admin/
    [Thu Jun 02 16:31:52 2011] [error] [client 98.239.183.5] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/class-simplepie.php on line 2648, referer: http://www.kingfishmafia.com/wp-admin/
    [Thu Jun 02 16:35:16 2011] [error] [client 98.239.183.5] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/class-simplepie.php on line 2648, referer: http://www.kingfishmafia.com/wp-admin/
    [Thu Jun 02 16:35:17 2011] [error] [client 98.239.183.5] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/class-simplepie.php on line 2648, referer: http://www.kingfishmafia.com/wp-admin/
    [Thu Jun 02 16:35:17 2011] [error] [client 98.239.183.5] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 30720 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/class-simplepie.php on line 2829, referer: http://www.kingfishmafia.com/wp-admin/
    [Thu Jun 02 16:37:19 2011] [error] [client 98.239.183.5] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-admin/menu-header.php on line 96, referer: http://www.kingfishmafia.com/wp-admin/plugin-install.php?tab=search&type=term&s=buddypress+groups&plugin-search-input=Search+Plugins
    [Thu Jun 02 16:59:24 2011] [error] [client 98.239.183.5] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/class-simplepie.php on line 2648, referer: http://www.kingfishmafia.com/wp-admin/
    [Thu Jun 02 16:59:24 2011] [error] [client 98.239.183.5] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/class-simplepie.php on line 2648, referer: http://www.kingfishmafia.com/wp-admin/
    [Thu Jun 02 16:59:25 2011] [error] [client 98.239.183.5] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/class-simplepie.php on line 2648, referer: http://www.kingfishmafia.com/wp-admin/
    [Thu Jun 02 17:06:26 2011] [error] [client 96.236.134.15] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/class-simplepie.php on line 2648, referer: http://www.kingfishmafia.com/wp-admin/
    [Thu Jun 02 17:06:26 2011] [error] [client 96.236.134.15] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/class-simplepie.php on line 2648, referer: http://www.kingfishmafia.com/wp-admin/
    [Thu Jun 02 17:06:27 2011] [error] [client 96.236.134.15] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 30720 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/class-simplepie.php on line 2829, referer: http://www.kingfishmafia.com/wp-admin/
    [Thu Jun 02 17:19:00 2011] [error] [client 98.239.183.5] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/class-simplepie.php on line 2648, referer: http://www.kingfishmafia.com/wp-admin/
    [Thu Jun 02 17:19:01 2011] [error] [client 98.239.183.5] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/class-simplepie.php on line 2648, referer: http://www.kingfishmafia.com/wp-admin/
    [Thu Jun 02 17:19:02 2011] [error] [client 98.239.183.5] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/class-simplepie.php on line 2648, referer: http://www.kingfishmafia.com/wp-admin/
    [Thu Jun 02 17:26:35 2011] [error] [client 98.239.183.5] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/class-simplepie.php on line 2648, referer: http://www.kingfishmafia.com/wp-admin/
    [Thu Jun 02 17:26:35 2011] [error] [client 98.239.183.5] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/class-simplepie.php on line 2648, referer: http://www.kingfishmafia.com/wp-admin/
    [Thu Jun 02 17:26:36 2011] [error] [client 98.239.183.5] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/class-simplepie.php on line 2648, referer: http://www.kingfishmafia.com/wp-admin/
    [Thu Jun 02 17:33:15 2011] [error] [client 98.239.183.5] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/class-simplepie.php on line 2648, referer: http://www.kingfishmafia.com/wp-admin/
    [Thu Jun 02 17:33:16 2011] [error] [client 98.239.183.5] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/class-simplepie.php on line 2648, referer: http://www.kingfishmafia.com/wp-admin/
    [Thu Jun 02 17:33:17 2011] [error] [client 98.239.183.5] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/class-simplepie.php on line 2648, referer: http://www.kingfishmafia.com/wp-admin/
    [Thu Jun 02 17:43:45 2011] [error] [client 98.239.183.5] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/class-simplepie.php on line 2648, referer: http://www.kingfishmafia.com/wp-admin/
    [Thu Jun 02 17:43:45 2011] [error] [client 98.239.183.5] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/class-simplepie.php on line 2648, referer: http://www.kingfishmafia.com/wp-admin/
    [Thu Jun 02 17:43:46 2011] [error] [client 98.239.183.5] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/class-simplepie.php on line 2648, referer: http://www.kingfishmafia.com/wp-admin/
    [Thu Jun 02 18:01:33 2011] [error] [client 98.239.183.5] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/class-simplepie.php on line 2648, referer: http://www.kingfishmafia.com/wp-admin/
    [Thu Jun 02 18:01:34 2011] [error] [client 98.239.183.5] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/class-simplepie.php on line 2648, referer: http://www.kingfishmafia.com/wp-admin/
    [Thu Jun 02 18:01:35 2011] [error] [client 98.239.183.5] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/class-simplepie.php on line 2648, referer: http://www.kingfishmafia.com/wp-admin/
    [Thu Jun 02 18:20:49 2011] [error] [client 98.239.183.5] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/class-simplepie.php on line 2648, referer: http://www.kingfishmafia.com/wp-admin/
    [Thu Jun 02 18:20:50 2011] [error] [client 98.239.183.5] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/class-simplepie.php on line 2648, referer: http://www.kingfishmafia.com/wp-admin/
    [Thu Jun 02 18:20:51 2011] [error] [client 98.239.183.5] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/class-simplepie.php on line 2648, referer: http://www.kingfishmafia.com/wp-admin/
    [Thu Jun 02 18:21:48 2011] [error] [client 98.239.183.5] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/class-simplepie.php on line 2648, referer: http://www.kingfishmafia.com/wp-admin/
    [Thu Jun 02 18:21:48 2011] [error] [client 98.239.183.5] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/class-simplepie.php on line 2648, referer: http://www.kingfishmafia.com/wp-admin/
    [Thu Jun 02 18:21:49 2011] [error] [client 98.239.183.5] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/class-simplepie.php on line 2648, referer: http://www.kingfishmafia.com/wp-admin/
    [Thu Jun 02 18:33:39 2011] [error] [client 98.239.183.5] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/class-simplepie.php on line 2648, referer: http://www.kingfishmafia.com/wp-admin/
    [Thu Jun 02 18:33:40 2011] [error] [client 98.239.183.5] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/class-simplepie.php on line 2648, referer: http://www.kingfishmafia.com/wp-admin/
    [Thu Jun 02 18:33:41 2011] [error] [client 98.239.183.5] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/class-simplepie.php on line 2648, referer: http://www.kingfishmafia.com/wp-admin/
    [Fri Jun 03 15:24:51 2011] [error] [client 98.239.183.5] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-admin/includes/class-wp-comments-list-table.php on line 393, referer: http://www.kingfishmafia.com/wp-admin/post-new.php
    [Fri Jun 03 15:35:25 2011] [error] [client 98.239.183.5] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/class-simplepie.php on line 2648, referer: http://www.kingfishmafia.com/wp-admin/
    [Fri Jun 03 15:35:25 2011] [error] [client 98.239.183.5] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/class-simplepie.php on line 2648, referer: http://www.kingfishmafia.com/wp-admin/
    [Fri Jun 03 15:35:26 2011] [error] [client 98.239.183.5] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/class-simplepie.php on line 2648, referer: http://www.kingfishmafia.com/wp-admin/
    [Fri Jun 03 15:36:39 2011] [error] [client 98.239.183.5] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/class-simplepie.php on line 2648, referer: http://www.kingfishmafia.com/wp-admin/
    [Fri Jun 03 15:36:40 2011] [error] [client 98.239.183.5] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/class-simplepie.php on line 2648, referer: http://www.kingfishmafia.com/wp-admin/
    [Fri Jun 03 15:36:41 2011] [error] [client 98.239.183.5] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/class-simplepie.php on line 2648, referer: http://www.kingfishmafia.com/wp-admin/
    [Fri Jun 03 15:47:24 2011] [error] [client 98.239.183.5] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-admin/includes/class-wp-comments-list-table.php on line 393, referer: http://www.kingfishmafia.com/wp-admin/post-new.php
    [Sat Jun 04 01:45:23 2011] [warn] RSA server certificate CommonName (CN) `plesk’ does NOT match server name!?
    [Sat Jun 04 11:36:59 2011] [error] [client 24.131.78.211] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/class-simplepie.php on line 2648, referer: http://www.kingfishmafia.com/wp-admin/
    [Sat Jun 04 11:37:00 2011] [error] [client 24.131.78.211] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/class-simplepie.php on line 2648, referer: http://www.kingfishmafia.com/wp-admin/
    [Sat Jun 04 11:37:01 2011] [error] [client 24.131.78.211] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/class-simplepie.php on line 2648, referer: http://www.kingfishmafia.com/wp-admin/
    [Sun Jun 05 04:25:10 2011] [warn] RSA server certificate CommonName (CN) `plesk’ does NOT match server name!?
    [Mon Jun 06 00:57:53 2011] [error] [client 24.131.78.211] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/class-simplepie.php on line 2648, referer: http://www.kingfishmafia.com/wp-admin/
    [Mon Jun 06 00:57:53 2011] [error] [client 24.131.78.211] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/class-simplepie.php on line 2648, referer: http://www.kingfishmafia.com/wp-admin/
    [Mon Jun 06 00:57:54 2011] [error] [client 24.131.78.211] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/class-simplepie.php on line 2648, referer: http://www.kingfishmafia.com/wp-admin/
    [Mon Jun 06 09:41:21 2011] [error] [client 24.131.78.211] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-admin/includes/class-wp-comments-list-table.php on line 393, referer: http://www.kingfishmafia.com/wp-admin/post-new.php
    [Mon Jun 06 09:42:16 2011] [error] [client 24.131.78.211] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-admin/includes/class-wp-comments-list-table.php on line 393, referer: http://www.kingfishmafia.com/wp-admin/edit.php
    [Mon Jun 06 09:55:34 2011] [error] [client 24.131.78.211] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-admin/includes/class-wp-comments-list-table.php on line 393, referer: http://www.kingfishmafia.com/wp-admin/post-new.php
    [Mon Jun 06 09:55:50 2011] [error] [client 24.131.78.211] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 42 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-admin/includes/class-wp-comments-list-table.php on line 408, referer: http://www.kingfishmafia.com/wp-admin/edit.php
    [Mon Jun 06 09:56:04 2011] [error] [client 24.131.78.211] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-admin/includes/class-wp-comments-list-table.php on line 393, referer: http://www.kingfishmafia.com/wp-admin/post.php?post=21&action=edit
    [Mon Jun 06 09:56:40 2011] [error] [client 24.131.78.211] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-admin/includes/class-wp-comments-list-table.php on line 393, referer: http://www.kingfishmafia.com/wp-admin/edit.php
    [Mon Jun 06 09:57:01 2011] [error] [client 24.131.78.211] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-admin/includes/class-wp-comments-list-table.php on line 393, referer: http://www.kingfishmafia.com/wp-admin/post.php?post=21&action=edit
    [Mon Jun 06 09:57:27 2011] [error] [client 24.131.78.211] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-admin/includes/class-wp-comments-list-table.php on line 393, referer: http://www.kingfishmafia.com/wp-admin/edit.php
    [Mon Jun 06 15:04:33 2011] [error] [client 24.131.78.211] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-admin/includes/class-wp-comments-list-table.php on line 393, referer: http://www.kingfishmafia.com/wp-admin/post-new.php
    [Mon Jun 06 17:29:02 2011] [error] [client 24.131.78.211] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/class-simplepie.php on line 2648, referer: http://www.kingfishmafia.com/wp-admin/
    [Mon Jun 06 17:29:02 2011] [error] [client 24.131.78.211] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/class-simplepie.php on line 2648, referer: http://www.kingfishmafia.com/wp-admin/
    [Mon Jun 06 17:29:03 2011] [error] [client 24.131.78.211] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/class-simplepie.php on line 2648, referer: http://www.kingfishmafia.com/wp-admin/
    [Mon Jun 06 17:31:24 2011] [error] [client 96.236.134.15] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/class-simplepie.php on line 2648, referer: http://www.kingfishmafia.com/wp-admin/
    [Mon Jun 06 17:31:24 2011] [error] [client 96.236.134.15] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/class-simplepie.php on line 2648, referer: http://www.kingfishmafia.com/wp-admin/
    [Mon Jun 06 17:31:25 2011] [error] [client 96.236.134.15] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-includes/class-simplepie.php on line 2648, referer: http://www.kingfishmafia.com/wp-admin/
    [Mon Jun 06 17:33:25 2011] [error] [client 24.131.78.211] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 7680 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-admin/includes/file.php on line 697, referer: http://www.kingfishmafia.com/
    [Mon Jun 06 17:33:41 2011] [error] [client 24.131.78.211] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 30720 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-admin/includes/file.php on line 633, referer: http://www.kingfishmafia.com/
    [Mon Jun 06 17:34:21 2011] [error] [client 96.236.134.15] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 30720 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-admin/includes/file.php on line 716, referer: http://www.kingfishmafia.com/
    [Mon Jun 06 17:35:07 2011] [error] [client 24.131.78.211] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 30720 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-admin/includes/file.php on line 633, referer: http://www.kingfishmafia.com/
    [Mon Jun 06 17:42:13 2011] [error] [client 24.131.78.211] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 30720 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-admin/includes/file.php on line 633, referer: http://www.kingfishmafia.com/
    [Tue Jun 07 01:07:28 2011] [error] [client 24.131.78.211] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 30720 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-admin/includes/file.php on line 633, referer: http://www.kingfishmafia.com/
    [Tue Jun 07 04:15:44 2011] [error] [client 24.131.78.211] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-admin/includes/file.php on line 373, referer: http://www.kingfishmafia.com/groups/create/step/group-settings/
    [Tue Jun 07 04:16:23 2011] [error] [client 24.131.78.211] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-admin/includes/file.php on line 373, referer: http://www.kingfishmafia.com/groups/dark-blades/
    [Tue Jun 07 04:16:45 2011] [error] [client 24.131.78.211] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-admin/includes/file.php on line 373, referer: http://www.kingfishmafia.com/groups/dark-blades/admin/edit-details/
    [Tue Jun 07 04:16:52 2011] [error] [client 72.26.42.23] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 30720 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-admin/includes/file.php on line 716, referer: http://www.kingfishmafia.com/groups/
    [Tue Jun 07 04:17:01 2011] [error] [client 24.131.78.211] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-admin/includes/file.php on line 373, referer: http://www.kingfishmafia.com/groups/dark-blades/admin/group-settings
    [Tue Jun 07 07:40:58 2011] [error] [client 66.249.72.106] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 30720 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-admin/includes/file.php on line 883
    [Tue Jun 07 11:11:56 2011] [error] [client 24.131.78.211] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 122880 bytes) in /var/www/vhosts/kingfishmafia.com/httpdocs/wp-admin/includes/class-wp-comments-list-table.php on line 393, referer: http://www.kingfishmafia.com/wp-admin/post-new.php
    [Tue Jun 07 11:14:42 2011] [error] [client 24.131.78.211] PHP Fatal error: Allowed memory size of 335544

    Hello,

    I have recently installed the Buddypress plugin on my page at http://www.glitchaddict.com (accessed via the members menu on the sidebar), and have spent the past week or so trying to change the pages to full width with no success. I’m a total novice at this so please bear with me! I use my own theme (Dressed to Impress), not the BP default, and have run the BuddyPress template pack..the only thing now is I would like every Buddypress page to be full-width with no sidebar (forums, activity page etc), while not affecting my other pages. If someone could hep me with this I’d be so grateful – baby steps appreciated!!

    darkray16
    Member

    Hello,

    I’m creating a custom admin page that will edit the users profiles with input fields that I will create. I also want to add in a section for buddypress avatars, i.e. choosing from a set of default avatars, uploading an avatar image, or disabling avatar for himself.

    Could someone point me in the right direction on how to do this?

    By the way, I’m making the changes to admin/dashboard through a plugin and am having trouble accessing Buddypress functions in my plugin. Any help on this would be great too.

    #113350
    @mercime
    Participant

    First of all, do not use ALL CAPS to post your issue in this forum, it’s not kosher.

    Second, what do you mean you “cannot get the links to work”? You have to be more specific than that – like link redirects to home page or to blank page, etc.

    Third, pretty permalinks are required in BuddyPress installations. mod_rewrite must be enabled in your server.
    Deactivate BuddyPress and any BP plugins you have installed, change to WP default theme – twentyten – and resolve permalink issues at WordPress forums before activating BuddyPress again.
    https://codex.wordpress.org/Using_Permalinks
    https://wordpress.org/support/forum/how-to-and-troubleshooting
    https://codex.buddypress.org/getting-started/before-installing/

    PlanetN
    Member

    I have had trouble with BP forums since installation (BP 1.3.3 and WP 3.1.2). I recently installed WP_Forums plugin, which works great, but has it’s own options for user groups.

    I went into the dash and disabled BP groups, and when I went to my site (http://planetnarcolepsy.com), got an error.

    Fatal error: Class ’BP_Group_Extension’ not found in /home/content/24/7525824/html/PLANETN/wp-content/plugins/buddypress-group-email-subscription/bp-activity-subscription-main.php on line 6

    I was initially able to get back into the network menu to attempt to re-enable, but as soon as I tried to save the changes, it gave me the same error. I attempted to restore any recently changed BP files to undo anything, with no change, same error. I can’t access the site or the backend at all now.

    Help!

    DoctorDR
    Member

    Judging by the lack of information when I perform a search, I may be one of the few people that has tried to get these plugins playing nicely together. When all is sorted and the site is live, I’ll post up a link to hopefully inspire a few other sites to try them out together.

    Basically what I have is a standard WP multisite/BP configuration, to which I’ve installed the WooTumblog plugin at the network level and then added ‘function woo_tumblog_type’ and ‘function woo_tumblog_short_title’ to the functions.php file in the child theme used by my sub-sites. Both my main theme and child themes are heavily adapted from the BP Default theme.

    Somewhat frustrated by the lack of front-end publishing tools for WordPress and keen to use the WooTumblog dashboard (which uses javascript enabled panel changes depending on whether a user wishes to publish a video, image, quote, link or article), I decided to customise the admin area for users to look identical to the site’s front-end, then I removed all other dashboard widget boxes (using unset($wp_meta_boxes…) and all the admin sidebars and menus (using remove_submenu_page()) and also customised the admin bar.

    The result is a a user admin dashboard that looks as if it is a part of the main site. The configurations are triggered by user level – using <?php if ( current_user_can('manage_options') ) – so at a network level I can still see the full admin menu, but users only see the wootumblog dashboard widget and can toggle through to view a list of comments on their site or posts.

    I came slightly unstuck when I implemented the WPMU sitewide tags plugin which copies everything on the network into a single site which can them be used to produce cross-site tags, searches and display all the latest network posts. On the front end of my main site (where all the latest posts are displayed) I display a tumblog icon against each post based on its taxonomy (i.e. video, image, quote…) . I have built a ‘catch image’ function which displays the first image from a post and where there is no image (such as for a quote or video) it displays a default thumbnail.

    Everything works fine except I cannot get the custom taxonomy to reach the main site (or tag blog) so that I can then customise the presentation of these sub-site posts.

    I’ve been in contact with Ron Rennick (who maintains WPMU SWT) and Jeff Pearce (who is the woo themes developer behind wootumblog). They’ve both shared their advice, but I’ve not worked with classes, actions and filters so I’m finding it difficult translating their advice into tangible changes in my code.

    If anyone has a spare moment and would like to give it a go, here’s a link to Ron’s advice; http://wordpress.org/support/topic/getting-buddypress-and-sitewide-tags-to-play-nicely?replies=10

    And he refers to a post that he wrote which describes how to add a filter to solve the issue: http://wpmututorials.com/plugins/sitewide-tags-update/

    Also in conversation with Jeff (woothemes) this morning, he advised that I use the following snippet:

    `// Custom Taxonomy Tumblog Filter
    add_action(‘pre_get_posts’, ‘woo_taxonomy_tumblog_filter’ ); function woo_taxonomy_tumblog_filter( $query ) {

    global $wp_query;

    if ($query->is_home || $query->is_front_page) {

    $query->set(‘tax_query’, array( ‘taxonomy’ => ‘tumblog’ ));

    $query->parse_query();
    }

    return $query;

    }`

    I feel a little out of my depth trying to make this work. I can see that both plugins are working fine with BP, however sitewide tags is filtering out the custom taxonomy created by wootumblog and I need to add that filter back in.

    Anyone with any thoughts? I’ve been badgering Ron and Jeff all day, but been unable to confirm (a) which piece of code to add? and (b) which file to add it in?

    #111915
    @mercime
    Participant

    Deactivate all plugins including BuddyPress and change to twentyten theme, check if permalinks are working with the menu.

    If pretty permalinks are working, then check with webhost if mod_rewrite is enabled in your server. If permalinks are working, re-upload BuddyPress plugin manually via FTP or cpanel,etc.

    You should also check this out – https://codex.buddypress.org/getting-started/before-installing/

    #111631
    aces
    Participant

    For example at the top of the twentyten theme’s style.css is the following line:
    `Tags: custom-menu, sticky-post, microformats, rtl-language-support, translation-ready`
    If you change it to:
    `Tags: buddypress, custom-menu, sticky-post, microformats, rtl-language-support, translation-ready`
    then that warning will go away.

    However that warning is to tell you that the theme isn’t buddypress compatible so it needs to be converted/updated.

    This can be done by following the guide in the buddypress codex: https://codex.buddypress.org/theme-development/wordpress-to-buddypress-theme/

    Some themes, such as Suffusion, have their own conversion pack, so it would be worth checking to see if one is available first.

    tsankuanglee
    Member

    Wonderful, Tom. A minor tweak to your solution:

    The original remove_action may not always work
    remove_action( ‘bp_adminbar_menus’, ‘bp_adminbar_login_menu’, 2 );
    since we can’t guarantee that buddypress plugin is parsed before this fix plugin. A slight modification I made works for me:

    I change add_action( 'bp_adminbar_menus', 'custom_bp_adminbar_login_menu', 2 );
    to
    add_action( 'bp_adminbar_menus', 'custom_bp_adminbar_login_menu', 1 );
    so it will run before the original bp_adminbar_login_menu runs, but after the plugins are parsed and hooks are registered, and then in custom_bp_adminbar_login_menu, I added
    remove_action( 'bp_adminbar_menus', 'bp_adminbar_login_menu', 2 );

    Therefore, the whole thing looks like:

    function custom_bp_adminbar_login_menu() {
    global $bp;
    
    remove_action( 'bp_adminbar_menus', 'bp_adminbar_login_menu', 2 );
    
    if ( is_user_logged_in() )
    return false;
    
    $redirecturl = $bp->root_domain . '/wp-login.php?redirect_to=' . urlencode( $bp->root_domain ) . esc_url( $_SERVER );
    echo '
    ' . __( 'Log In', 'buddypress' ) . '
    
    ';
    
    // Show “Sign Up” link if user registrations are allowed
    if ( bp_get_signup_allowed() ) {
    echo '
    ' . __( 'Sign Up', 'buddypress' ) . '
    
    ';
    }
    }
    add_action( 'bp_adminbar_menus', 'custom_bp_adminbar_login_menu', 1 );

    I agree with fbutera101, though — I am having a hard time imagining a use case where users want to leave where they already are after logging in.

    #111411

    In reply to: Removing Favorites

    mrbin
    Member

    @nuprn1

    Just placed your code into my functions file and the menu item wasn’t removed:
    bp_core_remove_subnav_item( $bp->activity->slug, ‘favorites’ );

    Would anything have change in buddypress to cause this?

    JamieWade
    Member

    I did this to my website and it works a treat. This applies if you are using the default BP theme, or a child theme. You will need to go to <b>wp-content/plugins/buddypress/bp-themes/bp-default/header.php</b>

    At approximately line 47, you will see the opening tags <div id="header"> Look to about line 52, and you will see the code for the home tab. Replace the code with this

    <li class="selected">
    <a href="yoursite.com/activity" title=""></a>
    </li>

    <b> Remember to add http: // before the yoursite.com/activity, for some reason it doesn’t show when I type the full URL in here.</b>

    If you look below that, you should see the code for the activity tab, delete this code. You should now have removed the activity tab from the menu, and the Home tab has now been changed so it directs to the activity stream. Any problems message me.

    #110249
    rickgoz
    Participant

    Hahaha nice one!

    Thanks a lot it’s working! So now, even there is a buddypress’ update it will work or did I change buddypress’ core?

    Many thanks

    #110212
    nit3watch
    Participant

    I still need to clean the theme up a bit more, left some of my personal-project stuff in there >.<

    @treis if you have a look at the Buddybar widget, I have simply copied most of whats in the widget to the static-sidebar. Personally I think its a bit too much going on hence I focused it on the ‘user’.

    I have added modemloopers ‘drop-down menu’ functionality so if you would like, you can simply the main navigation by having ‘community’ and groups, members, activity all under the ‘community tab’. Im just ganna finish up some things and i will upload it.

    I will post some css you can use to modify the header..

    I would advise not working off it as of yet, once I have a ‘stable’ version I will let you know. If you make any changes, they will be over-written when you upgrade the theme. I will try get round to it later on today. I modified the them in a day and released it the same day hence I over-looked some things.

Viewing 25 results - 576 through 600 (of 845 total)
Skip to toolbar