Cannot upload selected image(s) from mobile app, minor version mismatch #6641

Closed
opened 2026-02-05 12:26:15 +03:00 by OVERLORD · 0 comments
Owner

Originally created by @Fly1ngSpaghettiMonster on GitHub (Jul 29, 2025).

I have searched the existing issues, both open and closed, to make sure this is not a duplicate report.

  • Yes

The bug

I am no longer able to upload media from the mobile app by selecting media in the device gallery (or file manager), tapping "Share", and choosing the Immich app. The media does not upload, and there are no meaningful logs to indicate the issue.
Image
Image

The button changed and got greyed out but the imaged was not uploaded to the server!

Environment:

  • Mobile App Version: v1.136.0 (got auto-updated a few days ago)
  • Server Version:
    • Initially: v1.135.3
    • Upgraded to: v1.136.0 (after encountering issue)
  • Devices: Tested on both Android:v15 and iOS:v18.5
  • Access Methods: Tried on localhost and remote network
  • Reverse Proxy: NGINX Proxy Manager with self-signed SSL/TLS

NGINX Proxy Manager Settings:

  • Block Common Exploits:
  • Websockets Support:
  • Force SSL:
  • HTTP/2:
  • HSTS + Subdomains:

Custom NPM Configuration:
proxy_request_buffering off;
proxy_buffering off;
client_max_body_size 0;

What works (any network);

  • Backup and Sync upload from mobile
  • Web upload

After the first few upload attempts failed, I noticed the mobile app version was newer than the server. I upgraded the server to v1.136.0 — but the issue persists with the same behavior and same NPM setup. No meaningful logs on either the client or server side (only one? log in the app).
I was unable to downgrade my app to check if older version would work!

The OS that Immich Server is running on

Ubuntu 24.04.2 LTS

Version of Immich Server

v1.135.3 - v1.136.0

Version of Immich Mobile App

v1.136.0

Platform with the issue

  • Server
  • Web
  • Mobile

Your docker-compose.yml content

immich-server:
    container_name: immich_server
    image: ghcr.io/immich-app/immich-server:${IMMICH_VERSION:-release}
    # extends:
    #   file: hwaccel.transcoding.yml
    #   service: cpu # set to one of [nvenc, quicksync, rkmpp, vaapi, vaapi-wsl] for accelerated transcoding
    volumes:
      # Do not edit the next line. If you want to change the media storage location on your system, edit the value of UPLOAD_LOCATION in the .env file
      - ${UPLOAD_LOCATION}:/usr/src/app/upload
      - /etc/localtime:/etc/localtime:ro
    env_file:
      - .env
    ports:
      - '2283:2283'
    depends_on:
      - redis
      - database
    restart: always
    healthcheck:
      disable: false
  
  immich-machine-learning:
    container_name: immich_machine_learning
    # For hardware acceleration, add one of -[armnn, cuda, rocm, openvino, rknn] to the image tag.
    # Example tag: ${IMMICH_VERSION:-release}-cuda
    image: ghcr.io/immich-app/immich-machine-learning:${IMMICH_VERSION:-release}
    # extends: # uncomment this section for hardware acceleration - see https://immich.app/docs/features/ml-hardware-acceleration
    #   file: hwaccel.ml.yml
    #   service: cpu # set to one of [armnn, cuda, rocm, openvino, openvino-wsl, rknn] for accelerated inference - use the `-wsl` version for WSL2 where applicable
    volumes:
      - model-cache:/cache
    env_file:
      - .env
    restart: always
    healthcheck:
      disable: false

  redis:
    container_name: immich_redis
    image: docker.io/valkey/valkey:8-bookworm@sha256:fec42f399876eb6faf9e008570597741c87ff7662a54185593e74b09ce83d177
    healthcheck:
      test: redis-cli ping || exit 1
    restart: always

  database:
    container_name: immich_postgres
    image: ghcr.io/immich-app/postgres:14-vectorchord0.4.3-pgvectors0.2.0
    environment:
      POSTGRES_PASSWORD: ${DB_PASSWORD}
      POSTGRES_USER: ${DB_USERNAME}
      POSTGRES_DB: ${DB_DATABASE_NAME}
      POSTGRES_INITDB_ARGS: '--data-checksums'
      # Uncomment the DB_STORAGE_TYPE: 'HDD' var if your database isn't stored on SSDs
      # DB_STORAGE_TYPE: 'HDD'
    volumes:
      # Do not edit the next line. If you want to change the database storage location on your system, edit the value of DB_DATA_LOCATION in the .env file
      - ${DB_DATA_LOCATION}:/var/lib/postgresql/data
    restart: always

volumes:
  model-cache:

Your .env content

# You can find documentation for all the supported env variables at https://immich.app/docs/install/environment-variables

# The location where your uploaded files are stored
UPLOAD_LOCATION=/home/{retracted}/images

# The location where your database files are stored. Network shares are not supported for the database
DB_DATA_LOCATION=./postgres

# To set a timezone, uncomment the next line and change Etc/UTC to a TZ identifier from this list: https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List
TZ=Etc/UTC

# The Immich version to use. You can pin this to a specific version like "v1.71.0"
IMMICH_VERSION=v1.135.3

# Connection secret for postgres. You should change it to a random password
# Please use only the characters `A-Za-z0-9`, without special characters or spaces
DB_PASSWORD=

# The values below this line do not need to be changed
###################################################################################
DB_USERNAME=postgres
DB_DATABASE_NAME=immich

Reproduction steps

  1. Select a photo or video in your phone's gallery
  2. Tap "Share"
  3. Choose Immich
  4. Press on "Upload"

Relevant log output

socket error SocketException: Failed host lookup: 'MYDOMAIN' (OS Error: No address associated with hostname, errno = 7)

