I’ve been using the latest cutting edge wordpress from svn for a while now and it’s been good. At the time of the writing
You are using WordPress 3.0-alpha.
Basically, even the latest code is safe(ish) and things don’t break easily.
I’m not using it for “production” per se, as the only other person who ever reads this blog is probably me!
So, here’s how I do it:
svn up
If you expected more, there’s really not much there. As everything is pretty simple to setup as per the notes in http://codex.wordpress.org/Installing/Updating_WordPress_with_Subversion
Some would only want to update to “stable” version. Others, like me will follow the absolute latest.
Now, how about the permissions for the directory where wordpress is setup. Here’s what I use:
my username: wpuser
apache user: nobody
wordpress installation directory: /home/wpuser/public_html/
cd /home/wpuser/public_html
chown -R wpuser:nobody
find . -type d -exec chmod 755 {} \;
find . -type f -exec chmod 644 {} \;
With the above, it’s easy to upgrade simply by going:
su wpuser
svn up
Now, the automatic upgrade/setup for plugins should work perfectly from within wordpress’ admin interface. If it doesn’t you might want to add the following in wp-config.php:
// Additional variables to allow auto update
define('FS_CHMOD_FILE',0644);
define('FS_CHMOD_DIR',0755);
define('FS_METHOD', 'direct');
I hope this helps someone out there. Give me a shout if it does š
No Comments
You can leave the first : )