WordPress site causing lots of server IO

1) Try WordPress › WPDB Profiling « WordPress Plugins to see what is running all the queries. 2) Clearing post and page revisions will greatly reduce the size of a WP database – up to 90% in some cases – with a huge return in speed and lower server load. Run as SQL query in … Read more

WordPress not working locally

If you’re on OSX, look into MAMP. It’s developed with WordPress in mind and generally works without any further configuration. Just copy your files into the web root directory, set up an empty database, and install.

WordPress or plugin need tomcat?

WordPress does not need Tomcat. All WordPress needs is… To run WordPress your host just needs a couple of things: PHP version 5.2.4 or greater MySQL version 5.0 or greater http://wordpress.org/about/requirements/ Plus adequate RAM– 32MB for a single site, 64MB for Multisite. Many hosts these days provide much, much more than that by default. I … Read more

Does WordPress perform better with curl installed?

WordPress will use curl if available and it is first transport choice, that is preferable to other supported methods of performing HTTP requests. There is plenty written on merits of using curl and that’s not really specific to WordPress. From the top of my head I’ve read Requiring cURL in Your PHP Library recently.