OwnClound: Rename login not possible?

I would like to rename a login in owncloud. According to this issue it is to possible at the moment: https://github.com/owncloud/core/issues/1333 It is 100% ok if it is not possible via web GUI. But I guess it is possible with shell and sql. Can someone explain how to do it? My use case: I have … Read more

How do I use a self-signed certificate with an Apache server linked to a dynamic DNS service? [closed]

Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it’s on-topic for Server Fault. Closed 6 years ago. Improve this question I have a Linux Apache web server running ownCloud set up. I wish to use a dynamic DNS service (such as No-IP Free) … Read more

message “File not found.” when trying to install nginx / owncloud

I’m trying to use nginx as a webserver for my owncloud installation. According to this tutorial, I created the following config file: server { listen 59476; server_name mydomain.de; root /home/owncloud/www/; access_log /home/owncloud/log/nginx.access.log; error_log /home/owncloud/log/nginx.error.log debug; client_max_body_size 10G; # set max upload size fastcgi_buffers 64 4K; rewrite ^/caldav(.*)$ /remote.php/caldav$1 redirect; rewrite ^/carddav(.*)$ /remote.php/carddav$1 redirect; rewrite ^/webdav(.*)$ … Read more

Debian 7 NGINX OwnCloud – move data-folder to NFS-mount permission problems?

Case: Debian 7.1.0 server running nginx 1.2.1, hosting OwnCloud 5.0.13 OwnCloud default installed in /var/www/owncloud Files uploaded to owncloud reside in /var/www/owncloud/data However, diskspace is running low. Idea is to move data to a file server which has more space, but I have a permissions problem. File server in question is based on OmniOS (illumos … Read more

Accessing OwnCloud over VPN doesn’t work on android and chromebook?

Here is my setup. I’ve got a Cisco ASA 5505 (latest IOS). Behind it, I have a (Ubuntu 12.04) server running nginx, php-fpm, OwnCloud (all latest versions). My desktop also sits behind the ASA and is able to access OwnCloud just fine. If I connect my Android tablet to our wireless access point, then access … Read more

(nginx) – Can’t make OwnCloud work after restore (no images, style etc)

I’ve migrated my rig from Arch Linux to Debian stable and I’ve restored my old OC installation but now everything seems to be blown up. (see attachments) The desktop clients work flawlessly though. I’ve already checked the permissions of my owncloud dir and they seem to be fine. Here you can see what happens: http://imgur.com/a/nmxwd … Read more

Database password error in Owncloud migrating from SQLite to MySQL/MariaDB

In a Fedora system, I need to convert the Owncloud’s SQLite database into a MySQL/MariaDB database I started installing MySQL: # systemctl enable mysqld # systemctl start mysqld $ mysql_secure_installation then $ mysql -u root -p CREATE USER ‘owncloud_user’@’localhost’ IDENTIFIED BY ‘12345’; CREATE DATABASE IF NOT EXISTS owncloud; GRANT ALL PRIVILEGES ON owncloud.* TO ‘owncloud_user’@’localhost’ … Read more