Unable to embed Webmail Login page
Unable to embed Webmail Login page
Unable to embed Webmail Login page
Permissions is not the reason of 500 status. As answered here, you should try disabling plugins and themes. Examine error log to see what is true reason.
Make a custom page template and put this code in it. It will delete as many pages as you want. <?php global $post; $args = array( ‘numberposts’ => 250 ); $myposts = get_posts( $args ); foreach( $myposts as $post ) : wp_delete_post( $post->ID, true ); endforeach; ?> http://codex.wordpress.org/Function_Reference/get_posts
I found this message from Mark Jaquith, WP lead developer: The WordPress core team is quite aware of this issue, and it is absolutely something that needs to be solved. It is an issue with how the menus are saved. Too much data is passed back. It takes a lot of memory and computation time, … Read more
Looks like you are using one of the hacks to have the same wp-config.php file in development and deployment environments. AS it is noted at the end of that page, the hack were not tested in restricted environments like your. If you are not in development phase anymore then you should change your code in … Read more
1) Don’t alter or edit core WordPress files or folders. 2) There is no function in WordPress core that dynamically generates a robots.txt file. The theme you are using is trying to create the robots.txt file with that function in functions.php and must be creating it with the wrong character encoding, and that is causing … Read more