HootSuite needed a Vagrant box that was configured to host Wordpress Multisite complete with custom domain mapping. At the outset of the project our requirements were:
- Vagrant box tuned for Wordpress Multi Site Development
- Build tools contained on the Vagrant Box that easily work with multiple themes
- Ability to map domains with high degree of flexibility
Install Vagrant (ideally 1.2.2 or greater) Installation Instructions
During the following steps accessing the database is required. The Vagrant box includes MySQL but not phpMyAdmin. Instead use Sequel Pro to connect to the database using these settings:
- MySql Host:
127.0.0.1
- Username:
root
- Password:
leave this blank
- Database:
wordpress
- Port:
don't edit this
- SSH Host:
127.0.0.1
- SSH User:
vagrant
- SSH Password:
vagrant
- SSH Port:
2222
This Vagrant box includes a database called Wordpress
. Others can be added if required. These instructions will always use and reference the Wordpress
DB.
Vagrant needs an IP in order to initialize a server but we want to map subdomains to mirror our production environment. For our usecase, and for this example, we will be installing our site at wordpress.mydomain.com
and want to create site1.mydomain.com
, site2.mydomain.com
etc. For development .local
top level domain.
Prior to installing Wordpress edit your local /etc/hosts
/ file to include these lines:
192.168.37.21 wordpress.mydomain.local
192.168.37.21 site1.mydomain.local
192.168.37.21 site1.wordpress.mydomain.local
- The IP listed is taken from the Vagrantfile
- Lines 2 and 3 are required for Wordpress to set up and then domain map domains when they are added
- Lines 2 and 3 can be repeated to add more sites (site2, site3 etc)
mydomain.local
can be replaced with project specific URL's
This Vagrant Box has two folders thare are shared between your local machine. These have been set in the Vagrant file.
Local Path | Vagrant Path |
---|---|
/ | /vagrant/ |
/www/ | /ebs1/www/ |
- Clone the repository:
git clone https://github.com/HootSuiteMediaInc/wordpress-multisite-vagrant.git projectName
- Navigate to the Vagrant folder
cd projectName/config/vagrant/
- Download the Vagrant Box and
vagrant up
to initialize the virtual machine - Load
http://wordpress.mydomain.local
to test if everything is working, if not visit Vagrant Docs to get started
- Remove
index.php
in the Vagrant/www/
folder (it's there to confirm installation went properly) - Install Wordpress in the
www
folder - Configure Wordpress for multisite -
-
- when prompted select sub domain set up instead of sub directories
-
- After creating the network there will be a red error at the top of the page (Warning, Wildcard DNS may not be configured correctly! ) You can ignore this, as we are handling this with local edits to
/etc/hosts
/ and domain mapping.
- After creating the network there will be a red error at the top of the page (Warning, Wildcard DNS may not be configured correctly! ) You can ignore this, as we are handling this with local edits to
- Install Wordpress MU Domain Mapping and configure it. Note: Follow steps 1-3. This plugin has unusual configuration options, read the configuration notes!
- Ensure that the A records for the intended domain have been added to
/etc/hosts
- Menu: My Sites > Network Admin > Plugins - Network Enable Wordpress MultiSite Domain Mapping Plugin
- Menu: My Sites > Network Admin > Settings > Domain Mapping - Leave inputs blank and deselect everything except for 2. Permanent redirect and click Save
- Menu: My Sites > Network Admin > Sites > Create New Site Create your new site. Use the same site that you mapped in
/etc/hosts
(eg site1.wordpress.mydomain.local - we will remap this shortly) - Get the ID of this site:
- Menu: My Site > Network admin > Sites
- Get the Site ID either by hovering over the
Domain title
or installing the Show Site ID Columns Plugin - The first site created should be
id=2
- Menu: My Sites > Network Admin > Settings > Domains - Under "New Domain" add:
- Site ID = ID in the above step (eg 2)
- Domain = New requested domain (
site1.mydomain.local
) - Primary: Leave this checked
- Visit http://site1.mydomain.local in the browser
- You're up and running! Enjoy a cold beverage!
This VM uses Grunt.js as a task runner. The beauty of Vagrant is that it has already been installed on the box and is ready for use without configuring your local machine.
- SSH into the Vagrant Box
vagrant ssh
(while inconfig/vagrant
) - Navigate to the directory containing all the config files (
cd /vagrant/config/grunt
) - Install all of the plugins by running
npm install
.
This will install:
You can customize your Gruntfile how you want. These are the included tasks.
First, replace our theme name with yours:
theme: `/ebs1/www/wp-content/themes/hootsuite`
This Gruntfile presumes that you have a main css file (css/less/styles.less
) that @imports
all other ones for your project and compiles them to css/styles.less
. If this isn't the case you'll need to edit the GruntFile to reflect this.
The following commands are available by default:
grunt less:development
- builds the CSS but does not compress itgrunt less:production
- builds and compresses the CSS with yuicompressgrunt watch:less
- Watches all less files and runsgrunt less:development
when any file is saved
Any files that are not built from css/less/styles.less
will have to have additional tasks written for them. (eg css/less/ie.less
)
We needed this gruntfile to work for multiple themes in our Wordpress Multisite installation. Unlike LESS, which just can watch css/less/styles.less
regardless of which project we're working on, the JS build configuration is going to be different for each project.
Normally we would write this directly into the uglify task but abstracted it so that the gruntfile looks for and parses a theme specific file (js/dev/config.json
) and imports that into any tasks that require it. The syntax for the js/dev/config.json
file is:
{"files": [
"file1.js",
"file2.js"
]}
The following tasks are available to this list of files:
grunt jshint
Runs JSHint onjs/dev/scripts.js
.grunt uglify
Runs Uglify on all files specified injs/dev/config.json
and builds tojs/scripts.min.js
grunt watch:js
Runs Uglify and JSHint wheneverjs/dev/scripts.js
is saved with
grunt
watches LESS and JS and runsgrunt less:development
,grunt uglify
andgrunt jshint
when files are saved.
This project solves a niche issue for us in a very particular way and there are many things required to make this 100% stable and usable for any project required to do after this starting point.
Anyone is welcome to contribute.
- Joe Ying - PHP Developer
- Jeff Waterfall - Front End / Wordpress Developer
- Steve Mynett - Front End / Wordpress Developer