toggle background image
WordPress
Some navigation will not work unless JavaScript is enabled
 All Links: Showv | Hide^ 

ITP Help

Special Requests

Highlighted FAQs

Dates/Hours v

Curriculum v

ITP Resources v

Off Floor Resources v

Tech Notes v

ITP Community v

Showing Work v

Servers v

ITP Policies v

Orientation/Registration v







Help / WordPress

Instructions for Setting up WordPress on itp.nyu.edu

First, try out ITP's WordPress Multi-User Blog System

If for some reason that system, doesn't work for you, you can install a single user WordPress blog in your own account on itp.nyu.edu, by following these instructions.

  1. First check out the suggestions at blogsecurity.net on How to Secure WordPress
  2. log into itp.nyu.edu with ssh and type the following linux line commands:
cd public_htmlchange directory to where your public web files are: public_html
Note: if you don't want your blog directory at the top level of your site then cd to the directory that should contain your blog directory
mkdir blognamemake an empty directory for your new blog
cd blognamechange directory into your new blog directory
svn co http://svn.automattic.com/wordpress/tags/2.7.1 .
copy whole line including
the final dot (.)
cp wp-config-sample.php wp-config.phpCreate a config file for the blog.
  1. Now you can edit that file, wp-config.php, in your favorite text editor. Be sure to save the file with Unix line breaks.
Here is a portion of the file with the parts that you should edit. Fill in database_name, username and password with the information from the info sheet you got when your database was set up.
// ** MySQL settings ** //
define('DB_NAME', 'database_name'); // The name of the database
define('DB_USER', 'username'); // Your MySQL username
define('DB_PASSWORD', 'password'); // ...and password.. (not your NETID password)
define('DB_HOST', 'localhost'); // You won't need to change this value on ITP's server
// You can have multiple installations in one database if you give each a unique prefix
// Note: For added security, please consider changing this
$table_prefix = 'wp_'; // Only numbers, letters, and underscores please!
  1. After you are done with that (remember to save the file with unix line endings). You can upload the entire folder to your "public_html" directory on itp.nyu.edu.
  2. You may want to change the name of the folder so that it is something nicer and more descriptive. The name can have letters, numbers, and underscores. Don't use spaces.
  3. Next, you are ready to run the install procedure, go to the following URL and follow the instructions:
Page last modified on April 07, 2009, at 10:24 PM