Wordpress Fatal Error Message

Discussion in 'HTML & Website Design' started by rocket911, Jul 26, 2009.

  1. #1
    For some reason I get a fatal error message whenever I try to update a page on my wordpress site. Recently I have added a SEO plugin, but don't know if that has anything to do with it. Also if you search for some of my keywords in google it has my site listed, but as soon as you click on it there is a fatal error message and won't display the page. This is not good and I don't know what is wrong with it. This is the exact error message that it always shows everytime I try and update a page or look at certain pages in the search engine.



    Fatal error: Call to undefined method SearchSpider::_weak_escape() in /home/quotewar/public_html/wp-includes/wp-db.php on line 487


    Any help would be greatly appreciated. Thanks
     
    rocket911, Jul 26, 2009 IP
  2. Dan Schulz

    Dan Schulz Peon

    Messages:
    6,032
    Likes Received:
    437
    Best Answers:
    0
    Trophy Points:
    0
    #2
    Try wrapping the plugin call around a function. This should do the trick.

    
    <?php if (function_exists('plugin-name')) {
    	plugin-name();
    } ?>
    
    PHP:
    Just make sure you replace "plugin-name" with the name of the plugin. Here's an example using the "Featured Video" plugin:

    
    <?php if (function_exists('vsf_show_video')) {
    	vsf_show_video();
    } ?>
    
    PHP:
     
    Dan Schulz, Jul 26, 2009 IP
  3. sudharsan

    sudharsan Active Member

    Messages:
    164
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    53
    #3
    deactivate search unleashed plugin and try
     
    sudharsan, Jul 26, 2009 IP
  4. nonameperson

    nonameperson Peon

    Messages:
    58
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #4
    maybe server have not turned on all php functions.
     
    nonameperson, Jul 27, 2009 IP
  5. RadioBounce

    RadioBounce Banned

    Messages:
    4,171
    Likes Received:
    16
    Best Answers:
    1
    Trophy Points:
    0
    #5
    Hello mate, maybe you should try this ;).
     
    RadioBounce, Jul 27, 2009 IP
  6. Dan Schulz

    Dan Schulz Peon

    Messages:
    6,032
    Likes Received:
    437
    Best Answers:
    0
    Trophy Points:
    0
    #6
    How about posting the actual link and not a TinyURL?
     
    Dan Schulz, Jul 27, 2009 IP
  7. Rodder7

    Rodder7 Active Member

    Messages:
    451
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    88
    #7
    Looks like a seo plugin to me. What happens when you deactivate it?
     
    Rodder7, Jul 27, 2009 IP
  8. leoslab

    leoslab Peon

    Messages:
    24
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #8
    Yeah, maybe you should deactivate the plugin first, and see what happen. If the error still show up, try to upload the clean wordpress files to your webhost.
     
    leoslab, Jul 27, 2009 IP
  9. Dan Schulz

    Dan Schulz Peon

    Messages:
    6,032
    Likes Received:
    437
    Best Answers:
    0
    Trophy Points:
    0
    #9
    Depending on the plugin, deactivating it may cause problems with the database.
     
    Dan Schulz, Jul 27, 2009 IP