robuyo
Dabbler
- Joined
- Apr 13, 2015
- Messages
- 11
Not sure what you mean... the path in the browser is: http://192.168.1.123/owncloud/apps/files/
that's not going to make a difference.Tried but same error.
I'm also looking for a config that works for me, now trying...
upstream php-handler {
server unix:/var/run/php5-fpm.sock;
}
Thanks for the effort Joshua.
that's not going to make a difference.
There's no point in looking, there isn't one developed for owncloud 9 yet.
Me and a few others are writing it https://github.com/owncloud/documentation/issues/2014
yup, it should all work now. =]File upload from UI working with your latest nginx conf! What about inviting you paella? :p
Thanks!
I did. theres a page in the owncloud docs about upgrading a source install like ours.Hi Joshua,
Have you done the Upgrade to V9? Can you please explain the steps. I am continous reading this tread but havent found nothing about how to Upgrade from 8.x.
Thank you very much
Gesendet von meinem SM-G900F mit Tapatalk
mv /usr/local/www/owncloud /usr/local/www/owncloud-bak fetch "http://download.owncloud.org/community/owncloud-9.0.0.tar.bz2" tar jxf owncloud-*.tar.bz2 -C /usr/local/www rm owncloud-*.tar.bz2 cp /usr/local/www/owncloud-bak/config/config.php /usr/local/www/owncloud/config chown -R www:www /usr/local/www/owncloud chsh -s /bin/sh www su www php /usr/local/www/owncloud/occ upgrade
can you try this out and see if it works?
Code:mv /usr/local/www/owncloud /usr/local/www/owncloud-bak fetch "http://download.owncloud.org/community/owncloud-9.0.0.tar.bz2" tar jxf owncloud-*.tar.bz2 -C /usr/local/www rm owncloud-*.tar.bz2 cp /usr/local/www/owncloud-bak/config/config.php /usr/local/www/owncloud/config chown -R www:www /usr/local/www/owncloud chsh -s /bin/sh www su www php /usr/local/www/owncloud/occ upgrade
then just drop the -C flag and the path. then move the folder overI copied and pasted the commands you posted, tried 3 separate times, made sure there were no extra spaces by accident, same error :(
then just drop the -C flag and the path. then move the folder over
worker_processes 4; events { worker_connections 1024; } http { include mime.types; default_type application/octet-stream; sendfile off; keepalive_timeout 65; gzip off; add_header strict-transport-security max-age=15768000; server { ssl_certificate /usr/local/etc/nginx/server.crt; ssl_certificate_key /usr/local/etc/nginx/server.key; root /usr/local/www; location = /robots.txt { allow all; access_log off; log_not_found off; } location = /favicon.ico { access_log off; log_not_found off; } location ^~ /owncloud { client_max_body_size 512M; error_page 403 /owncloud/core/templates/403.php; error_page 404 /owncloud/core/templates/404.php; location /owncloud { rewrite ^ /owncloud/index.php$uri; } location ~ ^/owncloud/(?:build|tests|config|lib|3rdparty|templates|data)/ { deny all; } location ~ ^/owncloud/(?:\.|autotest|occ|issue|indie|db_|console) { deny all; } location ~ ^/owncloud/(?:index|remote|public|cron|core/ajax/update|status|ocs/v[12]|updater/.+|ocs-pro include fastcgi_params; fastcgi_split_path_info ^(.+\.php)(/.+)$; fastcgi_pass unix:/var/run/php-fpm.sock; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; fastcgi_param PATH_INFO $fastcgi_path_info; fastcgi_param front_controller_active true fastcgi_intercept_errors on; } location ~* \.(?:css|js)$ { try_files $uri /owncloud/index.php$uri$is_args$args; add_header Cache-Control "public, max-age=7200"; } location ~* \.(?:svg|gif|png|html|ttf|woff|ico|jpg|jpeg)$ { try_files $uri /owncloud/index.php$uri$is_args$args; } } } }
I missed a semi-colon in the front_controller line, I'll fix it in the post
can you try this out and see if it works?
Code:mv /usr/local/www/owncloud /usr/local/www/owncloud-bak fetch "http://download.owncloud.org/community/owncloud-9.0.0.tar.bz2" tar jxf owncloud-*.tar.bz2 -C /usr/local/www rm owncloud-*.tar.bz2 cp /usr/local/www/owncloud-bak/config/config.php /usr/local/www/owncloud/config chown -R www:www /usr/local/www/owncloud chsh -s /bin/sh www su www php /usr/local/www/owncloud/occ upgrade