Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'change buddypress menu'

Viewing 25 results - 401 through 425 (of 578 total)
  • Author
    Search Results
  • #118757
    5227699
    Inactive

    sorry…WP 3.2.1, BP 1.2.9
    bp-default child theme
    I want to be able to choose what shows in the menu and currently I have no idea how to do this…I also would like to edit the look of it, change to an image maybe? Not sure yet…but right now I have no clue how to even start being able to tweak that menu bar.

    #118524
    Boone Gorges
    Keymaster

    @foxly and others – Just wanted to drop a note about a recent commit https://buddypress.trac.wordpress.org/changeset/4977 where I made a minor adjustment to the new load order that should help a lot with plugin backward compatibility. In particular, plugins that are using the (old and incorrect but functional in 1.2.x) method of hooking their global and nav setup routines to ‘wp’ and ‘admin_menu’, which wasn’t working in earlier revs of BP trunk, should now be working. See https://buddypress.trac.wordpress.org/ticket/3476 for more explanation.

    That said, you should do the right thing and update your plugin so that it does it correctly: set up your globals at bp_setup_globals and your nav at bp_setup_nav!

    #118437
    Stigmartyr
    Member

    Editing the language file will help you change the displayed text.

    If you want to remove something DJPaul just shared a method with us here: https://codex.buddypress.org/extending-buddypress/bp-custom-php/

    There is also a style sheet hack that I used, it’s posted here: https://buddypress.org/community/groups/achievements/forum/topic/remove-achievement-link-from-menue-bar/#post-106447

    #118233
    Tosh
    Participant

    Hi, I’m the creator of the CubePoints Buddypress Integration plugin. I updated my test site to WP 3.2.1 and BuddyPress 1.5 Beta 2.

    I moved the admin menu to be under Cubepoints a few versions back so that still works. The items in the BuddyPress Admin menu are still there but when I go to the cubepoints pages on the front end (profile) I get “Page not found”.

    This is what I have for the link

    $cubepoint_link = ($bp->displayed_user->id ? $bp->displayed_user->domain : $bp->loggedin_user->domain) . $bp->cubepoint->slug . ‘/’;

    Based on this I tried this…

    $cubepoint_link = bp_get_root_domain() . ‘/’ . $bp->cubepoint->slug . ‘/’;

    This is the result:

    My Account > Points = http://test.mysite.net/members/xberserker/logs/

    Which is correct URL wise but still shows “Page not found”

    If I go to

    My Account > Points > My Points (anything in the submenu) = http://test.mysite.net/logs/points/

    What do I need to do? Here is my file so far. What I changed is line 131

    http://pastebin.com/2vJr4U23

    Also on my site site I get redirected to my home page when I tried to navigate to the activity streams for myself or the global one. On how the forums work now. If a group is private/hidden are the forum topics only visible to those in the group?

    #118144
    juanmaguerrero
    Participant

    I found what’s triggering the Issue. I had changed the names of the profile fields from the admin menu (which should not break this anyway :P ). Changed the Profile Field Group “Base” and the default input “Name” for “Info” and “Full Name” respectively. That broke the saving data system.

    Hope the core developers cant fix this, thanks!

    #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

    #114728

    In reply to: forum setup

    cparkinson
    Member

    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

    #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/

    #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.

    @mercime
    Participant

    == i got the pages to show in the footer now by creating the custom menu ==

    Yes, you’re supposed to create the custom menu in Appearance > Menus as I mentioned in posts above
    https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/cant-get-pages-to-display-in-footer-unless-logged-in-as-admin/?topic_page=2&num=15#post-94793
    https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/cant-get-pages-to-display-in-footer-unless-logged-in-as-admin/?topic_page=2&num=15#post-94911

    == but the pages still show a 404 error unless i am logged in as admin. are pages hidden or restricted in buddy press until logged in. ==

    Looks like there was a redirect for a split second to sportzmoney.xn.com or something of that sort. Where did you download the bp-columns theme? Should be from WP repo.

    Change theme to bp-default to check if Pages are still redirecting to 404

    #109293
    steliodj
    Member

    Hi one more time mercime…i notice something weird, when i’m changing something in css(this happens only to those pages that i have the issue) and inspect with firebug i can see the change is there, but when i use inspect element from chrom or from opera i don’t see the change and it evens grabs css styling information from another line of the stylesheet.

    For example this is what i get(this correct) in firefox when inspecting a specific element:

    `
    div#content form#members-directory-form.dir-form div.item-list-tabs {
    background: url(“../../themes/theme/images/members_directory_menu_bg.png”) no-repeat scroll left top transparent;
    border: medium none;
    clear: both;
    overflow: hidden;
    padding-bottom: 17px;
    padding-top: 15px;
    width: 102%;
    }
    `
    And this is what what i get when inspecting the same element in chrome:

    `
    div.item-list-tabs {
    border: none;
    overflow: hidden;
    clear: both;
    background: url(../../themes/theme/images/buddypress_nav_bg.png) top left no-repeat;
    padding-top: 15px;
    width: 102%;
    padding-bottom: 17px;
    }
    `

    if i remove `form#members-directory-form.dir-form` and keep only `div#content div.item-list-tabs` from my style it works also in chrome but it breaks something else that needs to use another background image and has the same id `div.item-list-tabs`

    Please advice

    #108815
    @mercime
    Participant

    @rogercoathup https://trac.buddypress.org/browser/tags/1.2.8/bp-core/bp-core-settings.php

    the bad way – change `’position’ => 20, to ‘position’ => 10,` and vise versa in core lines 21 and 22 :-)

    or an easy way

    `remove_action( ‘bp_setup_nav’, ‘bp_core_add_settings_nav’ );

    add_action( ‘bp_setup_nav’, ‘bp_core_roger_settings_nav’ );
    funtion bp_core_roger_settings_nav() {
    global $bp;
    // the stuff
    }

    looking for the best way

Viewing 25 results - 401 through 425 (of 578 total)
Skip to toolbar