I discovered last night that the auto-upgrade function to take WordPress 2.7 to 2.7.1 failed – or rather it sat at the “downloading wordpress-2.7.1.zip” message indefinitely.
At the auto-upgrade is a new feature of 2.7, I had never been able to test this functionality, although I had high expectations of it since the plugin upgrade has [...]
Posted in Work | Tagged .htaccess, 1and1, php4, php5, upgrade, wordpress, x-mapp
Well, the motiveAuto website is up and is based on Wordpress – and because Wordpress 2.3 is now on GA I thought it would be a good idea to upgrade before the launch. Big mistake; yes, it is a good idea to be on the current release, but not without some serious integration testing.
The biggest [...]
Posted in IT | Tagged 2.3, canonical, CMS, motiveAuto, rewrite, share-this, wordpress
Various solutions to this problem are discussed on the UTW forum.
Posted in IT | Tagged todo, wordpress
Posted in Reference | Tagged todo, wordpress
Aparently UTW suffers from an expensive query – this site has a fix:
http://ocaoimh.ie/2006/09/27/simple-utw-performance-boost/
Posted in Reference | Tagged code, done, wordpress
I really must get around to implementing these plug-ins to stop clutter in the WordPress category and page lists.
See also here.
Consider the following JavaScript:
// Toggle Show/Hide
function toggle(name) {
if (document.getElementById(name).style.display == “block”) {
document.getElementById(name).style.display = “none”;
} else {
document.getElementById(name).style.display = “block”;
}
}
Posted in Reference | Tagged code, todo, wordpress