0. Deactivate modules that might conflict/break with upgrade…
1. Have backups of your wordpress files and database..
2. I used ssh for the upgrade, so I untar’d the tar.gz file somewhere.
3. cp -rp wordpress/* ../../blog/ *this copies over all new files to old location, leaving old files intact.
4. somedomain.com/blogdir/wp-admin/upgrade.php - click click done…
Entries from October 2007
Easy Wordpress Upgrade…
October 28th, 2007 2:38 am · 1 Comment
Tags: Wordpress
Exodus maintenance
October 28th, 2007 1:04 am · No Comments
Exodus is down for maintenance (making some security updates) - will be back up in 15 minutes.
2:10am - Exodus back up
Tags: Status
Quick NFS Setup Notes
October 27th, 2007 2:39 am · No Comments
Quick NFS Setup Notes:
Server with files to be shared:
# service portmap start; service nfslock start; service nfs start
# echo ” /home/sharedfiles (ro,sync) >> /etc/exports
Server that accesses these files
Edit /etc/vfstab
server:/share/adir /opt/adir nfs ro,sync [...]
Tags: Linux
NFS with Shorewall & SELinux - CentOS
October 22nd, 2007 12:01 am · No Comments
These are my notes from what I got working for a CentOS NFS with Shorewall and SELinux. Here are the following:
* Server called “server” (192.168.1.10) exporting /opt/goodies for machine “client” (192.168.1.15) to use in /usr/local/goodies
* Both are running *nix with Shorewall firewall
* This config works for CentOS - others may need tweaking. [...]
Tags: Linux · Networking