Difference between revisions of "Main Page"
(→Policies and Proceedures) |
(→Policies and Proceedures) |
||
Line 21: | Line 21: | ||
* [[Forms]] | * [[Forms]] | ||
* [[GLM Website Standards]] | * [[GLM Website Standards]] | ||
− | * [[GLM | + | * [[GLM License & Update Server]] |
== Services Documentation == | == Services Documentation == |
Revision as of 15:48, 14 March 2017
Contents
- 1 General Checklists
- 2 Policies and Proceedures
- 3 Services Documentation
- 4 Reference Information
- 5 Wordpress
- 6 Site Review
- 7 Go live checklist
- 8 Wordpress help
- 9 GLM Associate
- 10 Unused, replaced by Wordpress New Single Site Install Checklist, but have to verify nothing of importance remains
- 11 Plugins
- 12 GLM Plugin Update Server
- 13 Code Snippets
- 14 Facebook
- 15 Known Errors and Bugs and their Solutions
- 16 Categories
- 17 Legacy Code
General Checklists
- Streamsend Reporting and SFP Setup
- site go live
- Site Forms / Emails / Per application
- Network Setups
- Backup PC
- Authorize.net Form Info
- Going from PHP 5.3 or 5.4 to 5.5
- Setting up Grunt/SASS on a new site
Policies and Proceedures
- General Policies
- Sales
- Business Office Policies
- Engineering
- Web Development
- GLMDB Project & Task Policies
- GLMDB Standards
- Forms
- GLM Website Standards
- GLM License & Update Server
Services Documentation
Reference Information
- Procedures for version control and production servers
- Documentation Links
- Helpful Linux System Commands
- git
- Moving git repo
- The Great GLM Git Guide
- git flow
- Git with Eclipse
- Phing - Setting up applications
- Virtual Machine Setup Development
- sass
- Setting up Foundation
- Setup a foundation libsass site
- SSH
- Working With Vagrant and Virtualbox
- Updating Foundations grunt to do more
- Glossary
- Server Listing
- Nginx Engine X
Wordpress
Main checklist
- Breakout Procedure for Ian
- Wordpress New Single Site Install Checklist
- Wordpress Wrapup Checklist - For break out
- Wordpress Setup Checklist - For Wordpress setup after breakout
Site Review
Go live checklist
Wordpress help
Helpful links for WordPress Standards
https://make.wordpress.org/core/handbook/best-practices/coding-standards/html/
https://make.wordpress.org/core/handbook/best-practices/coding-standards/php/
https://make.wordpress.org/core/handbook/testing/automated-testing/phpunit/
https://make.wordpress.org/core/handbook/best-practices/inline-documentation-standards/php/
https://make.wordpress.org/core/handbook/best-practices/inline-documentation-standards/javascript/
https://github.com/WordPress-Coding-Standards/WordPress-Coding-Standards
- Removing unneeded files from a Theme for WordPress Repo
git archive -o example.zip HEAD
GLM Associate
- GLM Associate
- GLM Associate - Addon Updates
- Glm Associate Checklist
- Members Checklist
- Packaging Checklist
- Events Checklist
- Social Checklist
- Contacts Checklist
- Leads Checklist
- GLM Associate and OSS
- Dashboard (member only)
- search plugin
Unused, replaced by Wordpress New Single Site Install Checklist, but have to verify nothing of importance remains
- Move Sites to Angelia (Go Live)
- Wordpress New, Empty, Non-Grunted, Non-Gitted, Non-Themed Development Single Site Install with Grunt-Init Checklist
- Wordpress New Development Single Site Install Checklist
- WordPress Development Site Procedures
Plugins
- ShareThis (broken, but used)
GLM Plugin Update Server
***** THIS PROCEDURE IS PRELIMINARY - NOT WORKING ON MEMBERS DB YET *****
URL: http://www.gaslightmedia.com/update_server/
Setting up a GLM Associate plugin/add-on to use the update server.
- If the plugin does not have this code in "defines.php", add it now and update the defined parameters for the current plugin.
/* * Create a copy of the plugin slug that can be used as a variable prefix used to keep * global instances from clashing with instances in other plugins. */ $vprefix = str_replace('-', '_', GLM_MEMBERS_PLUGIN_SLUG); define('GLM_MEMBERS_PLUGIN_PREFIX', $vprefix.'_');
- Make sure that "defines.php" has code to set the GLM_MEMBER_PLUGIN_HOST defined parameter.
// Determine which system we're running on - If not provided, assume PRODUCTION $host = getenv('GLM_HOST_ID'); if (trim($host) == ) { $host = 'PRODUCTION'; } define('GLM_MEMBER_PLUGIN_HOST', $host);
- Add the following to the bottom "defines.php". Adjust as needed.
// Update Server if (GLM_MEMBER_PLUGIN_HOST == 'CHUCK') { define('GLM_MEMBERS_PLUGIN_UPDATE_SERVER', 'http://192.168.44.54/update_server'); } else { define('GLM_MEMBERS_PLUGIN_UPDATE_SERVER', 'http://www.gaslightmedia.com/update_server'); }
- Add "plugin-update-checker" directory and contents to "lib" directory. You may copy this directory from the glm-members-db plugin.
- Add "opentools-update-checker" directory and contents to "lib" directory. You may copy this directory from the glm-members-db plugin.
- Add the following code to the plugin index file. This can be near the bottom of the file or wherever convenient. Update the defined parameters for the current plugin.
/* * Plugin Update Support - uses Gaslight Media update server */ require GLM_MEMBERS_PLUGIN_LIB_PATH.'/opentools-update-checker/opentools-update-checker.php'; ${GLM_MEMBERS_PLUGIN_PREFIX."updateChecker"} = new OpenToolsPluginUpdateChecker( GLM_MEMBERS_PLUGIN_UPDATE_SERVER.'/?action=get_metadata&slug='.GLM_MEMBERS_PLUGIN_SLUG, __FILE__, GLM_MEMBERS_PLUGIN_SLUG ); ${GLM_MEMBERS_PLUGIN_PREFIX."updateChecker"}->declareCredentials(array( 'license_key' => __('License Key:') ));
- Add plugin ZIP file to GLMPluginFiles directory of Update Server. This is the command to build this zip file direct from the Git repository. Replace "{plugin slug}" with the slug for the current plugin.
cd /var/www/server/gaslightmedia.com/web/update_server/GLMPluginFiles git archive --prefix={plugin slug}/ --format=zip -o {plugin slug}.zip --remote=git@cvs2.gaslightmedia.com:WP-Plugins/{plugin slug}.git HEAD
Code Snippets
Sharing Best Practices for Website & Mobile Apps
FaceBook Sharing Best Practices
Known Errors and Bugs and their Solutions
Categories