This insert fails and causes the problems above:
INSERT INTO `wp_posts` (`ID`, ... )
VALUES (33145694077, ... );
But this insert works just fine:
INSERT INTO `wp_posts` (`ID`, ... )
VALUES (145694077, ... );
Only difference is that I killed off the first two numbers from the id's INSERT value. (145694077
instead of 33145694077
).
Here's the table structure for wp_posts:
`wp_posts` (
`ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
...
)
ENGINE=MyISAM DEFAULT CHARSET=utf8;
I'm only having this problem when I'm trying to import my posts to WP Engine. My MAMP install, and my other server environment (Apache / CENTOS 6.5) handle these imports just fine. WPE uses nginx, I know. I guess I don't know enough to decide whether or not an issue exists there!
Any thoughts, similar experiences?
This sad, unsolved thread was all I could find on the subject.