Questions tagged [owncloud]

ownCloud is an open-source software suite that provides a location-independent storage area for data (cloud storage).

ownCloud is an open-source software suite that provides a location-independent storage area for data (cloud storage). The project was launched to create a free alternative to commercial cloud providers. In contrast to commercial storage services, ownCloud can be installed on a private server at no additional cost.

The project is based on PHP and a SQLite, MySQL or PostgreSQL database, so ownCloud can run on all platforms that meet these requirements. ownCloud can be operated via a web interface and is thus not tied to a particular operating system. However, native applications, such as File Manager or Group Wares can interact with ownCloud via an interface and provide data and files locally.

See also

395 questions
2
votes
1 answer

Can't set volume value right when running owncloud docker container

I followed this guide to install owncloud server on my VPS, it works. However there is an issue when I was trying to mount the file volume to host server. Below is the docker-compose.yml file I use. If I run the docker image with the yml file…
kenshinji
  • 2,021
  • 4
  • 25
  • 39
2
votes
2 answers

owncloud - docker - location of data and mysql data directories on the host?

I'm installing the owncloud server on a macOS machine, so I have to use the docker image. The docker installation documentation says the install: mounts the data and MySQL data directories on the host for persistent storage But I cannot find the…
mils
  • 1,878
  • 2
  • 21
  • 42
2
votes
1 answer

IOS Safari Video Streaming Issue

I need to handle videos retrieved from OwnCloud through a C# WebAPI and sent using a Stream object from C# WebAPI to HTML. But the video tag is not working on IOS/Safari browser while using direct link for the same video is working fine. How can we…
2
votes
1 answer

Could NOT find Qt5WebKitWidgets

I am trying to build nextcloud open source project. I am using built tools Qt 5.6 version. following errors has occurred- -- Could NOT find Qt5WebKitWidgets (missing: Qt5WebKitWidgets_DIR) CMake Warning at src/gui/CMakeLists.txt:313…
user2893186
  • 125
  • 1
  • 2
  • 10
2
votes
2 answers

Data permissions Docker for Windows

I'm using Docker for Windows, with owncloud container, and I shared volumes, setting up on docker-compose.yml, in order to persist the data. Extract from my docker-compose.yml ` owncloud: image: jobel/owncloud:1.1 links: - db:db ports: …
Jobel
  • 236
  • 1
  • 3
  • 13
2
votes
2 answers

Unable to install owncloud

I am trying to install and setup owncloud from the scratch. I followed the steps provided in https://doc.owncloud.org/server/10.0/admin_manual/installation/source_installation.html#prerequisites-label I have created the mysql user after installing…
2
votes
2 answers

How to delete file in trash in owncloud?

I'm using Python. I delete my files. They appear in trash.I have no idea how to delete them from trash. import owncloud oc = owncloud.Client('ip') oc.login('account', 'password') p=oc.list('/') for i in p: oc.delete(i.path) # and than they…
eason
  • 171
  • 3
  • 18
2
votes
1 answer

How to upload files into shared b2drop.eudat(owncloud) repository using curl?

Following link: https://b2drop.eudat.eu/s/DfQlm5J42nEGnH7 holds the files and folders (publicly accessible). Please not that no user name and password is required. I can download the zip file via: wget…
alper
  • 2,919
  • 9
  • 53
  • 102
2
votes
1 answer

OpenStack (Swift) or CEPH deduplication feature? or any deduplication HA storage cluster solutions?

For an owncloud (or nextcloud) project we need to add a great amount of storage, I've been checking all options such as: CEPH, Openstack Swift/Cinder, GlusterFS, SDFS and Tahoe-lafs. With this service we expect many of the same files to be added by…
2
votes
2 answers

NextCloud file tagging through WebDAV script

I am using NextCloud 11 to store my personal files, and I use the simple curl script from the documentation in order to upload files to my NextCloud drive: curl -u user:pw -T test.pdf…
Julian
  • 1,694
  • 22
  • 29
2
votes
1 answer

How to create users using external API in owncloud

My application creates owncloud users using external APIs. I tried with get owncloud version using external API. Below is the code I used: $.ajax({ type: 'GET', url:…
Test admin
  • 711
  • 1
  • 11
  • 28
2
votes
0 answers

Can Owncloud 9's tags be read with webdav?

From webdav, we would like to read the tags put on a file in the Owncloud 9 web interface Secondary, from webdav, we would also like to search via tags, just like it is possible in the web interface. Has anyone seen if this is possible? We cannot…
Aksel
  • 75
  • 7
2
votes
1 answer

nextcloud on Apache2: Request Entity Too Large

I am struggling to get Nextcloud to accept larger files (up to 512MB) via SSL. What I have this far is: In /etc/apache2/conf-enabled/owncloud.conf: Alias /nextcloud "/var/www/nextcloud/" Options +FollowSymLinks …
Zahlii
  • 818
  • 1
  • 7
  • 17
2
votes
0 answers

Inotify-like solution through NFS

We use owncloud to share files. This is a WebDAV-based synchronization system, all file metadata is tracked in a database. We also wanted our server systems to access these files. We could either mount owncloud through fuse+WebDAV (slow), or mount…
parasietje
  • 1,529
  • 8
  • 36
2
votes
0 answers

HTTP error: 401 after owncloud upgrade to 9.0.2 using pyocclient

I've been using the owncloud python package for about a month now (https://github.com/owncloud/pyocclient). This is a great package and has been working good for me until recently. I have a fairly simple job the automatically takes daily updated…
Dan McEvoy
  • 43
  • 5