After updating WordPress to 2.8.4 I get the XMLRPC 500 Internal Server Error, when posting with Microsoft Windows LiveWriter
August 31, 2009
0 Comments
The solution is to change the type of the column post_parent:
cd "C:\Program Files (x86)\MySQL\MySQL Server 5.1\bin\"
mysql.exe –u root -p
Enter password: ***********************
mysql> use MyWordpressDatabase
Database changed
mysql> ALTER TABLE wp_posts CHANGE post_parent post_parent BIGINT;
See: http://ardentdev.com/fix-for-wordpress-xmlrpc-500-internal-server-error/
Tags: Wordpress