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
0
votes
1 answer

Secure first time setup of nextcloud

I want to setup a Nextcloud on my personal VPS. To do the first time setup, I have to access the webserver via my browser and it says I should do it over http://localhost/nextcloud/ (Nextcloud Installation Wizard (Right in the beginning), but this…
dave
  • 117
  • 2
  • 3
  • 13
0
votes
2 answers

Nextcloud and Onlyoffice on same server w/ NGINX

I have Nextcloud 11 successfully installed on my Centos 7 VPS server with godaddy. I also have Onlyoffice document server successfully installed on the same server. I tested each with seperate nginx config files to make sure each work. And each does…
Benji Weiss
  • 406
  • 2
  • 6
  • 19
0
votes
0 answers

Use subdomain instead of another subdomain

I know this asks too much but I really don't get it. I am using a subdomain for my server like sub.domain.com. I can reach it with ssh with typing ssh root@sub.domain.com. I am trying use nextcloud on this server like cloud.domain.com. I can reach…
0
votes
2 answers

I've made a slight mistake in my .htaccess and now i cannot access my page anymore

To be more specific, i changed my php_value memory_limit accidently to 20GB while i was changing the maximum upload and post sizes. I changed it back to what it was 512MB but my page is still giving me a HTTP ERROR 500. Anyone got any ideas what i'm…
0
votes
1 answer

Nextcloud in which source file is file uploading handled

I am going to make an app. But i am stuck in one issue. I am unable to find in which file of nextcloud, the codes are available which uploads file. i want to find the file in which file uploading codes are situated. I am going to make an app which…
0
votes
0 answers

Absolute paths for the include and library directories when cmake with flag CMAKE_BUILD_TYPE

Can you help me with this problem? I configured the client build when built NextCloud (Owncloud) in desktop client. I cloned git://github.com/owncloud/client.git and created sub-dir named client-build. I got an error when typed "cmake…
troonie-pham
  • 93
  • 2
  • 5
0
votes
0 answers

Rewrite nginx location rule

I'm working on load balancing on a cluster. It works great, but I realized that I want to be able to request a certain node by specify it in the url, e.g domain.com/nodeX/request_uri/ where nodeX is the actual node I want to send the request to. The…
0
votes
1 answer

Reverse proxy in nginx for nextcloud?

How do I set a reverse proxy for nextcloud? This is my current config but it doesn't work: server { listen 8000; server_name cloud.prjctdesign.com; return 301 https://$host$request_uri; } server { listen 4430 ssl http2; server_name…
Michael de Borst
  • 302
  • 2
  • 5
  • 16
0
votes
1 answer

Can't access php-fpm container from apache

I have installed the latest Nextcloud container on my Ubuntu machine. It started successfully with the following command: sudo docker run --name nextcloud --link mysql:mysql -p 9000:9000 -v /data/nextcloud:/var/www/html -d nextcloud:latest The…
Nabor
  • 1,661
  • 3
  • 20
  • 45
0
votes
1 answer

Apache2 Site not found

I just installed Armbian on my BananaPi with NextCloud, MySQL Database and Apache2. But i always get a "Page not found" Error. Here is my /etc/apache2/sites-available/000-default.conf # The ServerName directive sets the…
Herbert89
  • 1,113
  • 1
  • 8
  • 7
0
votes
1 answer

PHP random_int(0,63) : Cannot open source device

This PHP code : fails with this error : Fatal error: Uncaught Exception: Cannot open source device in /usr/htdocs/rand.php:2 Stack trace:#0 /usr/htdocs/rand.php(2): random_int(0, 2)#1 {main} thrown in…
holo
  • 331
  • 2
  • 13
0
votes
1 answer

Bash get owncloud space size

Is it possible with bash to get the owncloud/nextcloud space size? I know there is a way in c# like this WebDAV get free space info but I need a way with bash. I want to use t in conky. Thanks
beli3ver
  • 363
  • 3
  • 15
0
votes
1 answer

Python Caldav, all calendars have None name

I'm trying to access to all events of my calendar, hosted on Nextcloud, with python and the caldav library. With this code: client = caldav.DAVClient(url) #like "https://..../nextcloud/remote.php/dav/calendars principal =…
cent89
  • 113
  • 1
  • 9
-1
votes
0 answers

Nextcloud talk add features

does it possible for me to create a features to nextcloud where i will be able to create a folder for channels on the Nextcloud Web Version a developer, advise and solution for it and a way to make it responsive and i will like you to share me any…
Taml0
  • 1
-1
votes
1 answer

Moving a file using lua script in nextcloud 25

I want to write a lua script that performs file moving in nextcloud 25. Can anyone provide me a script please? i tried this script that i found somewhere function file_move(files, dir) -- Check if the file exists if not exists(file) then return…