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