Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[BUG] Error accessing notifications settings after recent update today #25

Closed
1 task done
NightHawkATL opened this issue Aug 8, 2024 · 3 comments
Closed
1 task done

Comments

@NightHawkATL
Copy link

Is there an existing issue for this?

  • I have searched the existing issues

Current Behavior

I click on the "notifications" menu option and get this:
image

Expected Behavior

I expect to be taken to the notifications section.

Steps To Reproduce

open app in broswer, login, try to get to notifications settings.

Environment

- OS:Ubuntu 22.04 (Proxmox LXC, unprivileged)
- How docker service was installed: using the docker default deployment through an ansible playbook I built. It installs docker-ce and docker compose.

CPU architecture

x86-64

Docker creation

services:
  speedtest-tracker:
    container_name: speedtest-tracker
    image: lscr.io/linuxserver/speedtest-tracker:latest
    ports:
    - '4480:80'
    - '4443:443'
    environment:
    - PUID=1000
    - PGID=1000
    - DB_CONNECTION=mysql
    - DB_HOST=db
    - DB_PORT=3306
    - DB_DATABASE=speedtest_tracker
    - DB_USERNAME=*REDACTED*
    - DB_PASSWORD=*REDACTED*
    - APP_TIMEZONE=America/New_York
    - DISPLAY_TIMEZONE=America/New_York
    - PUBLIC_DASHBOARD=true
    - APP_NAME="Speedtest Tracker"
    - APP_KEY=base64:*REDACTED*
    - SPEEDTEST_SCHEDULE="0 */2 * * *" # can be represented as a cron schedule same as before.
    - SPEEDTEST_SERVERS="60331" # you can add one or many servers separated by a comma (i.e. "123456,654321,987654").
    - SPEEDTEST_PING_URL=google.com
    - PRUNE_RESULTS_OLDER_THAN=0 # the default is 0 which disables result pruning, this value is in days.
 #   - MAIL_MAILER=smtp
 #   - MAIL_HOST=*REDACTED*
 #   - MAIL_PORT=587
 #   - MAIL_USERNAME=*REDACTED*
 #   - MAIL_PASSWORD=*REDACTED*
 #   - MAIL_ENCRYPTION=tls
 #   - MAIL_FROM_ADDRESS=*REDACTED*
 #   - MAIL_FROM_NAME="Speedtest Tracker"

    volumes:
    - '/etc/localtime:/etc/localtime:ro'
    - '/etc/timezone:/etc/timezone:ro'
    - '/portainer/Files/AppData/Config/st2/config:/config'
    - '/portainer/Files/AppData/Config/st2/web:/etc/ssl/web'
    restart: unless-stopped
    depends_on:
    - db
    labels:
      - com.centurylinklabs.watchtower.depends-on db
    
  db:
    image: mariadb:10
    restart: always
    environment:
    - MARIADB_DATABASE=speedtest_tracker
    - MARIADB_USER=*REDACTED*
    - MARIADB_PASSWORD=*REDACTED*
    - MARIADB_RANDOM_ROOT_PASSWORD=true
    - APP_TIMEZONE="America/New_York"
    - DISPLAY_TIMEZONE="America/New_York"
    volumes:
    - /portainer/Files/AppData/Config/st2/db:/var/lib/mysql
    - /etc/localtime:/etc/localtime:ro
    - /etc/timezone:/etc/timezone:ro
    labels:
      - com.centurylinklabs.watchtower.depends-on speedtest-tracker

Container logs

███████╗███████║██║╚██████╔╝

      ╚══════╝╚══════╝╚═╝ ╚═════╝

   Brought to you by linuxserver.io

───────────────────────────────────────

To support the app dev(s) visit:

speedtest-tracker: https://github.com/sponsors/alexjustesen

To support LSIO projects visit:

https://www.linuxserver.io/donate/

───────────────────────────────────────

GID/UID

───────────────────────────────────────

User UID:    1000

User GID:    1000

───────────────────────────────────────

Linuxserver.io version: v0.21.0-ls39

Build-date: 2024-08-08T18:15:56+00:00

───────────────────────────────────────

    

using keys found in /config/keys

Waiting for DB to be available

**** The following site-confs have extensions other than .conf ****

**** This may be due to user customization. ****

**** You should review the files and rename them to use the .conf extension or remove them. ****

**** nginx.conf will only include site-confs with the .conf extension. ****

/config/nginx/site-confs/default.conf.bak

[custom-init] No custom files found, skipping...

[ls.io-init] done.
Copy link

github-actions bot commented Aug 8, 2024

Thanks for opening your first issue here! Be sure to follow the relevant issue templates, or risk having this issue marked as invalid.

@svenvg93
Copy link

svenvg93 commented Aug 9, 2024

See this issue alexjustesen/speedtest-tracker#1652 its fixed in 0.21.1 yesterday :)

@NightHawkATL
Copy link
Author

See this issue alexjustesen/speedtest-tracker#1652 its fixed in 0.21.1 yesterday :)

I can confirm I can access them now. Thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
Development

No branches or pull requests

2 participants