Limitation of file upload size

Hello

I have a size limit around 1MB on my seatable instance for file attached in a table, any idea about the config issue ?
thanks

Edited Details :

  • SeaTable Server edition (SeaTable Server Developer 3.1.0)
  • Compose file :
version: '2.0'
services:
  db:
    image: mariadb:10.5
    container_name: seatable-mysql
    environment:
      - MYSQL_ROOT_PASSWORD=*********
      - MYSQL_LOG_CONSOLE=true
    volumes:
      - /opt/seatable/mysql-data:/var/lib/mysql  # Requested, specifies the path to MySQL data persistent store.
    networks:
      - seatable-net

  memcached:
    image: memcached:1.5.6
    container_name: seatable-memcached
    entrypoint: memcached -m 256
    networks:
      - seatable-net

  redis:
    image: redis:5.0.7
    container_name: seatable-redis
    networks:
      - seatable-net
          
  seatable:
    image: seatable/seatable-developer:latest
    container_name: seatable
    ports:
      - "8080:80"
      - "8090:443"  # If https is enabled, cancel the comment.
    volumes:
      - /opt/seatable/seatable-data:/shared  # Requested, specifies the path to Seafile data persistent store.
    environment:
      - DB_HOST=*********
      - DB_ROOT_PASSWD=*********  # Requested, the value should be root's password of MySQL service.
      - SEATABLE_SERVER_LETSENCRYPT=False # Default is False. Whether to use let's encrypt certificate.
      - SEATABLE_SERVER_HOSTNAME=********* # Specifies your host name.
      - TIME_ZONE=Etc/UTC # Optional, default is UTC. Should be uncomment and set to your local time zone.
    depends_on:
      - db
      - memcached
      - redis
    networks:
      - seatable-net

networks:
  seatable-net:

  • Config files
    not sure what is useful here ?

  • Log files
    when I try to upload, these files are updated :

  1. /opt/seatable/seatable-data/nginx-logs/dtable-web.access.log & socket-io.access.log
    no errors listed

  2. /opt/seatable/seatable-data/seatable/logs/dtable-socket.log & dtable-server & dtable-db & dtable-access
    no errors listed

  • Operating system
    Debian 10

Please provide additional info: Read before you post in Admin Talk

I’ve added details, sorry

What’s the exact error message? Screenshot? Did the error appear after the update to 3.1 or not?

Based on the info available, I’d say nginx is the culprit. Is there a max client body size directive in your nginx.conf? You can also check the fileserver settings in your seafile.conf.

1 Like

Just to mention it: I just uploaded a 5MB file to SeaTable. There is no general issue.

1 Like

I’ve got :
image

a pop-up “Error”
a grey mention “Network error”

Issue appears as soon at we hit the 1MB limit.

Ok, it’s fixed.

A brief chat with my site sysadmin got the answer. Their nginx was set at 1Mb

Thanks for th equick answers

1 Like

This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.