Last active
December 28, 2015 21:09
-
-
Save hermzz/7562427 to your computer and use it in GitHub Desktop.
ownCloud update steps
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| rm -rf old.owncloud | |
| cp -a owncloud old.owncloud | |
| rm -rf owncloud-latest.tar.bz2 | |
| wget http://download.owncloud.org/community/owncloud-latest.tar.bz2 | |
| sed "s/maintenance' => false/maintenance' => true/g" owncloud/config/config.php | |
| tar xf owncloud-latest.tar.bz2 | |
| chmod -R 775 owncloud/config owncloud/apps | |
| sed "s/maintenance' => true/maintenance' => false/g" owncloud/config/config.php |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment