Questions tagged [nextcloud]

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

Nextcloud 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, Nextcloud 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 Nextcloud can run on all platforms that meet these requirements. Nextcloud 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 Nextcloud via an interface and provide data and files locally.

Website: https://nextcloud.com/

Twitter: https://twitter.com/nextclouders

Facebook: https://www.facebook.com/Nextcloud-1032807203462807/

484 questions
2
votes
1 answer

How to change Openshift 4.2 'volumeMounts' directory mode to 0770

The problem I have this openshift 4.2 code: spec: containers: - envFrom: - secretRef: name: mysql image: >- …
qknight
  • 866
  • 10
  • 23
2
votes
1 answer

Is there a way to decrypt a password using Argon2i Encryption?

So I have a password that my password manager overwrote, and I self host the server (NextCloud) and I would like to know if it is possible to revert the hashed password with the salt key I have, I heard NextCloud uses Argon2i when using PHP 7.0 and…
2
votes
1 answer

Downloading files from nextcloud with python script with 2-factor authentication enabled

I set up a nextcloud instance and I would like to download files from there using a python script. My nextcloud instance enforces 2-factor authentication for all users and I want it to remain that way. My dream scenario would be to use the requests…
Micromegas
  • 1,499
  • 2
  • 20
  • 49
2
votes
1 answer

Using Nextcloud on the command line

I would like to know how to use the command line version of nextcloud as described here: https://docs.nextcloud.com/desktop/2.6/advancedusage.html The problem is, that I cannot find the nextcloudcmd program. Downloading the desktop client results in…
Holger
  • 21
  • 2
2
votes
0 answers

webdev npm not upload video on nextcloude server

Here is the image i want to try fetch and upload videos on nextcloude server through webdev npm. In that i fetch video properly but getting cors error while getting video so i tried to upload video on server but that time i get 409 conflict…
jatin gajera
  • 61
  • 1
  • 4
2
votes
0 answers

Embed Nextcloud app: Collabora in Node-Express website?

Scenario After having built a basic website in the node-express framework at http://localhost:3000 and hosting collabora via nextcloud in docker at http:///8080/s//, I noticed that I am not yet able to embed…
a.t.
  • 2,002
  • 3
  • 26
  • 66
2
votes
0 answers

Storage Access Framework - Cannot create file in cloud folder selected with ACTION_OPEN_DOCUMENT_TREE (NextCloud)

I am experimenting with Storage Access Framework. I am using NextCloud platform. This platform supports the ACTION_OPEN_DOCUMENT_TREE intent, that the GDrive app itself does not support yet. My app lets the user select a cloud folder on the provider…
P5music
  • 3,197
  • 2
  • 32
  • 81
2
votes
1 answer

Uploading a file to Nextcloud with php curl in postman but the file uploaded is empty

SOLVED This is my code, I'm trying to upload a file to nextcloud using its api, I uploaded the file but it is empty. What I did was to use fopen an fread to save th file content and send it by postfields to nextcloud: public function…
Laura Díaz
  • 85
  • 1
  • 9
2
votes
0 answers

Enable Document to PDF converter when using Nextcloud docker image

I can't get Document to PDF Converter app to work on a Nextcloud installation using docker and docker-compose I'm setting up Nextcloud at home using docker images. So far I've managed to run Nextcloud successfully following this tutorial:…
2
votes
0 answers

How can I get notified about WebDAV/NextCloud file changes?

I want to listen for changes in my NextCloud to be able to react to them. As far as I can see, there are two approaches: Use the OS to sync the WebDAV folder to a local folder and listen for changes in the local folder by using some library or…
2
votes
1 answer

HTTPS reverse proxy with url rewrite

I want to install Nextcloud at my home server. The Nextcloud snap will always put the Nextcloud instance at /, let's say https://myserver.ddns.com. But I also want to serve other webpages from my server at https://myserver.ddns.com/otherstuff/, so…
Åsmund
  • 1,332
  • 1
  • 15
  • 26
2
votes
1 answer

Nginx reverse proxy for nextcloud not work

I need to use nextcloud with reverse proxy (virtual path), and i can't understand where i made a mistake. It is my config (after some simplifications) server { listen 80; location ^~ /path/ { proxy_redirect off; …
Flamine
  • 487
  • 4
  • 21
2
votes
1 answer

JAVA Nextcloud API throws UnknownHostException when using https

I tried to implement the nextcloud api in Java. I used this API (https://github.com/a-schild/nextcloud-java-api) and it's self explained but i have serious Problems in Connecting to the Server. public static void main(String[] args) { …
C0nvert500
  • 41
  • 4
2
votes
1 answer

Problems accessing nextcloud SSL encrypted with webdav client python

I was using a python script to access my nextcloud server, all cool, no problems, but i decided to encrypt nextcloud with SSL self signed, and there goes my script... Nextcloud is deplayed in Apache, and it has the directive Redirect "/"…
2
votes
1 answer

Create calendar events in NextCloud using PHP

I'm trying to create a calendar event in Nextcloud with PHP and cURL. After running the code from command line, I get the following error from Nextcloud 12: PUT is not allowed on non-files. Here is the full code I'm using following this…
geraldo
  • 562
  • 11
  • 33