-
-
Notifications
You must be signed in to change notification settings - Fork 120
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
Internal Server Error when creating new Part #803
Comments
you should check the docker logs |
partdb | 192.168.2.182 - - [12/Dec/2024:18:52:24 +0000] "GET /de/part/new?category=3 HTTP/1.1" 200 15713 "https://parts.server24-7.net/de/category/3/parts" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36" |
sorry for the bad formatting ;-) found the error in one of my Triggers |
Describe the bug
I just set up a new freshly installed docker container.
migrated the database from default to mariadb/mysql.
setting up user and attachment types and categories is no problem, but if i create a new part and click on save changes this error occurs.
To Reproduce
Steps to reproduce the behavior:
Expected behavior
the ability to create a new part.
Screenshots
Server Side
all in a seperate container which are all on the same docker network
Desktop (please complete the following information):
`
services:
partdb:
container_name: partdb
# By default Part-DB will be running under Port 8080, you can change it here
ports:
- '8034:80'
volumes:
# By default
- ./uploads:/var/www/html/uploads
- ./public_media:/var/www/html/public/media
- ./db:/var/www/html/var/db
networks:
proxy:
external: true`
`services:
mariadb:
image: mariadb:latest
container_name: mariadb
restart: unless-stopped
environment:
- MYSQL_ROOT_PASSWORD=root
- MYSQL_DATABASE=partdb
- MYSQL_USER=partdb
- MYSQL_PASSWORD=root
volumes:
- ./mariadb-data:/var/lib/mysql
ports:
- "3306:3306"
networks:
- proxy
networks:
proxy:
external: true
`
The text was updated successfully, but these errors were encountered: