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

ITP Help

Special Requests

Dates/Hours v

Curriculum v

ITP Resources v

Off Floor Resources v

Tech Notes v

ITP Community v

Showing Work v

Thesis 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 stu.itp.nyu.edu with ssh and type the following linux line commands:
cd public_htmlchange directory into your web enabled directory
wget wordpress.org/latest.zipget the latest version of wordpress
unzip latest.zipunzips it to a folder called wordpress
mv wordpress "your blog name"similar to rename
cd "your blog name'change directory to your blog directory
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 (usually your netid) \\
define('DB_USER', 'username'); // Your MySQL username (usually your netid) \\
define('DB_PASSWORD', 'password'); // Password stored in sqlpw.. (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 config file to the blog directory on itp.nyu.edu that you just created if you editted it on your local machine.
  2. Next, you are ready to run the install procedure, go to the following URL and follow the instructions:
Page last modified on September 04, 2012, at 02:38 PM