Upgrading to version 1.7.6

General Linux Update Steps

When Bitnami packages are installed there is a default user that it is installed by. This user is different than the user that we expect it to be, and the installer.sh doesn’t pick up on it.

The solution:

  1. Go into your htdocs folder inside of the bitnami install and identify the owner and group.

  2. Run installer.sh (this unfortunately uses the logged in user currently instead of root, thus the commands below)

  3. Change the owner and group back to its original value.

  4. Perform a http://{host_name}/web/logout

  5. Restart Apache

  6. Reload Frame in browser

  7. Clear Cache

Example where owner is root and group is daemon, root:daemon.

sudo scripts/installer.sh 

sudo chgrp -R daemon *

sudo chgrp -R daemon .*

sudo chown -R root config log vendor web storage

Or, if you’d like to just do it in one line:

$ sudo ./scripts/installer.sh && sudo chgrp -R daemon * .* && sudo chown -R root config/ log/ vendor/ web/ storage/

Thanks,

  • Mark