Advertisement
henrydenhengst

TKL upgrade OwnCloud to 6.0.3

May 13th, 2014
1,170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.52 KB | None | 0 0
  1. #!/bin/bash
  2. # check en_us utf8 from menu !
  3. dpkg-reconfigure locales
  4. # Update naar 6.0.3
  5. apt-get update && apt-get install owncloud
  6. apt-get install owncloud=6.0.3-0
  7. apt-cache showpkg owncloud
  8. # .htaccess aanpassen voor uploads (NA upgrade, want overschreven)
  9. /var/www/owncloud/.htaccess:
  10. php_value upload_max_filesize 999999999M
  11. php_value post_max_size 999999999M
  12. php_value memory_limit 999999999M
  13. # php.ini aanpassen voor upload
  14. /etc/php5/apache2/php.ini:
  15. post_max_size = 999999999M
  16. upload_max_filesize = 999999999M
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement