Error in Wordpress 2.7
Posted by : Dexter Panganiban |Welcome back! You might want to check my Archives and let me take this opportunity to invite you at my Make Money Online Personal Blog
This is a Test post using Windows Live writer since when I try to make a post in my WordPress Dashboard I am encountering this error :

The script that is calling /wp-includes/js/jquery.js?ver=1.2.6:11 is not responding properly and I can see some blogger_author in the custom field. Anyway I will try to search the net for a possible solution for this error. If this goes that will only mean that I need to stick first on posting via Windows Live Writer.
BTW anybody experiencing the same when they upgrade to Wordpress 2.7 , this might be a plug-in compatibility problem.. Need to check out. If you find any error while browsing my site please let me know. Since this error might also affect others.
Other part of Wordpress seems to be OK. It is only the New Post and New Page having this problem.
Any Suggestion ? Thanks in advance
Update : This wordpress forum thread help me but, I need to know the SEO Implication of this one. Will this affect the SEO Plug-in ?
A guy named Gary Walsh taught this one
I found the problem with my site was that on writing a NEW post (not editing an existing one) there was a script that was loading the post meta for EVERY post-id in the whole database. In my case about 30,000 records. This killed the system. What I did was prevent the load of post meta by modifying the wp-adminedit-form-advanced.php and removing the load of the custom fields meta.
<?php
$metadata = has_meta($post->ID);
list_meta($metadata);
?>
This fixed the problem and it loads very quickly now. May not be elegant but then again neither is loading every post in the meta!
GW
It works for me.. but I don’t know if it affect All in One SEO Pack Plug in, because before, When I use this plug in I can usually see a custom field after I save the file but when I removed the said php script mentioned above it shows that the custom field is disabled in the Wordpress Dashboard.
Update :
I confirm that All in One SEO Pack Plug in still works since when I tried to edit this post it still works how ?
Check the title of this post and it says “ Error in Wordpress 2.7 “ check the upper part of of your screen on the left side it says “ Wordpress 2.7 Error in wp-includes/Js “ which is what i put in the All in One SEO Pack Plug in .
Interesting Comments
One Response to “Error in Wordpress 2.7”
1 pingsLinks To This Post
-
Wordpress UK » Error in Wordpress 2.7 | Tech At Hand Dot Net | Philippines … on
January 1st, 2009 11:43 am
[...] from:Error in Wordpress 2.7 | Tech At Hand Dot Net | Philippines … This entry was posted on Wednesday, December 31st, 2008 and is filed under Uncategorized. You [...]
Leave a Reply
Check my Blogging Tips and Experience
- My Akismet Captured 1000+ Spams, Does it means I am famous?
- A Blog Directory
- Sharing What I Read Today
- Tech At Hand reached 1000 Blog Post
- A Successful Transaction with Domain.ph
My WordPress Tips and Tricks
- WordPres 2.8.2 Security Fix is Available
- Error in Wordpress 2.7
- New E-Book Collection : WordPress How To ?
- My Technology at Hand Site is now Mobile Ready
- WordPress Plug-Ins : Separating Comments and Ping





























This error was caused (in my case) by repeatedley uploading database import files to the new database. Somehow it created empty post metadata entries. You can delete these entries by running a sql query in PHP MyAdmin.
DELETE FROM wp_postmeta WHERE post_id=0;
Doing this you don’t have to edit your edit-form-advanced.php file.
Wordpress @ RalfEngeldotComs last blog post..WordPress MU trouble with Google Chrome
Reply