Hi all,
I'm running OwnCloud on a FreeNAS server (installed via FreeNAS package) and the owncloud client (Linux).
After moving folders, within the OwnCloud folder, the data source (server) did not get updated, and I keep getting different errors on the desktop sync client.
Initially it was - "A network connection timeout happened", and then "500 Internal Server Error". So I did some researching and made the following modifications:
Code:
## Large file support
=> /usr/pbi/owncloud-amd64/etc/php.ini-production:
upload_max_filesize = 2G
post_max_size = 2G
=> /usr/pbi/owncloud-amd64/www/owncloud/.htaccess:
php_value upload_max_filesize 2G
php_value post_max_size 2G
## Known problems with php and webserver modules
=> /usr/pbi/owncloud-amd64/etc/apache22/extra/httpd-dav.conf:
<Directory "/usr/pbi/owncloud-amd64/uploads">
# Dav On
Order Allow,Deny
Allow from all
# AuthType Digest
AuthName DAV-upload
## Enable php log
/usr/pbi/owncloud-amd64/etc/php.ini-production
error_log = /var/log/php-errors.log
Now the client is giving "Problem: Could not connect to server: Connection refused". Both httpd-error.log or httpd-access.log do not show any relevant information. Am I missing something?