Difference between revisions of "Setting up error pages"
From GLMWiki
Line 1: | Line 1: | ||
<pre> | <pre> | ||
+ | DEV SITES: | ||
Commands to bring over the error files, once you're in /var/www/server/<site>/web/error/: | Commands to bring over the error files, once you're in /var/www/server/<site>/web/error/: | ||
Line 12: | Line 13: | ||
After that, the following has to be done (using any text editor aside from the ancient and deprecated evil that is vim): | After that, the following has to be done (using any text editor aside from the ancient and deprecated evil that is vim): | ||
+ | - In 404.html, edit the site url | ||
+ | - | ||
+ | |||
- (if phone numbers are used) change the phone number in 404, 503, 504 | - (if phone numbers are used) change the phone number in 404, 503, 504 | ||
- (if logos are used) place a new logo named 'logo.png' in the /var/www/server/<site>/web/error/ folder | - (if logos are used) place a new logo named 'logo.png' in the /var/www/server/<site>/web/error/ folder | ||
Line 20: | Line 24: | ||
- Test the 404 page for the site being set up currently, to make sure the layout is properly displaying. | - Test the 404 page for the site being set up currently, to make sure the layout is properly displaying. | ||
An example of the 404 can be accessed by going to a bad page such as: http://dev.gaslightmedia.com/nonsensepage | An example of the 404 can be accessed by going to a bad page such as: http://dev.gaslightmedia.com/nonsensepage | ||
+ | |||
+ | |||
+ | LIVE SITES (simplified): | ||
+ | |||
+ | - cd /var/www/server/yoursite.org/web/error/ | ||
+ | - ls -la | ||
+ | - rsync -av /var/www/server/landmasters.com/web/error/* . | ||
+ | - vim 404.html -> replace site urls with correct ones | ||
+ | - Check header/footer for appropriate logo and note its directory | ||
+ | - rsync -av ../wp-content/themes/yoursite/assets/that-logo.png logo.png | ||
+ | // make sure that if you added a logo.JPG your files don't reference logo.PNG | ||
+ | - visit www.yoursite.org/asdjaskdjak | ||
+ | - check that both links are correct | ||
+ | - adjust image as needed (maybe not logo.png) | ||
+ | - edit 504.html/503.html with phone number | ||
+ | - revisit yoursite/asdasjkkk to double-check everything's fine | ||
</pre> | </pre> |
Revision as of 16:57, 5 June 2018
DEV SITES: Commands to bring over the error files, once you're in /var/www/server/<site>/web/error/: rsync -av dev55:/var/www/server/dev.gaslightmedia.com/web/error/404.html . rsync -av dev55:/var/www/server/dev.gaslightmedia.com/web/error/503.html . rsync -av dev55:/var/www/server/dev.gaslightmedia.com/web/error/504.html . rsync -av dev55:/var/www/server/dev.gaslightmedia.com/web/error/style.css . (You may at this point receive an error of being unable to copy the files. This usually means the permissions for the /web directory were not properly set during the server/wordpress setup. A simple "sudo chmod -R g+rw web" in the site's root directory should resolve this.) After that, the following has to be done (using any text editor aside from the ancient and deprecated evil that is vim): - In 404.html, edit the site url - - (if phone numbers are used) change the phone number in 404, 503, 504 - (if logos are used) place a new logo named 'logo.png' in the /var/www/server/<site>/web/error/ folder - change the 'Home' link in 404.html to go to http://www.<site><TLD> (This should link to the LIVE site, even if it is not finished setting up yet. For testing purposes you can temporarily set it to the dev site) - Part of the files will have to be uncommented to show up as needed. If the 404 page has either a phone number OR a logo, then remove the "contain" class from each. If it has both, keep this class. - Test the 404 page for the site being set up currently, to make sure the layout is properly displaying. An example of the 404 can be accessed by going to a bad page such as: http://dev.gaslightmedia.com/nonsensepage LIVE SITES (simplified): - cd /var/www/server/yoursite.org/web/error/ - ls -la - rsync -av /var/www/server/landmasters.com/web/error/* . - vim 404.html -> replace site urls with correct ones - Check header/footer for appropriate logo and note its directory - rsync -av ../wp-content/themes/yoursite/assets/that-logo.png logo.png // make sure that if you added a logo.JPG your files don't reference logo.PNG - visit www.yoursite.org/asdjaskdjak - check that both links are correct - adjust image as needed (maybe not logo.png) - edit 504.html/503.html with phone number - revisit yoursite/asdasjkkk to double-check everything's fine