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
10
votes
3 answers

How to download a file from owncloud with curl, wget

I installed owncloud on the server! How I can download shared file with link provided by WebUI from console with wget or curl ? I tried to download from console with following commands, but this not successfully: wget…
vskubriev
  • 826
  • 1
  • 11
  • 21
8
votes
6 answers

Uploading files to an ownCloud server programmatically

I am trying to set a web application where many clients can connect through a Node.js http server and then upload/download files that will then be shown in different displays. I am thinking about having those files stored in a free cloud service…
tampeta
  • 541
  • 2
  • 5
  • 7
7
votes
5 answers

ownCloud Setup: SQLSTATE[HY000][1045] Access denied for user 'owncloud'@localhost' (using password:YES)

I wanted to setup my owncloud installation on my raspberry pi 2. So, I created an mysql database and user. CREATE DATABASE owncloud; CREATE USER 'owncloud'@'localhost' IDENTIFIED BY 'Password'; GRANT ALL PRIVILEGES ON owncloud. * TO…
user2509663
  • 179
  • 2
  • 2
  • 10
7
votes
3 answers

Creating User on ownCloud using php curl http post

There is all the relevant information present in broken form in the following links on owncloud related websites and from stackoverflow itself: User Provisioning Api - Owncloud PHP + curl, HTTP POST sample code Create user on ownCloud using Ajax…
Syed Alam Abbas
  • 521
  • 6
  • 21
5
votes
1 answer

Getting status code 997 when create the user in owncloud

I am trying to create the user through owncloud User Provisioning API, when trying to request the below api: curl -X POST http://admin:secret@localhost/owncloud/ocs/v1.php/cloud/users -d userid="user1" -d password="user1" I get the…
Gaurav Asai
  • 85
  • 11
5
votes
3 answers

How can I script file upload to an owncloud shared link folder?

If I share access to a folder using a (temporary) link, anyone who knows the link and a password can upload files to that folder using the webinterface. How can I script an upload to an owncloud folder that is shared via link? For a regular user of…
Oliver Meyer
  • 413
  • 6
  • 7
5
votes
1 answer

ERROR 1582 (42000) Incorrect parameter count in the call to native function 'FROM_UNIXTIME'

When I try to convert the timestamp in the following query, using bash docker exec compose_TSOwncloudMySQL_1 mysql -h localhost -udockerdev -pdocker owc -e " SELECT DATE_FORMAT(FROM_UNIXTIME(`timestamp`), '%Y%m%d timestamp%h:%i:%s') AS…
Breton It
  • 53
  • 1
  • 6
5
votes
1 answer

Docker invalid tag value

I'm trying to build the OwnCloud desktop client, for which the Owncloud docs explain that docker should be used: Assuming you are in the root of the ownCloud Client’s source tree, you can build an image from this Dockerfile like this: cd…
kramer65
  • 50,427
  • 120
  • 308
  • 488
5
votes
1 answer

list files/folders in owncloud with php curl

this is a strange question but following some of the owncloud api and working with curl i can get a json or a xml output with /cs/v1.php/apps/files_sharing/api/v1/shares my question is if files_sharing is the only one app that works or if for…
Néstor
  • 570
  • 2
  • 8
  • 22
5
votes
3 answers

How can I connect to owncloud with python using easywebdav?

I'm trying to connect to a owncloud instance with python. I've found easywebdav that should make it easy to connect via webdav, but when trying to connect I'm getting "404 Not Found" import easywebdav webdav =…
Quamis
  • 10,924
  • 12
  • 50
  • 66
5
votes
5 answers

No app name specified in owncloud

I am trying to create an app which displays "Hello World". This app is explained in Owncloud developer manual. I have followed all the procedure explained in manual. But the app is not enabling. What is the problem? It shows the message "No app name…
user3227563
  • 51
  • 1
  • 4
5
votes
1 answer

how to upload file via c# post request? ownCloud

i`m using ownCloud (open source cloud) and i have a form to upload files the form sending the post request to upload.php file that handle the upload. the request have a lot of fields and need to send all info and cookie. i need to develop a c# code…
user2153497
  • 356
  • 2
  • 4
  • 9
4
votes
2 answers

ownCloud vs NextCloud?

I know NextCloud is forked from ownCloud. What are the differences between them?
xfr1end
  • 303
  • 5
  • 8
4
votes
1 answer

How to do Key-Value Observing for NSProgress in Swift

I'm currently using the owncloud iOS SDK to upload a file to my private cloud. I'm trying to bring the Key-Value observing mechanism provided in this example to Swift. The library forces me to pass a pointer to a NSProgress object in the upload…
productioncoder
  • 4,225
  • 2
  • 39
  • 65
4
votes
5 answers

ownCloud "Downgrading not supported" after apt-get upgrade

I am running an ownCloud installation on Raspbian on an RPi2 and I just ran: apt-get update apt-get dist-upgrade Now I get the following message when I try to go to my ownCloud-site in the browser: Downgrading is not supported and is likely to…
Chris7b
  • 167
  • 1
  • 3
  • 8
1
2 3
26 27