Quick Guide to New WordPress Install
- http://codex.wordpress.org/Installing_WordPress
- Logon to your server, and cd document_root_name
- wget http://wordpress.org/latest.tar.gz
- tar -xzvf latest.tar.gz
- cd wordpress
- cp -r * ../
- cd ..
- rm -r wordpress
- rm latest.tar.gz
- http://codex.wordpress.org/Installing_WordPress#Using_phpMyAdmin
- sudo chown www-data document_root_name/
- http://example.com/wp-admin/install.php
- http://codex.wordpress.org/Changing_The_Site_URL. This is followed if you want to change the WordPress site name from example.com to www.example.com. You may need to add update_option(‘siteurl’,'http://example.com/blog’); and update_option(‘home’,'http://example.com/blog’); to the theme functions.php file. Then reload site, then DELETE these two lines from theme functions.php file.
- Change default theme to custom theme, so future updates don’t wipe your changes: cp -r twentyten/ customtheme
- Run script as defined on http://www.pokeroconnor.com/recursive-sed-script/ to change all previous theme name mentions
//