Additional information

If any information is missing please let me know, this is my first ticket.

Originally created by @Fly1ngSpaghettiMonster on GitHub (Jul 29, 2025). ### I have searched the existing issues, both open and closed, to make sure this is not a duplicate report. - [x] Yes ### The bug I am no longer able to upload media from the mobile app by selecting media in the device gallery (or file manager), tapping "Share", and choosing the Immich app. The media does not upload, and there are no meaningful logs to indicate the issue. ![Image](https://github.com/user-attachments/assets/2300c7c7-0744-4a24-a3e4-bdb78c82aa31) ![Image](https://github.com/user-attachments/assets/68f52895-18c5-4857-be87-9de347060eff) The button changed and got greyed out but the imaged was not uploaded to the server! Environment: - Mobile App Version: v1.136.0 (got auto-updated a few days ago) - Server Version: - Initially: v1.135.3 - Upgraded to: v1.136.0 (after encountering issue) - Devices: Tested on both Android:v15 and iOS:v18.5 - Access Methods: Tried on localhost and remote network - Reverse Proxy: NGINX Proxy Manager with self-signed SSL/TLS NGINX Proxy Manager Settings: - Block Common Exploits: ✅ - Websockets Support: ✅ - Force SSL: ✅ - HTTP/2: ✅ - HSTS + Subdomains: ✅ Custom NPM Configuration: proxy_request_buffering off; proxy_buffering off; client_max_body_size 0; What works (any network); - Backup and Sync upload from mobile - Web upload After the first few upload attempts failed, I noticed the mobile app version was newer than the server. I upgraded the server to v1.136.0 — but the issue persists with the same behavior and same NPM setup. No meaningful logs on either the client or server side (only one? log in the app). I was unable to downgrade my app to check if older version would work! ### The OS that Immich Server is running on Ubuntu 24.04.2 LTS ### Version of Immich Server v1.135.3 - v1.136.0 ### Version of Immich Mobile App v1.136.0 ### Platform with the issue - [ ] Server - [ ] Web - [x] Mobile ### Your docker-compose.yml content ```YAML immich-server: container_name: immich_server image: ghcr.io/immich-app/immich-server:${IMMICH_VERSION:-release} # extends: # file: hwaccel.transcoding.yml # service: cpu # set to one of [nvenc, quicksync, rkmpp, vaapi, vaapi-wsl] for accelerated transcoding volumes: # Do not edit the next line. If you want to change the media storage location on your system, edit the value of UPLOAD_LOCATION in the .env file - ${UPLOAD_LOCATION}:/usr/src/app/upload - /etc/localtime:/etc/localtime:ro env_file: - .env ports: - '2283:2283' depends_on: - redis - database restart: always healthcheck: disable: false immich-machine-learning: container_name: immich_machine_learning # For hardware acceleration, add one of -[armnn, cuda, rocm, openvino, rknn] to the image tag. # Example tag: ${IMMICH_VERSION:-release}-cuda image: ghcr.io/immich-app/immich-machine-learning:${IMMICH_VERSION:-release} # extends: # uncomment this section for hardware acceleration - see https://immich.app/docs/features/ml-hardware-acceleration # file: hwaccel.ml.yml # service: cpu # set to one of [armnn, cuda, rocm, openvino, openvino-wsl, rknn] for accelerated inference - use the `-wsl` version for WSL2 where applicable volumes: - model-cache:/cache env_file: - .env restart: always healthcheck: disable: false redis: container_name: immich_redis image: docker.io/valkey/valkey:8-bookworm@sha256:fec42f399876eb6faf9e008570597741c87ff7662a54185593e74b09ce83d177 healthcheck: test: redis-cli ping || exit 1 restart: always database: container_name: immich_postgres image: ghcr.io/immich-app/postgres:14-vectorchord0.4.3-pgvectors0.2.0 environment: POSTGRES_PASSWORD: ${DB_PASSWORD} POSTGRES_USER: ${DB_USERNAME} POSTGRES_DB: ${DB_DATABASE_NAME} POSTGRES_INITDB_ARGS: '--data-checksums' # Uncomment the DB_STORAGE_TYPE: 'HDD' var if your database isn't stored on SSDs # DB_STORAGE_TYPE: 'HDD' volumes: # Do not edit the next line. If you want to change the database storage location on your system, edit the value of DB_DATA_LOCATION in the .env file - ${DB_DATA_LOCATION}:/var/lib/postgresql/data restart: always volumes: model-cache: ``` ### Your .env content ```Shell # You can find documentation for all the supported env variables at https://immich.app/docs/install/environment-variables # The location where your uploaded files are stored UPLOAD_LOCATION=/home/{retracted}/images # The location where your database files are stored. Network shares are not supported for the database DB_DATA_LOCATION=./postgres # To set a timezone, uncomment the next line and change Etc/UTC to a TZ identifier from this list: https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List TZ=Etc/UTC # The Immich version to use. You can pin this to a specific version like "v1.71.0" IMMICH_VERSION=v1.135.3 # Connection secret for postgres. You should change it to a random password # Please use only the characters `A-Za-z0-9`, without special characters or spaces DB_PASSWORD= # The values below this line do not need to be changed ################################################################################### DB_USERNAME=postgres DB_DATABASE_NAME=immich ``` ### Reproduction steps 1. Select a photo or video in your phone's gallery 2. Tap "Share" 3. Choose Immich 4. Press on "Upload" ### Relevant log output ```shell socket error SocketException: Failed host lookup: 'MYDOMAIN' (OS Error: No address associated with hostname, errno = 7) ``` ### Additional information If any information is missing please let me know, this is my first ticket.
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: immich-app/immich#6641