Wordpress New Development Single Site Install Checklist

From GLMWiki
Revision as of 15:16, 19 January 2015 by Dhosh (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Word Press Single Site Install

[]Create the domain on ispConfig

- Go to https://dev55.gaslightmedia.com:8080
- Create new website - client is GaslightMedia, domain is websitename.com (no www)
- SAVE
- Click on the website. Go to the Options tab, and add the following to nginx directives

location / {
	try_files $uri $uri/ /index.php?$args;
}

# Add trailing slash to */wp-admin requests.
rewrite /admin$ $scheme://$host$uri/ permanent;


[]Install wordpress using ispconfig

APS Installer > Available Packages > Search for "Wordpress"
Click newest version > "Install this package"
Install Location: <site to install>
Admin login: <yourname/laury/steve>
password: <up to you> -- no confirmation!!!
Administrator's email: <yourname>@gaslightmedia.com
Site Name: <site to install>

Refresh Installed Packages after 30-60s, should say "Installation_success"

[]setup local hosts file so you can goto the site

e.g.:
  /etc/hosts
 66.129.32.54 www.wildbillsatvs.com wildbillsatvs.com

[] change default table_prefix to glm_

Password can be found in wp-config

Tables

RENAME table `wp_commentmeta` TO `glm_commentmeta`;
RENAME table `wp_comments` TO `glm_comments`;
RENAME table `wp_links` TO `glm_links`;
RENAME table `wp_options` TO `glm_options`;
RENAME table `wp_postmeta` TO `glm_postmeta`;
RENAME table `wp_posts` TO `glm_posts`;
RENAME table `wp_terms` TO `glm_terms`;
RENAME table `wp_term_relationships` TO `glm_term_relationships`;
RENAME table `wp_term_taxonomy` TO `glm_term_taxonomy`;
RENAME table `wp_usermeta` TO `glm_usermeta`;
RENAME table `wp_users` TO `glm_users`;

Options

SELECT * FROM `glm_options` WHERE `option_name` LIKE '%wp_%'

Meta

SELECT * FROM `glm_usermeta` WHERE `meta_key` LIKE '%wp_%'

Change wp-config.php

$table_prefix = 'glm_';
[] trash all pages and posts that are in default install
[] set timezone to detroit 
[] start of week to Sunday
[] export pages and change any dev.gaslightmedia.com references to site url.
[] import pages
[] set front page
[] import pages
[] import options
[] setup plugins
[] setup new users

Plugins

[] Breadcrumb NavXT
[] CM Tree Page View
[] Gaslightify
[] WordPress Importer
[] WP Options Importer
[] User Role Editor
[] Yoast SEO (need user role editor and then update editor to not have wpseo_bulk_edit cap)
update the seo > Titles & meta > Post types (and taxonomies) turn off meta boxes for all seo

Add users to site sql for creating users

INSERT INTO `wp_users` (`user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `user_status`, `display_name`) VALUES
('cscott', '$P$BubULLBz9zOc1k7sQ6gQHkjCI40pOU1.', 'cscott', 'cscott@gaslightmedia.com', '', '2014-09-30 14:59:12', '', 0, 'cscott'),
('steve', '$P$BiMOzSw8hM5a/K/1pMj961nQvejfAZ1', 'steve', 'steve@gaslightmedia.com', '', '2014-10-15 18:44:55', '', 0, 'steve'),
('jodie', '$P$BzO0XuOIXx8b8x6ztWSKejkiK5lhvd/', 'jodie', 'jodie@gaslightmedia.com', '', '2014-10-15 19:44:47', '', 0, 'jodie'),
('laury', '$P$BUQqo9GDEdRxgPGN3xHgxTAmhZmYUO1', 'laury', 'laury@gaslightmedia.com', '', '2014-10-15 20:30:16', '', 0, 'laury'),
('anthony', '$P$BubULLBz9zOc1k7sQ6gQHkjCI40pOU1', 'anthony', 'anthony@gaslightmedia.com', '', '2014-10-15 20:30:17', '', 0, 'anthony'),
('alicia', '$P$Bi9iOXuLAGZK.OLGhF5iA5Nxtkno4f0', 'alicia', 'alicia@gaslightmedia.com', '', '2014-10-16 18:54:59', '', 0, 'alicia');

Import Nextgen images

!!! First go to Media > Settings and make sure the dimensions are the SAME as on Dev, or you'll be missing image resizings and will have to copy them over

Get the export from the database at dev.gaslightmedia.com site on ISPConfig for ngg_albums, ngg_galleries, and ngg_pictures
Edit those files to replace wp_8 with glm, and take out the /sites/8 part (the 8 here will be dependent on the ID for that site in dev.gaslightmedia.com multisite)
Import those into the database of the new site AFTER installing the nextgen plugin, in this order: albums, galleries, pictures.

Make sure all the gallery templates are set properly again, they'll still point to their old location (This might be more easily doable through the database?) - also set default templates for thumbnails (and any other used) in Gallery Settings to glmPhotos, ajax pagination to Yes, show slideshow link to No, Compact Album template to GlmAlbums, override thumbnail dimensions for both to 220x190

Other Options > Lightbox Effects > Effect to use: Lightbox
Other Options > Thumbnail Opts > Default Thumbnail Dims > 220x190


NavXT

Settings > Navxt > Home Breadcrumb > Home Template (Unlinked) > Replace '%htitle%' with the word Home

User Role Editor

Set user role permissions for Editor for:
- Nextgen managing albums and galleries and uploading images
- UNSET Yoast SEO bulk edit permission

Yoast SEO

- Get User Role Editor so that "seo bulk edit" can be disabled for Editors
- Go into the settings: Titles and Metas, and click "Hide" at every checkbox.

Ninja Forms

Do an export/import to the new site
Make sure notifications are brought over. Might have to do this manually.

Change the wordpress settings so that it's www.website.com and not website.com

Once finished, archive the site on dev.gaslightmedia.com so only super admins can see it.