Problem with Create Post using metaWeblog.newPost or wp_insert_post

Probably because your post is saved as draft. Try to set the post status to publish inside your $content array. E.g.

$content['post_status'] = 'publish';