Difference between revisions of "Setting up error pages"

From GLMWiki
Jump to: navigation, search
 
(4 intermediate revisions by the same user not shown)
Line 1: Line 1:
 +
LIVE SITES:
 +
 
<pre>
 
<pre>
 +
- cd /var/www/server/<yoursite>.org/web/error/
 +
- rsync -av /var/www/server/landmasters.com/web/error/* .
 +
  (You may at this point rarely 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.)
  
Commands to bring over the error files, once you're in /var/www/server/<site>/web/error/:
+
- Go to the site. In header and footer, check for phone number and logo. Find out logo location and filetype extension.
rsync -av dev55:/var/www/server/dev.gaslightmedia.com/web/error/404.html .
+
  (open image in new tab works well in chrome)
rsync -av dev55:/var/www/server/dev.gaslightmedia.com/web/error/503.html .
+
- cp that logo file into current dir (error) in the terminal, name it "logo.png" or .jpg, .tif, etc.
rsync -av dev55:/var/www/server/dev.gaslightmedia.com/web/error/504.html .
+
  (If the logo is white, or only works on its background: grab a screenshot -> rsync new file from local onto eleusis )
rsync -av dev55:/var/www/server/dev.gaslightmedia.com/web/error/style.css .
+
  (e.g. rsync newlogo.png laury@eleusis:/var/www/server/landmasters.com/web/error/logo.png)
 +
  (If no logo in header or footer and nothing else that acts like it: ¯\_(ツ)_/¯ )
  
(You may at this point receive an error of being unable to copy the files. This usually means the permissions for
+
- Edit 404.html -> replace site both urls with correct ones.
the /web directory were not properly set during the server/wordpress setup. A simple "sudo chmod -R g+rw web" in
+
- Change 404.html logo reference to match the right extension (.jpg, .png)
the site's root directory should resolve this.)
+
  (If there is no logo, comment out the img tag)
 +
- Save/close 404.html
 +
- Edit 504.html -> replace phone number. Change logo filetype extension as needed.
 +
  (If there is no logo, comment out the img tag)
 +
  (If the site has no phone number, just remove the number itself, leave the structure intact.)
  
After that, what has to be done is (using any text editor aside from the ancient and deprecated evil that is vim):
+
- visit www.<yoursite>.org/asdjaskdjak. Check that both links (button and logo), as well as the logo image, are correct
- (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
+
  
 +
- run this: cp 504.html 503.html && cp 404.html 403.html && sed -i 's/YOU LOOK LOST/ACCESS DENIED/g' 403.html &&
 +
sed -i "s/Don't worry, the link you clicked may be broken or the page may have been removed./You are not permitted to access the requested URL./g" 403.html
 +
 +
- Check a restricted location shows the correct 403 page. A good way to check this is grabbing the url of the logo, and removing just the image from the end
 +
(e.g: https://www.hpacamp.com/wp-content/themes/hpakidscamp/assets/)
 +
</pre>
 +
 +
 +
DEV SITES:
 +
<pre>
 +
These generally do not require custom error files as they are not publicly accessible. Otherwise, see above.
 +
If we did set them up on devsites, then with dev URLs they'd have to be changed anyway, and with live URLs they're broken until live anyway.
 
</pre>
 
</pre>

Latest revision as of 16:44, 19 June 2018

LIVE SITES:

- cd /var/www/server/<yoursite>.org/web/error/
- rsync -av /var/www/server/landmasters.com/web/error/* .
  (You may at this point rarely 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.)

- Go to the site. In header and footer, check for phone number and logo. Find out logo location and filetype extension. 
  (open image in new tab works well in chrome)
- cp that logo file into current dir (error) in the terminal, name it "logo.png" or .jpg, .tif, etc.
  (If the logo is white, or only works on its background: grab a screenshot -> rsync new file from local onto eleusis )
  (e.g. rsync newlogo.png laury@eleusis:/var/www/server/landmasters.com/web/error/logo.png)
  (If no logo in header or footer and nothing else that acts like it: ¯\_(ツ)_/¯ )

- Edit 404.html -> replace site both urls with correct ones.
- Change 404.html logo reference to match the right extension (.jpg, .png)
  (If there is no logo, comment out the img tag)
- Save/close 404.html
- Edit 504.html -> replace phone number. Change logo filetype extension as needed.
  (If there is no logo, comment out the img tag)
  (If the site has no phone number, just remove the number itself, leave the structure intact.)

- visit www.<yoursite>.org/asdjaskdjak. Check that both links (button and logo), as well as the logo image, are correct

- run this: cp 504.html 503.html && cp 404.html 403.html && sed -i 's/YOU LOOK LOST/ACCESS DENIED/g' 403.html && 
 sed -i "s/Don't worry, the link you clicked may be broken or the page may have been removed./You are not permitted to access the requested URL./g" 403.html

- Check a restricted location shows the correct 403 page. A good way to check this is grabbing the url of the logo, and removing just the image from the end
 (e.g: https://www.hpacamp.com/wp-content/themes/hpakidscamp/assets/)


DEV SITES:

These generally do not require custom error files as they are not publicly accessible. Otherwise, see above.
If we did set them up on devsites, then with dev URLs they'd have to be changed anyway, and with live URLs they're broken until live anyway.