The Simple Page Tester plugin for WordPress lets you split test pages and posts without having to edit a single line of code.
After installing the plugin you can:
If there's a more exciting new technology than the mini projector then I don't know what it is.
The amount of advancement in the field of projectors over the last 10 years just to make this device even possible is astounding.
The mini projector is fast becoming a reality with great definition now possible, improved contrast ratios, and more. This portable projector technology is really interesting.
Check out some mini projector reviews here.
I often have a staging server on my localhost for WordPress websites and update the remote production environment via SVN.
In the past there was heaps of confusion for me when upgrading plugins and I've finally nailed a process to get this done without any problems.
The problem is that when you upgrade a plugin via WordPress it downloads the archive and replaces the contents of the plugin directory with the contents of the new plugin taking the .svn folder with it.
Thats fine and the way to fix is it by checking out the plugin folder again but not overwriting modified files to do so:
cd wp-content/plugins/
svn co svn://the/directory/to/wp-content/your-plugin-name your-plugin-name --force
The --force is the important bit which will force the checkout without overwriting the existing files that appear to be modified from the repository.
Then you need to add any new files:
cd wp-content/plugins/
svn add your-plugin-name --force
Then commit:
svn commit -m "committing plugin changes" your-plugin-name
Now all your need to do is run "svn up" on your production instance and away you go.