Updating Drupal Core or Modules Manually
Updating the Drupal Core
Updating the Drupal core is handled differently from updating the modules. This needs to be done by ssh into the server. Do everything in the test site before the main site!
(1) ssh into the server using the username and password from the Keepass database
(2) Download the new drupal core with wget (the link should be available if you navigate to http://iscbsc.org/admin/reports/updates and look at the core update)
(3) Untar the drupal core with tar -xzf <filename>
(4) Follow the instructions here: https://www.drupal.org/docs/7/update/core-option-3
If everything goes well, and nothing on the test site is broken, repeat everything for the main website.
Updating Modules Manually
To update the modules manually, you follow a similar process.
(1) ssh into the server using the username and password from the Keepass database
(2) Download the new drupal module with wget (the link should be available if you navigate to http://iscbsc.org/admin/reports/updates and look at the core update)
(3) Untar the drupal core with tar -xzf <filename>
(4) Find the module in sites/all/modules/<module-name>
(5) copy all the files from the newly downloaded module into the old module in sites/all/modules
(6) navigate to iscbsc.org/update.php and follow the script there