GithubHelp home page GithubHelp logo

Comments (2)

tainnok avatar tainnok commented on May 22, 2024

running into the same problem.
fresh install of nextcloud 21 using docker.
only additional installed apps (using the nextcloud-UI):

  • Whiteboard integration version: 0.0.14
  • Splash version: 1.2.2

docker-compose.yml to start nextcloud

i used the template from the nextcloud-docker-example
you should be able to reproduce the error using this docker-compose.yml and installing the whiteboard-integration after startup.

version: '3'

services:
  db:
    image: mariadb
    restart: always
    command: --transaction-isolation=READ-COMMITTED --binlog-format=ROW
    volumes:
      - ./volumes/db:/var/lib/mysql
    environment:
      - MYSQL_ROOT_PASSWORD='MYSQL_ROOT_PW'
      - MYSQL_PASSWORD='MYSQL_PW'
      - MYSQL_DATABASE=nextcloud
      - MYSQL_USER=nextcloud

  nextcloud:
    image: nextcloud
    restart: always
    ports:
      - 8080:80
    links:
      - db
    volumes:
      - ./volumes/nextcloud:/var/www/html
    environment:
      - MYSQL_PASSWORD='MYSQL_PW'
      - MYSQL_DATABASE=nextcloud
      - MYSQL_USER=nextcloud
      - MYSQL_HOST=db

changes in my environment:
i use traefik as reverse-proxy, redirect http to https and use letsencrypt.
so in my config i removed the ports section an add the following lables for traefik (the domain-name is a environment set outside of the docker-compose.yml)

labels:
      - traefik.enable=true
      - traefik.http.routers.nextcloud.rule=Host(`$NEXTCLOUD_DOMAINNAME`)
      - traefik.http.routers.nextcloud.tls.certresolver=le
      - traefik.http.services.nextcloud.loadbalancer.server.port=80

Errormessage

grafik

Serverinfo in json-format

created by https://<my-nextcloud.example.com>/ocs/v2.php/apps/serverinfo/api/v1/info?format=json
info.json.log

from integration_whiteboard.

tainnok avatar tainnok commented on May 22, 2024

just a guess (as i am no php-developer, and i also do NOT plan to become one):
SpacedeckAPIService.php:398 should be modified as followed?:

398c398
<                               if (!in_array($wbFile->getId())) {
---
>                               if (!in_array($wbFile->getId(), $fileIds)) {

from integration_whiteboard.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.