better wordpress minify problem

I’m the author of that plugin. I think you should post such question on WP.org’s support forum or on my website so I can get to you faster. If not for the pingback from this site I wouldn’t know you are asking this :). About your issue, how did you enqueue that file? How does … Read more

wordpress with 1.5 million posts

1 GB on virtual private server (VPS) should be enough, if you don’t have a high traffic. WP Cache could cause problems when number of posts is more than 30,000 due to limitations on file descriptors. Main rules of tuning nginx, php and MySQL are the same as for high traffic site. You can read … Read more

What’s the case against transient-ing almost everything that’s mostly static?

Actually, doing it for menu is good, you can even store entire HTML output and cut not only queries, but processing time too. Additionally, you can use WP_Object_Cache directly in conjunction with Redis/Memcached backend and avoid even single DB query for the transient itself. Re comments – they do change, so running WP_Comment_Query is unavoidable. … Read more

Long Waiting Times on GoDaddy? [closed]

It’s really simply GoDaddy and slow mysql and webservers. I’ve heard apocryphal stories of people making lots of noise to GoDaddy support and as a result, speeds improve. Do they get moved to better servers or get priority load-balancing? Impossible to say. One other thing to try is http://wordpress.org/extend/plugins/use-google-libraries/ but sometimes it doesn’t help much … Read more

Optimizing a Proximity-based Store Location Search on a Shared Web Host?

What precision do you need? if it’s a state/national wide search maybe you could do a lat-lon to zip lookup and have precomputed distance from zip area to zip area of the restaurant. If you need accurate distances that won’t be a good option. You should look into a Geohash solution, in the Wikipedia article … Read more

Image rotation algorithm

One of the best pages describing image rotation algorithms I’ve found on the internet is tied to Dan Bloomberg’s excellent leptonica library. While the leptonica library itself is written in C and won’t help you, his page on image rotation algorithms: http://www.leptonica.org/rotation.html is definitely worth a read. You will most likely want to implement something … Read more