Author page not found

This seems to be a temporary issue specificially with your theme. This might be caused by any plugin you are using. I will suggest you to deactivate all plugins for a moment and see if the problem is solved. If yes, you can activate one plugin at a time to find which plugin is creating … Read more

Page/2 posts don’t load and give 404

Never use query_posts() :). See this answer for more detailed explanation of why not, and the alternatives. In this instance, remove your query_posts() and instead in a plug-in, (or functions php). add_action(‘pre_get_posts’,’wpse57229_change_query_for_main_page’); function wpse57229_change_query_for_main_page( $query ){ if( $query->is_main_query() && is_front_page() ){ $query->set(‘post_type’,array(‘etude’,’new’)); } }

$_POST[‘message’] gives a 404 [duplicate]

To insert a post into the WordPress database, whether you are doing it as a logged in user to the current WordPress installation or over XML-RPC (or any other remote methodology) you need to be using something along the lines of; $the_post = array( ‘post_title’ => ‘Post Title’, ‘post_content’ => ‘My post content’, ‘post_status’ => … Read more