WordPress
Jump to navigation
Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
Mac OS X
To enable automatic installs and upgrades using FTPS
mkdir wp-content/upgradechmod g+w wp-content/{upgrade,plugins}- Edit
wp-config.phpand add:define('FS_METHOD', 'direct');
For more information, see:
- http://thefragens.com/blog/2010/06/wordpress-automatic-updates/
- http://codex.wordpress.org/Editing_wp-config.php
To create a local WordPress mirror
See http://codex.wordpress.org/MacOS_X_Local_Mirror
To upgrade WordPress
Assumptions:
- cd gets you to the parent of the httpdocs directory
- wordpress directories are named wordpress-version, e.g. wordpress-2.3.3
- httpdocs is a symlink to the current wordpress directory
To upgrade:
- cd
- wget http://wordpress.org/latest.zip
- unzip latest.zip
- rm latest.zip
- mv wordpress wordpres-newversion (e.g. 2.3.3)
- mysqldump database name of blog > database name of blog.sql
- Update the file wp-files-to-preserve to include all files and directories you want to or must keep. Create it if it does not exist. Typical, it includes:
- .htaccess
- favicon.ico
- wp-config.php
- wp-content/plugins
- wp-content/themes
- wp-content/uploads
- wp-includes/languages
- cd wordpress-oldversion (e.g. 2.3.1)
- find `cat ../wp-files-to-preserve` | cpio -pdvlm ../wordpress-newversion
- cd ..
- rm httpdocs
- ln -s wordpress-newversion httpdocs
- Browse wesbite/wp-admin/upgrade.php (normally, this will happen automatically)
- Reactivate all plugin-ins
And you're done.