docusealco / docuseal

Open source DocuSign alternative. Create, fill, and sign digital documents ✍️
https://www.docuseal.co
GNU Affero General Public License v3.0
5.97k stars 410 forks source link

Cannot Upload Documents #116

Closed mike-lloyd03 closed 10 months ago

mike-lloyd03 commented 10 months ago

I'm running the Docker version with Postgres and using Caddy for my reverse-proxy.

I can create an account and log in, but when I try to upload a document, the application hangs. The spinner on the upload drop location just spins forever. I don't see any error in the webconsole or in docker logs.

Have I configured something wrong?

docker-compose.yml:

version: "3"

services:
  app:
    depends_on:
      postgres:
        condition: service_healthy
    image: docuseal/docuseal:latest
    ports:
      - 8100:3000
    volumes:
      - ./data:/data
    environment:
      DATABASE_URL: postgresql://postgres:postgres@postgres:5432/docuseal

  postgres:
    image: postgres:15
    volumes:
      - "./pg_data:/var/lib/postgresql/data"
    environment:
      POSTGRES_USER: postgres
      POSTGRES_PASSWORD: postgres
      POSTGRES_DB: docuseal
    healthcheck:
      test: ["CMD-SHELL", "pg_isready -U postgres"]
      interval: 5s
      timeout: 5s
      retries: 5
    ports:
      - 5433:5432
AlexandrToorchyn commented 10 months ago

can you please check the browser js console after you try to upload a document? there might be some client side js errors here - that might help us to debug the issue.

On Fri, Oct 6, 2023 at 9:31 AM Mike Lloyd @.***> wrote:

I'm running the Docker version with Postgres and using Caddy for my reverse-proxy.

I can create an account and log in, but when I try to upload a document, the application hangs. The spinner on the upload drop location just spins forever. I don't see any error in the webconsole or in docker logs.

Have I configured something wrong?

docker-compose.yml:

version: "3" services: app: depends_on: postgres: condition: service_healthy image: docuseal/docuseal:latest ports:

  • 8100:3000 volumes:
  • ./data:/data environment: DATABASE_URL: @.***:5432/docuseal

    postgres: image: postgres:15 volumes:

  • "./pg_data:/var/lib/postgresql/data" environment: POSTGRES_USER: postgres POSTGRES_PASSWORD: postgres POSTGRES_DB: docuseal healthcheck: test: ["CMD-SHELL", "pg_isready -U postgres"] interval: 5s timeout: 5s retries: 5 ports:
  • 5433:5432

— Reply to this email directly, view it on GitHub https://github.com/docusealco/docuseal/issues/116, or unsubscribe https://github.com/notifications/unsubscribe-auth/AAI7GL5AUOAZYVPEARWHIFDX56QU7AVCNFSM6AAAAAA5VKPLS2VHI2DSMVQWIX3LMV43ASLTON2WKOZRHEZDSNJSGEZDKMI . You are receiving this because you are subscribed to this thread.Message ID: @.***>

AlexandrToorchyn commented 10 months ago

Hi @mike-lloyd03 did you try to upload a large file (200+ pages or so) ? We have a better support of large files now and it will be release in the next version tomorrow. But other than that i can't think of why the upload didn't work for you.

Please feel free to reopen if the issue persist in the new version