WordPress tips
Bob Morris @ Feb 3rd 2007 00:12 - Category: Unfiled
Most the hits on a WordPress blog (or any blog) are on the home page. This requires database activity and processor time. To speed things up, install the free wp-cache plug-in.
It saves requested pages to disk so the next time someone requests the page they get the saved version. thus eliminating much processor and database usage. It is way easy to install. Make wp-config writeable by the server (chmod 777), copy the files in, activate and that’s it. It refreshs pages every hour by default and cleans up expired pages. A true gem of a program.
Also, you might want to delete this line in your template.
“<?php wp_get_archives(’type=monthly&format=link’); ?>â€Â
Then Blue Coat won’t descend upon your site slurping down every page it can find and max out your bandwidth. More on this on my tech blog.
Both tips from the always amazing and helpful Jamie at Intoxination. Go read his blog now.
1 Comment »
One Response to “WordPress tips”
Leave a Reply
Comments subject to deletion at whim of capricious webmaster. Disagreements are ok. Flames, trolls, and right-wing attacks are not. If your comment doesn't appear immediately, then moderation is on, thus there's no need to re-send it.
(However sometimes the anti-spam programs here go awry. Email us if your comments seem to vanish into the void.)



Jonathan Lundell on 03 Feb 2007 at 10:22 am #
Unfortunately, making wp-config 777 also makes it writable by anyone with login access to your host. My ISP (Pair) offers a wrapper that lets WP run as me, which lets me run with more cautious permissions–for example, wp-config.php, which has sensitive information, is 600, readable only by me.